We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e625fe0 commit 82515dcCopy full SHA for 82515dc
2 files changed
.github/workflows/lint-and-test.yml
@@ -71,4 +71,4 @@ jobs:
71
${{ runner.os }}-uv-py${{ matrix.python-version }}-
72
73
- name: Run tests
74
- run: uv run --python "${{ matrix.python-version }}" pytest -rs
+ run: uv run --python "${{ matrix.python-version }}" pytest -rs --no-cov
Makefile
@@ -18,7 +18,7 @@ coverage: ensure-env
18
19
test-all-python-tags: ensure-env
20
@for tag in $$PYTHON_TAGS; do \
21
- uv run --env-file .env --python "$$tag" pytest -rs; \
+ uv run --env-file .env --python "$$tag" pytest -rs --no-cov; \
22
done
23
24
lint:
0 commit comments