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}