Skip to content

Commit

Permalink
Update CI
Browse files Browse the repository at this point in the history
  • Loading branch information
wpreimes committed Sep 12, 2024
1 parent 1c4a46c commit 105e920
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
miniconda-version: "latest"
auto-update-conda: true
python-version: ${{ matrix.python-version }}
#environment-file: environment.yml
#environment-file: environment.yml # we use setup.cfg dependencies only
activate-environment: pygeogrids
auto-activate-base: false
- name: Print environment infos
Expand All @@ -56,13 +56,13 @@ jobs:
- name: Export Environment
shell: bash -l {0}
run: |
mkdir -p .artifacts
mkdir -p artifacts
filename=env_py${{ matrix.python-version }}_${{ matrix.os }}.yml
conda env export --no-builds | grep -v "prefix" > .artifacts/$filename
conda env export --no-builds | grep -v "prefix" > artifacts/$filename
- name: Install package and test
shell: bash -l {0}
run: |
python setup.py develop
pip install -e .[testing]
pytest
- name: Upload Coverage
shell: bash -l {0}
Expand Down

0 comments on commit 105e920

Please sign in to comment.