Skip to content

Commit 216c0a2

Browse files
committed
wip
1 parent b53ca81 commit 216c0a2

File tree

2 files changed

+5
-9
lines changed

2 files changed

+5
-9
lines changed

.github/workflows/python-app.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535

3636
- name: Run Tests
3737
run: |
38-
poetry run pytest --cov=checkout --cov-report=xml
38+
poetry run pytest --cov-report=xml
3939
4040
lint:
4141
name: Lint and Type Check

pyproject.toml

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,6 @@ ignore = ["E402", "W503"]
8181
[tool.coverage.run]
8282
branch = true
8383
source = ["checkout"]
84-
include = ["checkout/*"]
8584
omit = [
8685
"checkout/*/__init__.py",
8786
"*/__pycache__/*"
@@ -94,18 +93,15 @@ omit = [
9493
]
9594
fail_under = 98
9695
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"
10496

97+
[tool.pytest.ini_options]
10598
filterwarnings = [
10699
"ignore:SOCKS support in urllib3 requires the installation of optional dependencies:urllib3.exceptions.DependencyWarning"
107100
]
108101

102+
[tool.coverage.xml]
103+
output = "coverage.xml"
104+
109105
[tool.env]
110106
PYTHONPATH = "checkout"
111107

0 commit comments

Comments
 (0)