We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 26fad8a commit bf570ccCopy full SHA for bf570cc
2 files changed
.github/workflows/test.yml
@@ -89,7 +89,7 @@ jobs:
89
run: uv sync --all-extras --dev
90
91
- name: Test with PyTest
92
- run: uv run pytest --cov=TODO_package_name/ --cov-fail-under=0 tests/
+ run: uv run pytest --cov=TODO_package_name/ tests/
93
94
- name: Minimize uv cache
95
run: uv cache prune --ci
pyproject.toml
@@ -34,8 +34,12 @@ dev = [
34
"pre-commit>=4.2.0",
35
"pytest>=8.4.1",
36
"pytest-cov>=6.2.1",
37
+ "pytest-custom-exit-code>=0.3.0",
38
]
39
40
+[tool.pytest.ini_options]
41
+addopts=['--suppress-no-test-exit-code']
42
+
43
[tool.ruff]
44
target-version = 'py313'
45
0 commit comments