-
Notifications
You must be signed in to change notification settings - Fork 21
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add support for test coverage tracking with Coveralls #101
Conversation
@TravisCarden this appears to have tested correctly, however coveralls isn't detecting the PR. I've replicated everything from PR51, is there something else that has to happen on the coveralls side to get it to show up? |
0bc1e2b
to
7329a8f
Compare
…her Composer libraries.
7329a8f
to
b075753
Compare
b075753
to
2630f03
Compare
@TravisCarden Bit late now, but I'm not a big fan of a specific service like Coveralls being forced if you also want coverage data collected. There are a lot of services out there that pull in clover files. I don't see a way to collect coverage data and not use Would really love if ORCA checked if |
This adds PHPUnit code coverage generation and Coveralls (coveralls.io) integration. To implement it, connect your GitHub repository to Coveralls and make the following change to your
.travis.yml
:Fixes #95, closes #96. (Thanks, @swichers!)