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 05c28d0 commit 6a52dc5Copy full SHA for 6a52dc5
.github/workflows/tests.yml
@@ -26,7 +26,9 @@ jobs:
26
run: python -m pip install tox
27
28
- name: run Python tests
29
- run: tox -e tests
+ run: |
30
+ tox -e tests
31
+ coverage xml
32
33
- name: upload to codecov.io
34
uses: codecov/codecov-action@v5
pyproject.toml
@@ -86,7 +86,12 @@ known_first_party = "skmatter"
86
87
[tool.pytest.ini_options]
88
testpaths = ["tests"]
89
-addopts = ["--cov"]
+addopts = [
90
+ "--cov",
91
+ "--cov-append",
92
+ "--cov-report=",
93
+ "--import-mode=append",
94
+]
95
96
[tool.ruff]
97
exclude = ["docs/src/examples/"]
0 commit comments