Skip to content

Commit 80fd7e1

Browse files
Try using system Python and not running tests in parallel
1 parent e3348d6 commit 80fd7e1

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

.github/workflows/CI.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -56,21 +56,22 @@ jobs:
5656
runner: [ codspeed-macro, ubuntu-latest ]
5757
steps:
5858
- uses: actions/checkout@v4
59-
- uses: astral-sh/setup-uv@v6
60-
with:
61-
enable-cache: true
6259
- name: Set up Python
6360
uses: actions/setup-python@v5
6461
with:
6562
python-version-file: "pyproject.toml"
63+
- uses: astral-sh/setup-uv@v6
64+
with:
65+
enable-cache: true
66+
python-preference: "only-system"
6667
- uses: dtolnay/[email protected]
6768
- uses: Swatinem/rust-cache@v2
6869
- run: uv sync --extra test --locked
6970
- uses: CodSpeedHQ/[email protected]
7071
with:
7172
token: ${{ secrets.CODSPEED_TOKEN }}
7273
# allow updating snapshots due to indeterministic benchmarks
73-
run: uv run pytest -vvv -n auto --snapshot-update
74+
run: uv run pytest -vvv --snapshot-update --benchmark-only
7475

7576
docs:
7677
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)