Temporarily dIsable tests
This commit is contained in:
parent
e86311ee0d
commit
aeff99b71d
1 changed files with 9 additions and 5 deletions
|
@ -31,7 +31,7 @@ jobs:
|
||||||
run: cargo clippy -- -D warnings
|
run: cargo clippy -- -D warnings
|
||||||
|
|
||||||
build:
|
build:
|
||||||
name: Build (and test, for now)
|
name: Build
|
||||||
runs-on: docker
|
runs-on: docker
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
|
@ -55,13 +55,17 @@ jobs:
|
||||||
run: |
|
run: |
|
||||||
source venv/bin/activate
|
source venv/bin/activate
|
||||||
maturin develop
|
maturin develop
|
||||||
|
|
||||||
# TODO: Moving tests to another job feels like better form
|
# TODO: Moving tests to another job feels like better form
|
||||||
|
|
||||||
# FIXME: The runner's Python version is 3.9, which breaks one some of the type syntax found in the tests
|
# FIXME: The runner's Python version is 3.9, which breaks one some of the type syntax found in the tests
|
||||||
# - name: Run Python tests
|
# - name: Run Python tests
|
||||||
# run: |
|
# run: |
|
||||||
# source venv/bin/activate
|
# source venv/bin/activate
|
||||||
# pytest tests/*.py
|
# pytest tests/*.py
|
||||||
- name: Run Rust tests
|
|
||||||
run: |
|
# FIXME: Linking with `cc` fails on the runner because it can't find the python3.9 library
|
||||||
source venv/bin/activate
|
# - name: Run Rust tests
|
||||||
cargo test
|
# run: |
|
||||||
|
# source venv/bin/activate
|
||||||
|
# cargo test
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue