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

Update mirgecom downstream testing to use integrated test runner. #292

Open
wants to merge 7 commits into
base: main
Choose a base branch
from
Open
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
14 changes: 11 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -132,9 +132,17 @@ jobs:
build_py_project_in_conda_env

if test "$DOWNSTREAM_PROJECT" = "mirgecom"; then
# Test main branch
# Only test examples, not pytest tests, as those take too much time.
examples/run_examples.sh ./examples
# Test main ~~(and production) branch~~
#
# -a|--all: runs all of examples, lazyaccuracy, production
# -e|--examples: Examples - runs mirgecom examples
# -l|--lazy-accuracy: LazyAccuracy - checks lazy vs. eager numerical results
# -p|--production: Production - runs mirgecom's production/prediction tests
#
# FIXME: Production testing stomps on `requirements.txt`
# git stash # FIXME: Sync/Marry requirements.txt@production w/local
# scripts/run-integrated-tests --all
scripts/run-integrated-tests.sh --lazy-accuracy --examples
else
test_py_project
fi
Expand Down