adjust test action. 4
This commit is contained in:
parent
5c832e0f8e
commit
2aa523791b
|
@ -27,10 +27,13 @@ jobs:
|
||||||
source venv/bin/activate
|
source venv/bin/activate
|
||||||
pip install -r requirements.txt
|
pip install -r requirements.txt
|
||||||
- name: Build
|
- name: Build
|
||||||
run: maturin build --verbose
|
run: |
|
||||||
|
source venv/bin/activate
|
||||||
|
maturin build --verbose
|
||||||
- name: Run tests
|
- name: Run tests
|
||||||
run: cargo test --verbose
|
run: cargo test --verbose
|
||||||
- name: Run E2E tests
|
- name: Run E2E tests
|
||||||
run: |
|
run: |
|
||||||
|
source venv/bin/activate
|
||||||
maturin develop --release
|
maturin develop --release
|
||||||
pytest
|
pytest
|
||||||
|
|
Loading…
Reference in New Issue