Skip to content

Commit d7c3652

Browse files
committed
fix: add no-project option to uv run commands in tests.yml
1 parent 364058e commit d7c3652

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/tests.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,10 @@ jobs:
2727
run: uv sync --locked --no-default-groups --no-install-project --group dev --group test
2828

2929
- name: "Run mypy"
30-
run: uv run mypy py_cashier
30+
run: uv run --no-project mypy py_cashier
3131

3232
- name: "Run tests"
33-
run: uv run coverage run -m pytest tests/
33+
run: uv run --no-project coverage run -m pytest tests/
3434

3535
- name: "Enforce coverage"
36-
run: uv run coverage report --show-missing --skip-covered --fail-under=100
36+
run: uv run --no-project coverage report --show-missing --skip-covered --fail-under=100

0 commit comments

Comments
 (0)