test coverage: complete branch coverage is NOT a goal

Branch coverage means lots of duplication in tests to hit all cases, and I'm
not sure it's worth it. At any rate, let's aim for statement coverage first.
This commit is contained in:
Aldo Cortesi 2016-11-02 10:54:08 +13:00
parent 7e6d014f8f
commit ee67797c7e
1 changed files with 1 additions and 1 deletions

View File

@ -10,7 +10,7 @@ testpaths = test
addopts = --capture=no --color=yes
[coverage:run]
branch = True
branch = False
omit = *contrib*, *tnetstring*, *platform*, *main.py
[coverage:report]