From 8d7cbbb9345c6975d53fa5f00aecb99254e9ee40 Mon Sep 17 00:00:00 2001 From: Andi Drebes Date: Tue, 11 Jan 2022 11:11:08 +0100 Subject: [PATCH] fix(CI): Install pytest for job BuildAndTestMacOS The CI job `BuildAndTestMacOS` currently fails due to an unsatisfied dependency to `pytest`. Install `pytest` via `pip3`. --- .github/workflows/continuous-integration.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/continuous-integration.yml b/.github/workflows/continuous-integration.yml index ce2674a2b..e989df636 100644 --- a/.github/workflows/continuous-integration.yml +++ b/.github/workflows/continuous-integration.yml @@ -147,6 +147,7 @@ jobs: curl https://sh.rustup.rs -sSf | sh -s -- -y brew install ninja pip3 install numpy pybind11==2.6.2 wheel delocate + pip3 install pytest cd ${{ github.workspace }}/concrete/concrete-ffi RUSTFLAGS="-C target-cpu=native" cargo build --release