-
Notifications
You must be signed in to change notification settings - Fork 35
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
release(1.2.8): update mf6 version (#132)
* Add latest version of mfusg_gsi (v2.1.1). * Update test_request.py::test_latest_assets with latest asset list * Update pymake calls in GH Actions workflows to use working-directory
- Loading branch information
1 parent
6a93306
commit cde7860
Showing
10 changed files
with
165 additions
and
29 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 |
---|---|---|
|
@@ -2,7 +2,7 @@ name: pymake continuous integration | |
|
||
on: | ||
schedule: | ||
- cron: '0 3 * * 3' # run at 3 AM UTC every Wednesday | ||
- cron: '0 7 * * *' # run at 7 AM UTC every day | ||
push: | ||
branches: [ master ] | ||
pull_request: | ||
|
@@ -47,25 +47,29 @@ jobs: | |
- name: test on Linux | ||
if: runner.os == 'Linux' | ||
working-directory: ./autotest | ||
run: | | ||
pytest -v -n=auto --dist=loadfile -m="base or regression" --durations=0 --cov=pymake --cov-report=xml autotest/ | ||
pytest -v -n=auto --dist=loadfile -m="base or regression" --durations=0 --cov=pymake --cov-report=xml | ||
- name: test on MacOS | ||
if: runner.os == 'macOS' | ||
working-directory: ./autotest | ||
run: | | ||
pytest -v -n=auto --dist=loadfile -m="base" --durations=0 --cov=pymake --cov-report=xml autotest/ | ||
pytest -v -n=auto --dist=loadfile -m="base" --durations=0 --cov=pymake --cov-report=xml | ||
- name: test on Windows | ||
if: runner.os == 'Windows' | ||
working-directory: ./autotest | ||
shell: cmd | ||
run: | | ||
pytest -v -m="base" --durations=0 --cov=pymake --cov-report=xml autotest/ | ||
pytest -v -m="base" --durations=0 --cov=pymake --cov-report=xml | ||
- name: Print coverage report before upload | ||
working-directory: ./autotest | ||
run: | | ||
coverage report | ||
- name: Upload coverage to Codecov | ||
uses: codecov/[email protected] | ||
with: | ||
file: ./coverage.xml | ||
file: ./autotest/coverage.xml |
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 |
---|---|---|
|
@@ -2,7 +2,7 @@ name: pymake gcc build | |
|
||
on: | ||
schedule: | ||
- cron: '0 3 * * 3' # run at 3 AM UTC every Wednesday | ||
- cron: '0 7 * * *' # run at 7 AM UTC every day | ||
push: | ||
branches: [ master ] | ||
pull_request: | ||
|
@@ -46,17 +46,19 @@ jobs: | |
.github/common/download-examples.sh | ||
- name: Run pytest | ||
working-directory: ./autotest | ||
run: | | ||
pytest -v --dist=loadfile -n=auto -m="base or regression" --durations=0 --cov=pymake --cov-report=xml autotest/ | ||
pytest -v --dist=loadfile -n=auto -m="base or regression" --durations=0 --cov=pymake --cov-report=xml | ||
- name: Print coverage report before upload | ||
working-directory: ./autotest | ||
run: | | ||
coverage report | ||
- name: Upload coverage to Codecov | ||
uses: codecov/[email protected] | ||
with: | ||
file: ./coverage.xml | ||
file: ./autotest/coverage.xml | ||
|
||
pymakeCI-gcc-prev: | ||
name: pymake CI GCC 9 and 8 | ||
|
@@ -102,17 +104,19 @@ jobs: | |
.github/common/download-examples.sh | ||
- name: Run pytest | ||
working-directory: ./autotest | ||
run: | | ||
pytest -v --dist=loadfile -n=auto -m="base" --durations=0 --cov=pymake --cov-report=xml autotest/ | ||
pytest -v --dist=loadfile -n=auto -m="base" --durations=0 --cov=pymake --cov-report=xml | ||
- name: Print coverage report before upload | ||
working-directory: ./autotest | ||
run: | | ||
coverage report | ||
- name: Upload coverage to Codecov | ||
uses: codecov/[email protected] | ||
with: | ||
file: ./coverage.xml | ||
file: ./autotest/coverage.xml | ||
|
||
pymakeCI-python-prev: | ||
name: pymake CI with previous python versions | ||
|
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 |
---|---|---|
|
@@ -2,7 +2,7 @@ name: pymake requests | |
|
||
on: | ||
schedule: | ||
- cron: '0 3 * * 3' # run at 3 AM UTC every Wednesday | ||
- cron: '0 7 * * *' # run at 7 AM UTC every day | ||
push: | ||
branches: [ master ] | ||
pull_request: | ||
|
@@ -31,19 +31,22 @@ jobs: | |
.github/common/install-python.sh | ||
- name: Run pytest | ||
working-directory: ./autotest | ||
run: | | ||
pytest -v -n=auto -m requests --durations=0 --cov=pymake --cov-report=xml autotest/ | ||
pytest -v -n=auto -m requests --durations=0 --cov=pymake --cov-report=xml | ||
- name: Run scheduled tests | ||
if: ${{ github.event_name == 'schedule' }} | ||
working-directory: ./autotest | ||
run: | | ||
pytest -v -m="schedule" --durations=0 --cov=pymake --cov-report=xml autotest/ | ||
pytest -v -m="schedule" --durations=0 --cov=pymake --cov-report=xml | ||
- name: Print coverage report before upload | ||
working-directory: ./autotest | ||
run: | | ||
coverage report | ||
- name: Upload coverage to Codecov | ||
uses: codecov/[email protected] | ||
with: | ||
file: ./coverage.xml | ||
file: ./autotest/coverage.xml |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,6 @@ | |
import pathlib as pl | ||
import shutil | ||
import subprocess | ||
import sys | ||
|
||
import pytest | ||
|
||
|
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 |
---|---|---|
@@ -1,8 +1,6 @@ | ||
import contextlib | ||
import os | ||
import shutil | ||
import sys | ||
import time | ||
|
||
import flopy | ||
import pytest | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
__author__ = "Joseph D. Hughes" | ||
__date__ = "December 8, 2022" | ||
__version__ = "1.2.7" | ||
__date__ = "July 5, 2023" | ||
__version__ = "1.2.8" | ||
__maintainer__ = "Joseph D. Hughes" | ||
__email__ = "[email protected]" | ||
__status__ = "Production" | ||
|
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