We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e5347bc commit 52cd30bCopy full SHA for 52cd30b
.github/workflows/ci.yml
@@ -74,4 +74,4 @@ jobs:
74
- uses: codecov/codecov-action@v5
75
with:
76
token: ${{ secrets.CODECOV_TOKEN }}
77
- flags: selenium
+ flags: selenium-${{ matrix.os }}
pyproject.toml
@@ -65,12 +65,19 @@ write_to = "s3file/_version.py"
65
66
[tool.pytest.ini_options]
67
minversion = "6.0"
68
-addopts = "--cov=s3file --tb=short -rxs"
+addopts = "--cov --cov-report=xml --cov-report=term --tb=short -rxs"
69
testpaths = [
70
"tests",
71
]
72
DJANGO_SETTINGS_MODULE = "tests.testapp.settings"
73
+[tool.coverage.run]
+source = ["s3file"]
+
+[tool.coverage.report]
78
+show_missing = true
79
+skip_covered = true
80
81
[tool.ruff]
82
src = ["s3file", "tests"]
83
line-length = 88
0 commit comments