We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 7aa52fc + 018bfd3 commit f460134Copy full SHA for f460134
.travis.yml
@@ -13,10 +13,11 @@ matrix:
13
- php: nightly
14
15
before_script:
16
- - composer require php-coveralls/php-coveralls:^2.1.0
+ - if [[ "$ANALYSIS" == 'true' ]]; then composer require php-coveralls/php-coveralls:^2.1.0 ; fi
17
- composer install -n
18
19
script:
20
+ - if [[ "$ANALYSIS" != 'true' ]]; then vendor/bin/phpunit ; fi
21
- if [[ "$ANALYSIS" == 'true' ]]; then vendor/bin/phpunit --coverage-clover clover.xml ; fi
22
23
after_success:
0 commit comments