Skip to content

Commit

Permalink
ci(test.yaml): add test of pip install from git, and testing against …
Browse files Browse the repository at this point in the history
…latest flopy PyPI release
  • Loading branch information
aleaf committed Jan 12, 2024
1 parent 8333160 commit 9d3864a
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -66,11 +66,22 @@ jobs:
cp -r bin/$d/. "$HOME/.local/bin/"
echo "$HOME/.local/bin" >> $GITHUB_PATH
echo $GITHUB_PATH
- name: Test install from git
shell: bash -l {0}
run: |
pip install git+https://github.com/aleaf/modflow-export@develop
cd ..
python -c "import mfexport"
cd modflow-export
- name: Install Modflow-setup and ipykernel
shell: bash -l {0}
run: |
pip install -e .
python -m ipykernel install --user --name mfexport_ci --display-name "mfexport_ci"
- name: Test with latest PyPI flopy
shell: bash -l {0}
if: ${{ matrix.python-version == 3.11}}
run: pip install flopy --force-reinstall
- name: Conda list
shell: bash -l {0}
run: |
Expand Down

0 comments on commit 9d3864a

Please sign in to comment.