I’m a fan of code coverage as a way to ensure that there are covering tests. One area that I tend to rely heavily on Code Coverage for is to catch any tests that are no longer working correctly due to changes in the production code. That often works out well, but today I got… Continue reading When Code Coverage Betrayed Me
Tag: Code Coverage
Code Coverage on GitHub PRs with Coveralls.IO
With Coveralls.IO it’s possible to get code coverage on all pull requests submitted. For Kentor.AuthServices I’ve set up AppVeyor builds that uses Coveralls.Net to upload coverage numbers to Coveralls.IO. Why Coveralls.IO? When I set up the code coverage I already had AppVeyor builds running. I wanted something that worked together with AppVeyor. I tried out… Continue reading Code Coverage on GitHub PRs with Coveralls.IO