From 06b425edb230b259cfc2d57d87a3010732abdd7c Mon Sep 17 00:00:00 2001 From: Martin Bubel Date: Sat, 13 Jan 2024 18:53:22 +0100 Subject: [PATCH] github-actions: update test jobs --- .github/workflows/test.yml | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 5e6a0749..c4a906ef 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -27,13 +27,16 @@ jobs: with: python-version: ${{ matrix.python }} + - name: Install dependencies + run: | + pip install setuptools + pip install matplotlib + pip install pytest + - name: Install lib run: | - pip install --upgrade pip - pip install -e . + python setup.py develop - name: pytest run: | - pip install matplotlib - pip install pytest pytest GPy/testing