Skip to content

Commit

Permalink
BUG: install test reqs first
Browse files Browse the repository at this point in the history
  • Loading branch information
jklenzing committed Apr 25, 2023
1 parent f45c3a6 commit f884134
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/pysat_rc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,13 +27,14 @@ jobs:
run: brew reinstall gcc

- name: Install pysat RC
run: pip install --no-deps -i https://test.pypi.org/simple/ pysat
run: |
pip install -r test_requirements.txt
pip install --no-deps -i https://test.pypi.org/simple/ pysat
- name: Install standard dependencies
run: |
pip install -r requirements.txt
pip install pysatCDF --no-binary=pysatCDF
pip install -r test_requirements.txt
- name: Set up pysat
run: |
Expand Down

0 comments on commit f884134

Please sign in to comment.