From 41c1b90a6ac108ee3a5aeea89cc6a7b78d452787 Mon Sep 17 00:00:00 2001 From: Baptiste Nicolet Date: Fri, 9 Aug 2024 10:07:33 +0200 Subject: [PATCH] Fix attempt 2 --- .github/workflows/pip.yml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/pip.yml b/.github/workflows/pip.yml index 5495288..8ac517d 100644 --- a/.github/workflows/pip.yml +++ b/.github/workflows/pip.yml @@ -29,9 +29,11 @@ jobs: run: | echo "MACOS_DEPLOYMENT_TARGET=10.14" >> $GITHUB_ENV - - name: Build and install - run: pip install pytest numpy scipy - pip install --verbose . + - name: Build and install Cholespy + run: python -m pip install . + + - name: Install test dependencies + run: python -m pip install pytest numpy scipy - name: Test run: python -m pytest tests