Skip to content
Kitamura Satoshi edited this page May 10, 2013 · 1 revision

Troubleshooting

Composer install failed!

Try --prefer-source option.

composer install --dev --prefer-source

Failed to submit json_file!

Try --verbose (or -v) to confirm server response status.

php vendor/bin/coveralls -v
  • 500 error
    • restart build or job
  • 400 error
    • configuration may be wrong

Want to ignore interface files from coveralls stats

Use --exclude-no-stmt CLI option or add exclude_no_stmt: true in .coveralls.yml.

# use CLI option
php vendor/bin/coveralls --exclude-no-stmt
# or configure .coveralls.yml
exclude_no_stmt: true