File tree Expand file tree Collapse file tree 1 file changed +4
-5
lines changed
Expand file tree Collapse file tree 1 file changed +4
-5
lines changed Original file line number Diff line number Diff line change @@ -129,26 +129,25 @@ all = {composite = ["pytest", "lint"]}
129129
130130[tool .pytest .ini_options ]
131131testpaths = " tests"
132- addopts = " -v"
133132log_cli = true
134133log_cli_level = " INFO"
135134log_cli_format = " %(asctime)s [%(levelname)s] %(message)s (%(filename)s:%(lineno)s)"
136135log_cli_date_format = " %Y-%m-%d %H:%M:%S"
137- # addopts = "--cov --cov-report html --cov-report term-missing --cov-fail-under 95"
136+ addopts = [ " --cov" , " -v " , " --cov-report=html " ]
138137
139138[tool .mypy ]
140139warn_unreachable = true
141140ignore_missing_imports = true
142141
143142[tool .coverage .run ]
144- source = " src"
145- omit = " tests/*"
143+ source = [ " src" ]
144+ omit = [ " tests/*" ]
146145# relative_files = true
147146
148147[tool .coverage .report ]
149148# Note: Set low for this repository
150149# Recommend setting a value > 90%
151- fail_under = 25
150+ fail_under = 75
152151skip_empty = true
153152ignore_errors = true
154153show_missing = true
You can’t perform that action at this time.
0 commit comments