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 89fc6f7 commit 4512780Copy full SHA for 4512780
.github/workflows/continuous-integration.yml
@@ -42,8 +42,14 @@ jobs:
42
enable-cache: true
43
- name: Sync
44
run: uv sync --all-extras
45
- - name: test
46
- run: uv run scripts/test
+ - name: Test
+ # Windows doesn't like uv run when pointed at a script 🤷♀️
47
+ run: |
48
+ if [ "$RUNNER_OS" == "Windows" ]; then
49
+ source .venv/bin/activate && scripts/test
50
+ else
51
+ uv run scripts/test
52
+ fi
53
shell: bash
54
env:
55
TMPDIR: "${{ matrix.os == 'windows-latest' && 'D:\\a\\_temp' || '' }}"
0 commit comments