Skip to content

Commit 1a4b36f

Browse files
committed
Fix pytest in gh action
1 parent f441432 commit 1a4b36f

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/publish.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,9 @@ jobs:
2626
uv pip install ".[dev]"
2727
2828
- name: Run tests
29-
run: uv pip run pytest
29+
run: |
30+
uv pip install pytest
31+
pytest
3032
3133
build:
3234
needs: test

0 commit comments

Comments
 (0)