summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorSean Molenaar <sean@seanmolenaar.eu>2020-12-26 13:09:41 +0100
committerSean Molenaar <SMillerDev@users.noreply.github.com>2020-12-29 14:15:34 +0100
commit27bd54058050a70bd1c9ec8cfcdf42d38541f1b0 (patch)
tree371914f2ada32c4aa7eb7d48b0163ac77a4c6883 /Makefile
parent0f1731833f8b6aea97b0816fe090f6dffacd6fd4 (diff)
Remove PHPunit integration tests
Signed-off-by: Sean Molenaar <sean@seanmolenaar.eu>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 0 insertions, 6 deletions
diff --git a/Makefile b/Makefile
index 434b5c3eb..1da8c697b 100644
--- a/Makefile
+++ b/Makefile
@@ -194,18 +194,12 @@ php-test-dependencies:
unit-test:
./vendor/phpunit/phpunit/phpunit -c phpunit.xml --coverage-clover build/php-unit.clover
-# \Test\TestCase is only allowed to access the db if TRAVIS environment variable is set
-.PHONY: integration-test
-integration-test:
- env TRAVIS=1 ./vendor/phpunit/phpunit/phpunit -c phpunit.integration.xml
-
# Command for running JS and PHP tests. Works for package.json files in the js/
# and root directory. If phpunit is not installed systemwide, a copy is fetched
# from the internet
.PHONY: test
test: php-test-dependencies
$(MAKE) unit-test
- $(MAKE) integration-test
$(MAKE) phpcs
$(MAKE) phpstan
$(MAKE) js-test