Try composer install phpunit

This commit is contained in:
Josh Sherman 2018-01-07 23:13:00 -06:00
parent 3d4ceeb6fd
commit 1f016c6b4b
No known key found for this signature in database
GPG key ID: 55B058A80530EF22
2 changed files with 16 additions and 13 deletions

View file

@ -19,13 +19,13 @@ install:
- composer install
before_script:
- if [[ $HHVM == true ]]; then curl -sSfL -o ~/.phpenv/versions/hhvm/bin/phpunit https://phar.phpunit.de/phpunit-5.7.phar; fi
- phpunit --version
- mkdir -p build/logs
- cd tests
script:
- phpunit --colors --coverage-clover ../build/logs/clover.xml .
- if [[ $HHVM == true ]]; then ./vendor/bin/phpunit --colors --coverage-clover ../build/logs/clover.xml .; fi
- if [[ $HHVM != true ]]; then phpunit --colors --coverage-clover ../build/logs/clover.xml .; fi
after_success:
- cd ..