File tree 2 files changed +6
-6
lines changed
2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -17,11 +17,11 @@ cache:
17
17
- $HOME/.composer/cache
18
18
19
19
before_install :
20
- - phpenv config-rm xdebug.ini
20
+ - if [[ "$TRAVIS_PHP_VERSION" != "7.0" && "$TRAVIS_PHP_VERSION" != "hhvm" ]]; then phpenv config-rm xdebug.ini; fi
21
21
- composer selfupdate
22
22
23
23
install : composer update --prefer-dist --no-interaction
24
24
25
25
script : ./bin/travis_phpunit
26
26
after_script :
27
- - if [ "$TRAVIS_PHP_VERSION" == "5.6 " ]; then wget https://scrutinizer-ci.com/ocular.phar && php ocular.phar code-coverage:upload --format=php-clover coverage.clover; fi
27
+ - if [ "$TRAVIS_PHP_VERSION" == "7.0 " ]; then wget https://scrutinizer-ci.com/ocular.phar && php ocular.phar code-coverage:upload --format=php-clover coverage.clover; fi
Original file line number Diff line number Diff line change @@ -6,10 +6,10 @@ EXCLUDE_GROUPS="--exclude-group cs"
6
6
7
7
if [ " $TRAVIS_PHP_VERSION " == " 7.0" ]
8
8
then
9
- $PHPUNIT -d xdebug.max_nesting_level=1000 --coverage-clover=coverage.clover $EXCLUDE_GROUPS
10
- elif [ " $TRAVIS_PHP_VERSION " == " 5.6" ]
11
- then
12
- $PHPUNIT
9
+ $PHPUNIT -d xdebug.max_nesting_level=200 --coverage-clover=coverage.clover $EXCLUDE_GROUPS
10
+ # elif [ "$TRAVIS_PHP_VERSION" == "5.6" ]
11
+ # then
12
+ # $PHPUNIT
13
13
else
14
14
$PHPUNIT $EXCLUDE_GROUPS
15
15
fi
You can’t perform that action at this time.
0 commit comments