coveragepy icon indicating copy to clipboard operation
coveragepy copied to clipboard

The code coverage tool for Python

Results 302 coveragepy issues
Sort by recently updated
recently updated
newest added

**Is your feature request related to a problem? Please describe.** Consider the following code: ``` def f(x): try: y = 1/x except ZeroDivisionError: y = 0 return y def test_exception_branch_coverage():...

enhancement
branch

Currently, running coverage on code like ``` def f(): f() f() ``` will error with ``` Traceback (most recent call last): File "test.py", line 4, in f() ~^^ File "test.py",...

enhancement