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 b4aab9a commit b3dddd7Copy full SHA for b3dddd7
.github/workflows/rust.yml
@@ -46,11 +46,15 @@ jobs:
46
run: |
47
python -m pip install --upgrade pip
48
pip install -r tpch/requirements.txt
49
- pip install -r requirements-in.txt
50
- name: Generate test data
51
52
./scripts/gen-test-data.sh
53
- name: Run Rust tests
54
run: cargo test --verbose
55
- name: Run Python tests
56
- run: python -m pytest
+ run: |
+ 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