File tree Expand file tree Collapse file tree 1 file changed +8
-2
lines changed
Expand file tree Collapse file tree 1 file changed +8
-2
lines changed Original file line number Diff line number Diff line change 11language : php
22dist : trusty
3+ git :
4+ depth : 3
5+ quiet : true
6+ env :
7+ - TEST_SUITE=Unit
8+ - TEST_SUITE=Integration
39php :
410 - 7.2
511sudo : false
@@ -15,8 +21,8 @@ before_script:
1521 - cp .env.travis .env
1622 - travis_retry composer install --no-interaction --prefer-dist --no-suggest
1723script :
18- - vendor/bin/phpunit --bootstrap vendor/autoload.php --coverage-clover coverage.xml tests/Unit
19- - vendor/bin/phpunit tests/Integration
24+ - if [ "$TEST_SUITE" = "Unit" ]; then vendor/bin/phpunit --bootstrap vendor/autoload.php --coverage-clover coverage.xml tests/Unit; fi;
25+ - if [ "$TEST_SUITE" = "Integration" ]; then vendor/bin/phpunit tests/Integration; fi;
2026notifications :
2127 email : false
2228 webhooks :
You can’t perform that action at this time.
0 commit comments