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 aac3353 commit 18aa79bCopy full SHA for 18aa79b
.github/workflows/shared.yml
@@ -83,7 +83,18 @@ jobs:
83
uv run --no-project --no-sync python -c "from anyio._backends import _asyncio; print('Import successful')" || echo "Import failed"
84
85
- name: Run pytest
86
- run: uv run ${{ matrix.dep-resolution.name == 'lowest-direct' && '--no-project --no-sync' || '--frozen --no-sync' }} pytest
+ shell: bash
87
+ run: |
88
+ if [ "${{ matrix.dep-resolution.name }}" == "lowest-direct" ]; then
89
+ # Run pytest directly from venv to avoid any uv resolution issues
90
+ if [ "$RUNNER_OS" == "Windows" ]; then
91
+ .venv/Scripts/python -m pytest
92
+ else
93
+ .venv/bin/python -m pytest
94
+ fi
95
96
+ uv run --frozen --no-sync pytest
97
98
99
readme-snippets:
100
runs-on: ubuntu-latest
0 commit comments