File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -72,7 +72,7 @@ pytest-asyncio = "^1.1.0"
7272pytest-cov = " ^6.2.1"
7373
7474[tool .poe .tasks ]
75- _test = " python -m pytest -v --cov=ddcDatabases --cov-report=term --cov-report=xml --junitxml=junit.xml -o junit_family=legacy"
75+ _test = " python -m pytest -v --cov --cov-report=term --cov-report=xml --junitxml=junit.xml -o junit_family=legacy"
7676tests = [" _test" ]
7777test = [" tests" ]
7878
@@ -82,11 +82,22 @@ skip-string-normalization = true
8282
8383[tool .coverage .run ]
8484omit = [
85- " build.py" ,
8685 " tests/*" ,
86+ " */__init__.py" ,
8787]
8888
8989[tool .coverage .report ]
9090exclude_lines = [
9191 " pragma: no cover" ,
92+ " def __repr__" ,
93+ " if self.debug:" ,
94+ " if settings.DEBUG" ,
95+ " raise AssertionError" ,
96+ " raise NotImplementedError" ,
97+ " if 0:" ,
98+ " if __name__ == .__main__.:" ,
99+ " class .*\\ bProtocol\\ ):" ,
100+ " @(abc\\ .)?abstractmethod" ,
92101]
102+ show_missing = false
103+ skip_covered = false
You can’t perform that action at this time.
0 commit comments