Skip to content

Commit 95501ca

Browse files
committed
Use backslashes on Windows paths
1 parent 689735c commit 95501ca

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/windows-ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,14 +45,14 @@ jobs:
4545
run: |
4646
irm https://astral.sh/uv/install.ps1 | iex
4747
uv venv ${{ env.VIRTUAL_ENV }}
48-
"${{ env.VIRTUAL_ENV }}/Scripts\Activate.ps1"
48+
"${{ env.VIRTUAL_ENV }}\Scripts\Activate.ps1"
4949
uv pip install --upgrade --editable .[dev]
5050
5151
- name: "Run tests"
5252
env:
5353
VIRTUAL_ENV: ~\AppData\Local\.venv
5454
run: |
55-
"${{ env.VIRTUAL_ENV }}/Scripts\Activate.ps1"
55+
"${{ env.VIRTUAL_ENV }}\Scripts\Activate.ps1"
5656
# We run tests against "." and not the tests directory as we test the README
5757
# and documentation.
5858
pytest -s -vvv --cov-fail-under 100 --cov=src/ --cov=tests . --cov-report=xml

0 commit comments

Comments
 (0)