Skip to content

Commit 3c44cf0

Browse files
committed
Fix source command in Windows test stage
1 parent d9d036b commit 3c44cf0

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/windows-ci.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,10 @@ jobs:
4949
uv pip install --upgrade --editable .[dev]
5050
5151
- name: "Run tests"
52+
env:
53+
VIRTUAL_ENV: ~\AppData\Local\.venv
5254
run: |
53-
source "~\AppData\Local\.venv"
55+
"${{ env.VIRTUAL_ENV }}/Scripts\Activate.ps1"
5456
# We run tests against "." and not the tests directory as we test the README
5557
# and documentation.
5658
pytest -s -vvv --cov-fail-under 100 --cov=src/ --cov=tests . --cov-report=xml

0 commit comments

Comments
 (0)