debugpy/.coveragerc

40 строки
788 B
Plaintext
Исходник Обычный вид История

[run]
branch = True
2020-02-01 02:09:42 +03:00
parallel = True
include =
2020-01-15 06:54:50 +03:00
src/debugpy/*
omit =
2020-01-15 06:54:50 +03:00
src/debugpy/__init__.py
src/debugpy/_version.py
src/debugpy/_vendored/*
src/debugpy/server/*
data_file = coverage/.coverage
[report]
exclude_also =
# __repr__ is mostly used for error messages.
def __repr__
# Asserts and error conditions.
raise AssertionError
raise NotImplementedError
raise TypeError
raise ValueError
raise AttributeError
raise RuntimeError
raise ComponentNotAvailable
raise messaging.MessageHandlingError
\.isnt_valid\(
\.cant_handle\(
# Code that's deliberately excluded.
if 0:
if __name__ == .__main__.:
[html]
directory = coverage/html
2020-01-15 06:54:50 +03:00
title = debugpy coverage report
[xml]
output = coverage/coverage.xml