We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 46b220e commit e468f90Copy full SHA for e468f90
.github/workflows/check.yaml
@@ -55,8 +55,8 @@ jobs:
55
run: uv sync
56
57
- name: Test with pytest
58
- run: |
59
- uv run pytest
+ timeout-minutes: 5
+ run: uv run pytest --no-cov --timeout=60
60
61
- name: Minimize uv cache
62
run: uv cache prune --ci
pyproject.toml
@@ -91,7 +91,7 @@ packages = ["src/typed_diskcache"]
91
include = ["src/typed_diskcache", "src/licenses"]
92
93
[tool.pytest.ini_options]
94
-addopts = "-n 4 --cov=src/typed_diskcache --cov-report html --cov-report=xml -W error::UserWarning"
+addopts = "-n 4 -W error::UserWarning"
95
testpaths = ["src/tests"]
96
markers = [
97
"only"
0 commit comments