adjust test action. 1
This commit is contained in:
parent
55136f3514
commit
5f748b869a
|
@ -16,9 +16,19 @@ jobs:
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v3
|
||||||
|
- name: Set up Python 3.11
|
||||||
|
uses: actions/setup-python@v2
|
||||||
|
with:
|
||||||
|
python-version: 3.11
|
||||||
|
- name: Install dependencies
|
||||||
|
run: |
|
||||||
|
python -m pip install --upgrade pip
|
||||||
|
pip install -r requirements.txt
|
||||||
- name: Build
|
- name: Build
|
||||||
run: cargo build --verbose
|
run: maturin build --verbose
|
||||||
- name: Run tests
|
- name: Run tests
|
||||||
run: cargo test --verbose
|
run: maturin test --verbose
|
||||||
- name: Run E2E tests
|
- name: Run E2E tests
|
||||||
run: pytest
|
run: |
|
||||||
|
maturin develop --release
|
||||||
|
pytest
|
||||||
|
|
Loading…
Reference in New Issue