Skip to content

Commit

Permalink
Merge pull request #68 from climate-resource/fix-install-tess
Browse files Browse the repository at this point in the history
Fix up installation tests
  • Loading branch information
znichollscr authored Sep 4, 2024
2 parents dbc3675 + ef7468d commit c9dd126
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/install-conda.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -58,10 +58,10 @@ jobs:
which python
which cfchecks
python scripts/test-install.py
- name: Install pytest
- name: Install pytest and other test dependencies
shell: bash -leo pipefail {0}
run: |
micromamba install pytest
micromamba install pytest pytest-regressions
- name: Run tests
shell: bash -leo pipefail {0}
run: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/install-pypi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -80,9 +80,9 @@ jobs:
export LD_LIBRARY_PATH="$HOME/udunits/lib/:$LD_LIBRARY_PATH"
python -c 'import ctypes.util; print(ctypes.util.find_library("udunits2"))'
python scripts/test-install.py
- name: Install pytest
- name: Install pytest and other test dependencies
run: |
pip install pytest
pip install pytest pytest-regressions
- name: Run tests
run: |
export LD_LIBRARY_PATH="$HOME/udunits/lib/:$LD_LIBRARY_PATH"
Expand Down
1 change: 1 addition & 0 deletions changelog/68.trivial.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Fixed up the test install workflow.

0 comments on commit c9dd126

Please sign in to comment.