forked from MODFLOW-ORG/modflowapi
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
update(extensions): add support for IDM changes
- Loading branch information
Showing
9 changed files
with
241 additions
and
1,336 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -135,7 +135,51 @@ jobs: | |
working-directory: ./autotest | ||
shell: bash -l {0} | ||
run: pytest -v -n auto -m "not mf6" | ||
|
||
|
||
autotest_preidm_extensions: | ||
name: modflowapi pre-idm extensions autotests | ||
needs: lint | ||
runs-on: ${{ matrix.os }} | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
os: [ ubuntu-latest, macos-latest, windows-latest ] | ||
python-version: [ 3.8, 3.9, "3.10", "3.11" ] | ||
defaults: | ||
run: | ||
shell: bash | ||
|
||
steps: | ||
# check out repo | ||
- name: Checkout repo | ||
uses: actions/checkout@v3 | ||
|
||
- name: Setup Python | ||
uses: actions/setup-python@v4 | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
cache: 'pip' | ||
cache-dependency-path: pyproject.toml | ||
|
||
- name: Install Python dependencies | ||
run: | | ||
python -m pip install --upgrade pip | ||
pip install git+https://[email protected]/Deltares/xmipy@develop | ||
pip install git+https://[email protected]/MODFLOW-USGS/modflow-devtools@develop | ||
pip install .[test] | ||
- name: Install modflow executables | ||
uses: modflowpy/install-modflow-action@v1 | ||
with: | ||
path: ${{ github.workspace }}/autotest | ||
repo: executables | ||
tag: "14.0" | ||
|
||
- name: Run autotests | ||
working-directory: ./autotest | ||
shell: bash -l {0} | ||
run: pytest -v -n auto -m "not mf6" | ||
|
||
autotest_mf6_examples: | ||
name: modflowapi mf6 examples autotests | ||
needs: lint | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.