From e42980d022cede00f7ff34285e85db23cd89882a Mon Sep 17 00:00:00 2001 From: Maks3w Date: Tue, 9 Oct 2018 21:54:34 +0200 Subject: [PATCH] [travis] Fix test command --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 7dd4048..9fb128e 100644 --- a/.travis.yml +++ b/.travis.yml @@ -28,7 +28,7 @@ install: - composer info -i script: - - if [[ $EXECUTE_TEST_COVERALLS == 'true' ]]; then vendor/bin/phpunit --coverage-clover clover.xml tests; fi + - if [[ $EXECUTE_TEST_COVERALLS == 'true' ]]; then vendor/bin/phpunit --coverage-clover clover.xml test; fi - if [[ $EXECUTE_TEST_COVERALLS != 'true' ]]; then vendor/bin/phpunit test; fi - if [[ $EXECUTE_CS_CHECK == 'true' ]]; then vendor/bin/php-cs-fixer fix -v --dry-run; fi