File tree Expand file tree Collapse file tree 1 file changed +24
-1
lines changed
Expand file tree Collapse file tree 1 file changed +24
-1
lines changed Original file line number Diff line number Diff line change @@ -78,6 +78,29 @@ omit = [
7878]
7979
8080
81+ [tool .coverage .run ]
82+ branch = false
83+ omit = [
84+ " tests/*" ,
85+ ]
86+ source = [ " src" ]
87+
88+ [tool .coverage .report ]
89+ fail_under = 0
90+ show_missing = true
91+ exclude_lines = [
92+ " # pragma: no cover" ,
93+ " raise NotImplemented" ,
94+ ]
95+ omit = [
96+ " */.buildout/eggs/*" ,
97+ " buildout-cache/eggs/*" ,
98+ " eggs/*" ,
99+ " parts/*" ,
100+ " src/crate/client/_pep440.py" ,
101+ ]
102+
103+
81104[tool .mypy ]
82105mypy_path = " src"
83106packages = [
@@ -95,7 +118,7 @@ non_interactive = true
95118
96119
97120[tool .pytest .ini_options ]
98- addopts = " -rA --verbosity=3"
121+ addopts = " -rA --verbosity=3 --cov --cov-report=term-missing --cov-report=xml "
99122minversion = " 2.0"
100123log_level = " DEBUG"
101124log_cli_level = " DEBUG"
You can’t perform that action at this time.
0 commit comments