Skip to content

Commit d723339

Browse files
committed
refactor: source venv
1 parent 3b7e435 commit d723339

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.github/workflows/tests.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,11 @@ jobs:
4848
python -m pip install -r requirements-ci.txt
4949
5050
- name: Build Python package
51-
run: maturin develop
51+
run: |
52+
source .venv/bin/activate
53+
maturin develop
5254
5355
- name: Run Python tests
54-
run: pytest
56+
run: |
57+
source .venv/bin/activate
58+
pytest

0 commit comments

Comments
 (0)