From 5b42fbd8a3675575f82829d95a80aec5fb5a0715 Mon Sep 17 00:00:00 2001 From: Frédéric Guillot Date: Fri, 21 Oct 2016 15:18:34 -0400 Subject: Use phpunit included in vendor folder --- Makefile | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Makefile b/Makefile index 9167e749..c379966f 100644 --- a/Makefile +++ b/Makefile @@ -49,21 +49,21 @@ archive: @ rm -rf ${BUILD_DIR}/kanboard 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: - @ phpunit -c tests/units.sqlite.xml + @ ./vendor/bin/phpunit -c tests/units.sqlite.xml test-mysql: - @ phpunit -c tests/units.mysql.xml + @ ./vendor/bin/phpunit -c tests/units.mysql.xml test-postgres: - @ phpunit -c tests/units.postgres.xml + @ ./vendor/bin/phpunit -c tests/units.postgres.xml unittest: test-sqlite test-mysql test-postgres test-browser: - @ phpunit -c tests/acceptance.xml + @ ./vendor/bin/phpunit -c tests/acceptance.xml integration-test-mysql: @ composer install -- cgit v1.2.3