Updated TravisCI config, using: - http://docs.travis-ci.com/user/languages/php/ - https://github.com/satooshi/php-coveralls#travis-ci Removed automatic code coverage execution when running phpunit Added coveralls.io badge
19 lines
260 B
YAML
19 lines
260 B
YAML
language: php
|
|
|
|
php:
|
|
- 5.4
|
|
- 5.5
|
|
- 5.6
|
|
- nightly
|
|
- hhvm
|
|
|
|
install:
|
|
- composer install --no-interaction
|
|
|
|
script:
|
|
- mkdir -p build/logs
|
|
- php vendor/bin/phpunit --coverage-clover build/logs/clover.xml
|
|
|
|
after_script:
|
|
- php vendor/bin/coveralls -v
|