From 5116ad974aec6ce6678df5af0db5fa2382aff17c Mon Sep 17 00:00:00 2001 From: Wolfgang Preimesberger Date: Mon, 7 Oct 2024 14:49:21 +0200 Subject: [PATCH] Update CI --- .github/workflows/build.yml | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index c9c9968..b65643b 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -47,21 +47,16 @@ jobs: which pip which python conda list - - name: Install base package and run tests - shell: bash -l {0} - run: | - pip install -e .[testing] --no-deps - pytest # run only basic tests, see setup.cfg - name: Export Environment shell: bash -l {0} run: | mkdir -p artifacts filename=env_py${{ matrix.python-version }}_${{ matrix.os }}.yml conda env export --no-builds | grep -v "prefix" > artifacts/$filename - - name: Install package and test + - name: Install base package and run tests shell: bash -l {0} run: | - pip install -e . + pip install -e .[testing] --no-deps pytest - name: Upload Coverage shell: bash -l {0}