Skip to content

Commit f884134

Browse files
committed
BUG: install test reqs first
1 parent f45c3a6 commit f884134

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/pysat_rc.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,13 +27,14 @@ jobs:
2727
run: brew reinstall gcc
2828

2929
- name: Install pysat RC
30-
run: pip install --no-deps -i https://test.pypi.org/simple/ pysat
30+
run: |
31+
pip install -r test_requirements.txt
32+
pip install --no-deps -i https://test.pypi.org/simple/ pysat
3133
3234
- name: Install standard dependencies
3335
run: |
3436
pip install -r requirements.txt
3537
pip install pysatCDF --no-binary=pysatCDF
36-
pip install -r test_requirements.txt
3738
3839
- name: Set up pysat
3940
run: |

0 commit comments

Comments
 (0)