File tree Expand file tree Collapse file tree 3 files changed +19
-35
lines changed Expand file tree Collapse file tree 3 files changed +19
-35
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -84,3 +84,21 @@ skip-magic-trailing-comma = true
8484[tool .ruff .lint .isort ]
8585combine-as-imports = true
8686split-on-trailing-comma = false
87+
88+ [tool .coverage .run ]
89+ branch = false
90+ omit = [" tests/*" ]
91+
92+ [tool .coverage .report ]
93+ exclude_lines = [
94+ " pragma: no cover" ,
95+ " raise NotImplementedError" ,
96+ " def __str__" ,
97+ " def __repr__" ,
98+ " if 0:" ,
99+ " if False:" ,
100+ " if __name__ == .__main__.:" ,
101+ " if self\\ .config\\ ['DEBUG'\\ ]:" ,
102+ " if self\\ .debug:" ,
103+ " except ImportError:" ,
104+ ]
Original file line number Diff line number Diff line change 88 pytest-timeout
99 PyYAML
1010commands =
11- pytest --cov-report term-missing --cov-config .coveragerc --cov multipart --timeout =30 tests
11+ pytest --cov-report term-missing --cov-config pyproject.toml --cov multipart --timeout =30 tests
You can’t perform that action at this time.
0 commit comments