Merge pull request #4119 from mhils/assertion-cov
Don't count overage for AssertionErrors
This commit is contained in:
commit
2e4eed2d2c
|
@ -17,7 +17,8 @@ omit = *contrib*, *tnetstring*, *platform*, *main.py
|
|||
show_missing = True
|
||||
exclude_lines =
|
||||
pragma: no cover
|
||||
raise NotImplementedError()
|
||||
raise NotImplementedError
|
||||
raise AssertionError
|
||||
if typing.TYPE_CHECKING:
|
||||
if TYPE_CHECKING:
|
||||
@overload
|
||||
|
|
Loading…
Reference in New Issue