pickles/.travis.yml
Joshua Sherman 04e008c508 Moved composer out of the private directory
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.
2014-01-11 16:23:06 -05:00

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