diff options
| author | Frédéric Guillot <fred@kanboard.net> | 2016-10-21 15:18:34 -0400 | 
|---|---|---|
| committer | Frédéric Guillot <fred@kanboard.net> | 2016-10-21 15:18:34 -0400 | 
| commit | 5b42fbd8a3675575f82829d95a80aec5fb5a0715 (patch) | |
| tree | a87c3ed0ccbfeecce0d212e38eaa6d9e813e50a4 | |
| parent | 598da038fc3b146339b986b1eac9d50208e0f82c (diff) | |
Use phpunit included in vendor folder
| -rw-r--r-- | Makefile | 10 | 
1 files changed, 5 insertions, 5 deletions
| @@ -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 | 
