2017-03-05 07:38:18 +01:00
|
|
|
[report]
|
|
|
|
# Regexes for lines to exclude from consideration
|
|
|
|
exclude_lines =
|
|
|
|
# Re-enable the standard coverage pragma
|
2017-03-05 08:01:50 +01:00
|
|
|
nocoverage
|
2017-03-05 07:40:56 +01:00
|
|
|
# Don't complain if non-runnable code isn't run:
|
|
|
|
if False:
|
2017-03-05 07:47:22 +01:00
|
|
|
# Don't require coverage for base class NotImplementedErrors
|
2023-05-30 00:01:44 +02:00
|
|
|
raise NotImplementedError
|
2017-03-05 08:01:50 +01:00
|
|
|
# Don't require coverage for test suite AssertionError -- they're usually for clarity
|
|
|
|
raise AssertionError
|
2017-10-27 09:06:40 +02:00
|
|
|
# Don't require coverage for __str__ statements just used for printing
|
2023-03-08 22:18:59 +01:00
|
|
|
def __(repr|str)__[(]self[)] -> .*:
|
2018-05-22 16:45:21 +02:00
|
|
|
# Don't require coverage for errors about unsupported webhook event types
|
2022-11-17 09:30:48 +01:00
|
|
|
raise UnsupportedWebhookEventTypeError
|
2019-07-30 20:58:48 +02:00
|
|
|
# Don't require coverage for blocks only run when type-checking
|
|
|
|
if TYPE_CHECKING:
|
2020-04-02 23:00:56 +02:00
|
|
|
# Don't require coverage for abstract methods; they're never called.
|
|
|
|
@abstractmethod
|
2019-11-13 08:17:49 +01:00
|
|
|
# PEP 484 overloading syntax
|
|
|
|
^\s*\.\.\.
|
2022-02-11 19:43:55 +01:00
|
|
|
# Skipped unit tests
|
|
|
|
@skip
|
2017-03-05 07:38:18 +01:00
|
|
|
|
|
|
|
[run]
|
2020-02-19 15:53:12 +01:00
|
|
|
data_file=var/.coverage
|
2022-05-14 22:52:31 +02:00
|
|
|
|
|
|
|
# dynamic_context=test_function, combined with using
|
|
|
|
# html_report(..., show_contexts=True), means the HTML report can detail
|
|
|
|
# which test(s) executed each line with coverage. This has modest
|
|
|
|
# overhead but is very useful for finding existing tests for a code path.
|
|
|
|
dynamic_context=test_function
|
|
|
|
|
2023-05-30 00:01:44 +02:00
|
|
|
source =
|
|
|
|
analytics/
|
|
|
|
confirmation/
|
|
|
|
corporate/
|
|
|
|
pgroonga/
|
|
|
|
zerver/
|
|
|
|
zilencer/
|
|
|
|
zproject/
|