We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 30e4dd2 commit 8642abaCopy full SHA for 8642aba
.github/workflows/shared.yml
@@ -26,6 +26,7 @@ jobs:
26
test:
27
runs-on: ${{ matrix.os }}
28
timeout-minutes: 10
29
+ continue-on-error: true
30
strategy:
31
matrix:
32
python-version: ["3.10", "3.11", "3.12", "3.13"]
@@ -46,6 +47,6 @@ jobs:
46
47
- name: Run pytest
48
run: uv run --frozen --no-sync pytest
49
- # this must run last as it modifies the environment!
50
- - name: test lowest versions
51
- run: uv run --all-extras --resolution lowest-direct pytest
+ # This must run last as it modifies the environment!
+ - name: Run pytest with lowest versions
52
+ run: uv run --all-extras --resolution lowest-direct --upgrade pytest
0 commit comments