Skip to content

Commit 82515dc

Browse files
committed
fix error with test all tags
1 parent e625fe0 commit 82515dc

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/lint-and-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,4 +71,4 @@ jobs:
7171
${{ runner.os }}-uv-py${{ matrix.python-version }}-
7272
7373
- name: Run tests
74-
run: uv run --python "${{ matrix.python-version }}" pytest -rs
74+
run: uv run --python "${{ matrix.python-version }}" pytest -rs --no-cov

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ coverage: ensure-env
1818

1919
test-all-python-tags: ensure-env
2020
@for tag in $$PYTHON_TAGS; do \
21-
uv run --env-file .env --python "$$tag" pytest -rs; \
21+
uv run --env-file .env --python "$$tag" pytest -rs --no-cov; \
2222
done
2323

2424
lint:

0 commit comments

Comments
 (0)