From 54b62a980a32343eece0f01f7e94470631921b61 Mon Sep 17 00:00:00 2001 From: Lucia Quirke Date: Thu, 4 Apr 2024 16:00:09 +1100 Subject: [PATCH] fixup --- .github/workflows/rust-python.yml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/rust-python.yml b/.github/workflows/rust-python.yml index 34d55ca..c2d15c9 100644 --- a/.github/workflows/rust-python.yml +++ b/.github/workflows/rust-python.yml @@ -20,10 +20,11 @@ jobs: run: cargo build --verbose - name: Run Rust tests run: cargo test --verbose - - name: Run Python tests - working-directory: ./tokengrams - run: | + - name: Build Python + run: | python -m pip install --upgrade pip pip install pytest hypothesis numpy maturin maturin build - pytest --verbose \ No newline at end of file + - name: Run Python tests + working-directory: ./tokengrams + run: pytest --verbose \ No newline at end of file