Use phpunit included in vendor folder
This commit is contained in:
10
Makefile
10
Makefile
@@ -49,21 +49,21 @@ archive:
|
|||||||
@ rm -rf ${BUILD_DIR}/kanboard
|
@ rm -rf ${BUILD_DIR}/kanboard
|
||||||
|
|
||||||
test-sqlite-coverage:
|
test-sqlite-coverage:
|
||||||
@ phpunit --coverage-html /tmp/coverage --whitelist app/ -c tests/units.sqlite.xml
|
@ ./vendor/bin/phpunit --coverage-html /tmp/coverage --whitelist app/ -c tests/units.sqlite.xml
|
||||||
|
|
||||||
test-sqlite:
|
test-sqlite:
|
||||||
@ phpunit -c tests/units.sqlite.xml
|
@ ./vendor/bin/phpunit -c tests/units.sqlite.xml
|
||||||
|
|
||||||
test-mysql:
|
test-mysql:
|
||||||
@ phpunit -c tests/units.mysql.xml
|
@ ./vendor/bin/phpunit -c tests/units.mysql.xml
|
||||||
|
|
||||||
test-postgres:
|
test-postgres:
|
||||||
@ phpunit -c tests/units.postgres.xml
|
@ ./vendor/bin/phpunit -c tests/units.postgres.xml
|
||||||
|
|
||||||
unittest: test-sqlite test-mysql test-postgres
|
unittest: test-sqlite test-mysql test-postgres
|
||||||
|
|
||||||
test-browser:
|
test-browser:
|
||||||
@ phpunit -c tests/acceptance.xml
|
@ ./vendor/bin/phpunit -c tests/acceptance.xml
|
||||||
|
|
||||||
integration-test-mysql:
|
integration-test-mysql:
|
||||||
@ composer install
|
@ composer install
|
||||||
|
|||||||
Reference in New Issue
Block a user