Skip to content

Commit

Permalink
Use phpunit provided by travis
Browse files Browse the repository at this point in the history
  • Loading branch information
xemlock committed Dec 10, 2019
1 parent fd777c6 commit 65e09eb
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,11 @@ install:

script:
- mkdir -p build/logs
- php vendor/bin/phpunit --coverage-clover build/logs/clover.xml
- php vendor/bin/phpunit --coverage-clover build/logs/clover.xml; echo
- |
if [[ "${TRAVIS_PHP_VERSION}" = 5.6 ]]; then
phpunit --coverage-clover build/logs/clover.xml
fi
after_script:
- if [ -f "vendor/bin/php-coveralls" ]; then php vendor/bin/php-coveralls -v; else vendor/bin/coveralls -v; fi

0 comments on commit 65e09eb

Please sign in to comment.