adjust test action. 4

This commit is contained in:
Niko Abeler 2022-11-28 19:53:48 +01:00
parent 5c832e0f8e
commit 2aa523791b
1 changed files with 4 additions and 1 deletions

View File

@ -27,10 +27,13 @@ jobs:
source venv/bin/activate
pip install -r requirements.txt
- name: Build
run: maturin build --verbose
run: |
source venv/bin/activate
maturin build --verbose
- name: Run tests
run: cargo test --verbose
- name: Run E2E tests
run: |
source venv/bin/activate
maturin develop --release
pytest