We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c7a48fa commit 50e4eb3Copy full SHA for 50e4eb3
1 file changed
.github/workflows/test.yml
@@ -60,6 +60,8 @@ jobs:
60
- uses: actions/setup-python@v6
61
with:
62
python-version: 3.x
63
+ - name: Install uv
64
+ uses: astral-sh/setup-uv@v7
65
- id: prepare-container
66
name: Prepare docker container
67
run: docker compose up -d --wait
@@ -69,7 +71,10 @@ jobs:
69
71
- name: Build lib
70
72
uses: PyO3/maturin-action@v1
73
- command: dev
74
+ command: dev --uv
75
sccache: true
76
- name: Run pytest
- run: uv run pytest -vv -n auto python/tests
77
+ run: |
78
+ set -e
79
+ source .venv/bin/activate
80
+ pytest -vv -n auto python/tests
0 commit comments