Skip to content

Commit

Permalink
BUG: operational tests
Browse files Browse the repository at this point in the history
  • Loading branch information
jklenzing committed May 16, 2023
1 parent 04e0909 commit 1d48f49
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,15 @@ jobs:
if: ${{ matrix.os == 'macos-latest' }}
run: brew reinstall gcc

- name: Install Operational dependencies
if: ${{ matrix.numpy_ver == "1.19.5"}}
run: |
pip install --no-cache-dir numpy==${{ matrix.numpy_ver }}
pip install -r requirements.txt
pip install -r test_requirements.txt
- name: Install NEP29 dependencies
if: ${{ matrix.numpy_ver != 'latest'}}
if: ${{ matrix.numpy_ver == "1.21"}}
run: |
pip install --no-cache-dir numpy==${{ matrix.numpy_ver }}
pip install --upgrade-strategy only-if-needed .[test]
Expand Down

0 comments on commit 1d48f49

Please sign in to comment.