-
Notifications
You must be signed in to change notification settings - Fork 1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #18542 from jmchilton/workflow_tests
Implement Declarative Testing for Workflow Behaviors
- Loading branch information
Showing
32 changed files
with
739 additions
and
347 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
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 |
---|---|---|
@@ -0,0 +1,79 @@ | ||
name: Workflow framework tests | ||
on: | ||
push: | ||
paths-ignore: | ||
- 'client/**' | ||
- 'doc/**' | ||
- 'lib/galaxy_test/selenium/**' | ||
pull_request: | ||
paths-ignore: | ||
- 'client/**' | ||
- 'doc/**' | ||
- 'lib/galaxy_test/selenium/**' | ||
schedule: | ||
# Run at midnight UTC every Tuesday | ||
- cron: '0 0 * * 2' | ||
env: | ||
GALAXY_TEST_DBURI: 'postgresql://postgres:postgres@localhost:5432/galaxy?client_encoding=utf8' | ||
GALAXY_TEST_RAISE_EXCEPTION_ON_HISTORYLESS_HDA: '1' | ||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.ref }} | ||
cancel-in-progress: true | ||
jobs: | ||
test: | ||
name: Test | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
python-version: ['3.8'] | ||
services: | ||
postgres: | ||
image: postgres:13 | ||
env: | ||
POSTGRES_USER: postgres | ||
POSTGRES_PASSWORD: postgres | ||
POSTGRES_DB: postgres | ||
ports: | ||
- 5432:5432 | ||
steps: | ||
- if: github.event_name == 'schedule' | ||
run: | | ||
echo "GALAXY_CONFIG_OVERRIDE_METADATA_STRATEGY=extended" >> $GITHUB_ENV | ||
echo "GALAXY_CONFIG_OVERRIDE_OUTPUTS_TO_WORKING_DIRECTORY=true" >> $GITHUB_ENV | ||
- uses: actions/checkout@v4 | ||
with: | ||
path: 'galaxy root' | ||
- uses: actions/setup-node@v4 | ||
with: | ||
node-version: '18.12.1' | ||
cache: 'yarn' | ||
cache-dependency-path: 'galaxy root/client/yarn.lock' | ||
- uses: actions/setup-python@v5 | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
- name: Get full Python version | ||
id: full-python-version | ||
shell: bash | ||
run: echo "version=$(python -c 'import sys; print("-".join(str(v) for v in sys.version_info))')" >> $GITHUB_OUTPUT | ||
- name: Cache pip dir | ||
uses: actions/cache@v4 | ||
with: | ||
path: ~/.cache/pip | ||
key: pip-cache-${{ matrix.python-version }}-${{ hashFiles('galaxy root/requirements.txt') }} | ||
- name: Cache galaxy venv | ||
uses: actions/cache@v4 | ||
with: | ||
path: 'galaxy root/.venv' | ||
key: gxy-venv-${{ runner.os }}-${{ steps.full-python-version.outputs.version }}-${{ hashFiles('galaxy root/requirements.txt') }}-framework-workflows | ||
- name: Run tests | ||
run: ./run_tests.sh --coverage --framework-workflows | ||
working-directory: 'galaxy root' | ||
- uses: codecov/codecov-action@v3 | ||
with: | ||
flags: framework | ||
working-directory: 'galaxy root' | ||
- uses: actions/upload-artifact@v4 | ||
if: failure() | ||
with: | ||
name: Framework test results (${{ matrix.python-version }}) | ||
path: 'galaxy root/run_framework_workflows_tests.html' |
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.