Skip to content

Commit b3dddd7

Browse files
committed
Adding maturin develop
1 parent b4aab9a commit b3dddd7

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.github/workflows/rust.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,11 +46,15 @@ jobs:
4646
run: |
4747
python -m pip install --upgrade pip
4848
pip install -r tpch/requirements.txt
49-
pip install -r requirements-in.txt
5049
- name: Generate test data
5150
run: |
5251
./scripts/gen-test-data.sh
5352
- name: Run Rust tests
5453
run: cargo test --verbose
5554
- name: Run Python tests
56-
run: python -m pytest
55+
run: |
56+
python -m venv venv
57+
source venv/bin/activate
58+
pip install -r requirements-in.txt
59+
maturin develop
60+
python -m pytest

0 commit comments

Comments
 (0)