From 1b57dd8fbc48684a1d8aec830e121c0c778da28d Mon Sep 17 00:00:00 2001 From: niccolo Date: Thu, 9 Nov 2023 17:45:47 +0100 Subject: [PATCH] Install numpy --- .github/workflows/pip.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/pip.yml b/.github/workflows/pip.yml index 5daadd8..0ecd74d 100644 --- a/.github/workflows/pip.yml +++ b/.github/workflows/pip.yml @@ -29,7 +29,9 @@ jobs: - name: Build and install run: pip install . - name: Install pytest - run: pip install pytest + run: | + pip install pytest + pip install numpy - name: Test run: pytest tests