bloomberg/pystack

Reach 100% coverage of Python code

godlygeek opened this issue · 3 comments

Our make pycoverage command currently has --cov-fail-under=97 to fail the test suite if the Python code coverage level drops below 80%. Let's get that up to 100% (adding a # pragma: no cover for anything that's not reasonably testable), and update this to --cov-fail-under=100.

I can work on this one!

This is technically already done, although after #86 the python code coverage will also include Cython coverage, which will move it back to ~96% or so. Still, all of the Python code is technically covered, so I'm closing this issue and adding one for Cython: #88

Thank you @yize415!