mirror of https://github.com/zulip/zulip.git
coverage: Don't require coverage for NotImplementedErrors.
This commit is contained in:
parent
401ae3db97
commit
5ee33e59b8
|
@ -5,6 +5,8 @@ exclude_lines =
|
|||
pragma: no cover
|
||||
# Don't complain if non-runnable code isn't run:
|
||||
if False:
|
||||
# Don't require coverage for base class NotImplementedErrors
|
||||
raise NotImplementedError()
|
||||
|
||||
[run]
|
||||
omit =
|
||||
|
|
Loading…
Reference in New Issue