File tree Expand file tree Collapse file tree 2 files changed +10
-4
lines changed Expand file tree Collapse file tree 2 files changed +10
-4
lines changed Original file line number Diff line number Diff line change @@ -56,17 +56,23 @@ jobs:
56
56
runner : [ codspeed-macro, ubuntu-latest ]
57
57
steps :
58
58
- uses : actions/checkout@v4
59
+ - name : Set up Python
60
+ uses : actions/setup-python@v5
61
+ with :
62
+ python-version-file : " .python-version"
59
63
- uses : astral-sh/setup-uv@v6
60
64
with :
61
65
enable-cache : true
62
66
63
67
- uses : Swatinem/rust-cache@v2
64
- - run : uv sync --extra test --locked
65
- - uses : CodSpeedHQ/action@v3
68
+ - run : |
69
+ export UV_PROJECT_ENVIRONMENT="${pythonLocation}"
70
+ uv sync --extra test --locked
71
+ -
uses :
CodSpeedHQ/[email protected]
66
72
with :
67
73
token : ${{ secrets.CODSPEED_TOKEN }}
68
74
# allow updating snapshots due to indeterministic benchmarks
69
- run : uv run pytest -vvv -n auto -- snapshot-update
75
+ run : pytest -vvv -- snapshot-update --durations=10
70
76
71
77
docs :
72
78
runs-on : ubuntu-latest
Original file line number Diff line number Diff line change 1
- 3.12
1
+ 3.13
You can’t perform that action at this time.
0 commit comments