Unsure if that's why I couldn't make the file, thinking of perhaps making the log directory part of the directory structure instead of creating it on the fly in Travis CI.
19 lines
346 B
YAML
19 lines
346 B
YAML
language: php
|
|
|
|
php:
|
|
- 5.5
|
|
- hhvm
|
|
|
|
matrix:
|
|
allow_failures:
|
|
- php: hhvm
|
|
|
|
install:
|
|
- composer install
|
|
|
|
script:
|
|
- mkdir -p vendors/composer/build/logs
|
|
- phpunit --coverage-clover vendors/composer/build/logs/clover.xml --bootstrap ./tests/bootstrap.php ./tests
|
|
|
|
after_script:
|
|
- php .composer/bin/coveralls --config .coveralls.yml -v
|