Re: Online tools to track our test coverage & code quality
Peter Cock <[email protected]>
| Newsgroups | gmane.comp.python.bio.devel |
|---|---|
| Message-ID | <CAKVJ-_7bi7ya6c=CufkYsYV-cFS+6CLN5VQ6jP2Ua2XrMGNRMQ@mail.gmail.com> |
On Tue, Dec 8, 2015 at 5:07 PM, Peter Cock <[email protected]> wrote: >> Note that some parts of the code will wrongly appear to have low >> test coverage - this happens when we have a test but it is not >> being run on TravisCI due to missing a dependency, or it is an >> online test. RE: https://codecov.io/gh/biopython/biopython Sometimes our coverage scores are very low because there is a "self-test" at the end of the file which counts as negative rather than positive (because it never gets run via TravisCI): https://github.com/biopython/biopython/issues/820 Peter