From aeff99b71d50b83cb97bc8698532eb70a34b69df Mon Sep 17 00:00:00 2001 From: Michael Bradley Date: Sun, 23 Feb 2025 05:51:08 -0500 Subject: [PATCH] Temporarily dIsable tests --- .forgejo/workflows/build.yaml | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/.forgejo/workflows/build.yaml b/.forgejo/workflows/build.yaml index f16ea26..0a772b6 100644 --- a/.forgejo/workflows/build.yaml +++ b/.forgejo/workflows/build.yaml @@ -31,7 +31,7 @@ jobs: run: cargo clippy -- -D warnings build: - name: Build (and test, for now) + name: Build runs-on: docker steps: - name: Checkout @@ -55,13 +55,17 @@ jobs: run: | source venv/bin/activate maturin develop + # 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 - cargo test + + # FIXME: Linking with `cc` fails on the runner because it can't find the python3.9 library + # - name: Run Rust tests + # run: | + # source venv/bin/activate + # cargo test