-
Notifications
You must be signed in to change notification settings - Fork 126
Closed
Labels
Description
php-coveralls keeps failing on travis with following exception:
[Symfony\Component\Config\Definition\Exception\InvalidConfigurationException]
Failing build is https://travis-ci.org/lioman/blog-retrospection/jobs/63439207
My .coverall.yml
service_name: travis-ci
src_dir: .
coverage_clover: build/logs/clover.xml
json_path: build/logs/coveralls-upload.json
My .travis.yml
language: php
notifications:
on_success: never
on_failure: change
php:
- 5.3
- 5.5
env:
- WP_VERSION=latest WP_MULTISITE=0
matrix:
include:
- php: 5.3
env: WP_VERSION=latest WP_MULTISITE=1
before_script:
- bash bin/install-wp-tests.sh wordpress_test root '' localhost $WP_VERSION
- curl -s http://getcomposer.org/installer | php
- php composer.phar install --no-interaction
script:
- mkdir -p build/logs
- phpunit --coverage-clover build/logs/clover.xml
after_script:
- php vendor/bin/coveralls -v
How can I fix this?
Reactions are currently unavailable