aclark4life / vanity

Get package download statistics from PyPI
GNU General Public License v2.0
66 stars 14 forks source link

Don't cover tests.py #38

Closed hugovk closed 7 years ago

hugovk commented 7 years ago

We don't want to include test.py in the coverage report.

Before:

$ coverage report
Name        Stmts   Miss  Cover
-------------------------------
tests.py       16      0   100%
vanity.py     156     21    87%
-------------------------------
TOTAL         172     21    88%

After:

$ coverage report
Name        Stmts   Miss  Cover
-------------------------------
vanity.py     156     21    87%