Temporarily disable Python test
Some checks failed
CI / Formatting (push) Successful in 38s
CI / Clippy (push) Failing after 55s
CI / Build (and test, for now) (push) Failing after 1m37s

This commit is contained in:
Michael Bradley 2025-02-23 05:42:56 -05:00
parent 0fe8bd7de0
commit e86311ee0d
Signed by: MichaelBradley
SSH key fingerprint: SHA256:cj/YZ5VT+QOKncqSkx+ibKTIn0Obg7OIzwzl9BL8EO8

View file

@ -36,6 +36,7 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v4
# TODO: Find some other method of managing this that doesn't require me to set stuff up myself
- name: Set up Python toolchain
uses: actions/setup-python@v5
with:
@ -54,10 +55,12 @@ jobs:
run: |
source venv/bin/activate
maturin develop
- name: Run Python tests
run: |
source venv/bin/activate
pytest tests/*.py
# 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
# - name: Run Python tests
# run: |
# source venv/bin/activate
# pytest tests/*.py
- name: Run Rust tests
run: |
source venv/bin/activate