File tree Expand file tree Collapse file tree 2 files changed +5
-9
lines changed Expand file tree Collapse file tree 2 files changed +5
-9
lines changed Original file line number Diff line number Diff line change 35
35
36
36
- name : Run Tests
37
37
run : |
38
- poetry run pytest --cov=checkout --cov -report=xml
38
+ poetry run pytest --cov-report=xml
39
39
40
40
lint :
41
41
name : Lint and Type Check
Original file line number Diff line number Diff line change @@ -81,7 +81,6 @@ ignore = ["E402", "W503"]
81
81
[tool .coverage .run ]
82
82
branch = true
83
83
source = [" checkout" ]
84
- include = [" checkout/*" ]
85
84
omit = [
86
85
" checkout/*/__init__.py" ,
87
86
" */__pycache__/*"
@@ -94,18 +93,15 @@ omit = [
94
93
]
95
94
fail_under = 98
96
95
show_missing = true
97
- show_covered = true
98
-
99
- [tool .coverage .html ]
100
- title = " Test Coverage Report"
101
-
102
- [tool .coverage .xml ]
103
- output = " coverage.xml"
104
96
97
+ [tool .pytest .ini_options ]
105
98
filterwarnings = [
106
99
" ignore:SOCKS support in urllib3 requires the installation of optional dependencies:urllib3.exceptions.DependencyWarning"
107
100
]
108
101
102
+ [tool .coverage .xml ]
103
+ output = " coverage.xml"
104
+
109
105
[tool .env ]
110
106
PYTHONPATH = " checkout"
111
107
You can’t perform that action at this time.
0 commit comments