Skip to content
Snippets Groups Projects
Commit dbdddf39 authored by Thijs Kinkhorst's avatar Thijs Kinkhorst Committed by GitHub
Browse files

Avoid travis segfaulting phpunit withn PHP 5.3 (#477)

The segfault happens in the coverage report. Since we send coverage
info only with PHP 5.6, avoid running it entirely, saves buildtime aswell.
parent a823e71e
No related branches found
No related tags found
No related merge requests found
......@@ -11,7 +11,7 @@ matrix:
- php: hhvm
before_script: composer update --dev
script:
- php vendor/phpunit/phpunit/phpunit --configuration tools/phpunit
- if [[ "$TRAVIS_PHP_VERSION" == "5.6" ]]; then php vendor/phpunit/phpunit/phpunit --configuration tools/phpunit; else php vendor/phpunit/phpunit/phpunit --configuration tools/phpunit --no-coverage; fi
- bin/check-syntax.sh
after_success:
- if [[ "$TRAVIS_PHP_VERSION" == "5.6" ]]; then php vendor/bin/coveralls -v; fi
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment