Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci: fix example model init per upstream #1568

Merged
merged 1 commit into from
Jan 23, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -93,9 +93,9 @@ jobs:

- name: Build example models
if: steps.cache-examples.outputs.cache-hit != 'true'
working-directory: modflow6-examples/etc
working-directory: modflow6-examples/autotest
run: |
python ci_build_files.py
pytest -v -n auto test_scripts.py --init
ls -lh ../examples/

- name: Run benchmarks
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/large.yml
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ jobs:
if: matrix.repo == 'examples' && steps.cache-examples.outputs.cache-hit != 'true'
working-directory: modflow6-examples/etc
run: |
python ci_build_files.py
pytest -v -n auto test_scripts.py --init
ls -lh ../examples/

- name: Add Micromamba Scripts dir to path (Windows)
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -330,8 +330,8 @@ jobs:

- name: Build example models
if: inputs.full == true
working-directory: modflow6-examples/etc
run: python ci_build_files.py
working-directory: modflow6-examples/autotest
run: pytest -v -n auto test_scripts.py --init

- name: Create folder structure
if: inputs.full == true
Expand Down Expand Up @@ -494,7 +494,7 @@ jobs:
- name: Build example models
if: inputs.full == true
working-directory: modflow6-examples/etc
run: python ci_build_files.py
run: pytest -v -n auto test_scripts.py --init

- name: Build distribution
env:
Expand Down