You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
After running coverage run test.py and coverage report -m:
Name Stmts Miss Cover Missing
---------------------------------------
test.py 11 1 91% 15
And line 15 is the single continue statement. If I add a print('continue') above it, tons of "continue" will be printed, and coverage report correctly back to 100%.
The text was updated successfully, but these errors were encountered:
Reproduction:
After running
coverage run test.py
andcoverage report -m
:And line 15 is the single
continue
statement. If I add aprint('continue')
above it, tons of "continue" will be printed, and coverage report correctly back to 100%.The text was updated successfully, but these errors were encountered: