From 2aa523791bafda24433b2acdbb9c1a3504a6e1f4 Mon Sep 17 00:00:00 2001 From: Niko Abeler Date: Mon, 28 Nov 2022 19:53:48 +0100 Subject: [PATCH] adjust test action. 4 --- .github/workflows/rust.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 83cb195..632acd2 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -27,10 +27,13 @@ jobs: source venv/bin/activate pip install -r requirements.txt - name: Build - run: maturin build --verbose + run: | + source venv/bin/activate + maturin build --verbose - name: Run tests run: cargo test --verbose - name: Run E2E tests run: | + source venv/bin/activate maturin develop --release pytest