Make invocation error handling and hda materialization use same session #18161
This file contains hidden or 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
| name: Unit w/postgres tests | |
| on: | |
| push: | |
| paths-ignore: | |
| - 'client/**' | |
| - 'doc/**' | |
| - 'lib/galaxy_test/selenium/**' | |
| - 'packages/**' | |
| pull_request: | |
| paths-ignore: | |
| - 'client/**' | |
| - 'doc/**' | |
| - 'lib/galaxy_test/selenium/**' | |
| - 'packages/**' | |
| env: | |
| GALAXY_TEST_DBURI: 'postgresql://postgres:postgres@localhost:5432/postgres?client_encoding=utf8' # using postgres as the db | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| test: | |
| name: Test | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| python-version: ['3.9'] | |
| services: | |
| postgres: | |
| image: postgres:13 | |
| env: | |
| POSTGRES_USER: postgres | |
| POSTGRES_PASSWORD: postgres | |
| POSTGRES_DB: postgres | |
| ports: | |
| - 5432:5432 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| path: 'galaxy root' | |
| - name: Read Node.js version | |
| id: node-version | |
| run: echo "version=$(cat 'galaxy root/client/.node_version')" >> $GITHUB_OUTPUT | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: ${{ steps.node-version.outputs.version }} | |
| cache: 'yarn' | |
| cache-dependency-path: 'galaxy root/client/yarn.lock' | |
| - uses: actions/setup-python@v5 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| cache: 'pip' | |
| cache-dependency-path: 'galaxy root/requirements.txt' | |
| - 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 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') }}-unit-postgres | |
| - name: Run migration tests | |
| run: ./run_tests.sh -unit test/unit/data/model/migrations/test_migrations.py | |
| working-directory: 'galaxy root' | |
| - name: Run test migrate database | |
| run: ./run_tests.sh -unit test/unit/app/test_migrate_database.py | |
| working-directory: 'galaxy root' |