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 d723339 commit a10f496Copy full SHA for a10f496
.github/workflows/tests.yml
@@ -43,16 +43,16 @@ jobs:
43
run: |
44
# NOTE: maturin requires a virtual environment to be active
45
python -m venv .venv
46
- source .venv/bin/activate
+ ${{ runner.os == 'Windows' && '.venv\Scripts\activate' || 'source .venv/bin/activate' }}
47
python -m pip install --upgrade pip
48
python -m pip install -r requirements-ci.txt
49
50
- name: Build Python package
51
52
53
maturin develop
54
55
- name: Run Python tests
56
57
58
pytest
0 commit comments