[25.1] Fix invocation export dataset exclusion #27763
Workflow file for this run
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 tests | |
| on: | |
| push: | |
| paths-ignore: | |
| - 'client/**' | |
| - 'doc/**' | |
| - 'lib/galaxy_test/selenium/**' | |
| - 'packages/**' | |
| pull_request: | |
| paths-ignore: | |
| - 'client/**' | |
| - 'doc/**' | |
| - 'lib/galaxy_test/selenium/**' | |
| - 'packages/**' | |
| 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', '3.13'] | |
| steps: | |
| - uses: actions/checkout@v5 | |
| with: | |
| path: 'galaxy root' | |
| persist-credentials: false | |
| - uses: actions/setup-python@v6 | |
| 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 tox env | |
| uses: actions/cache@v4 | |
| with: | |
| path: .tox | |
| key: tox-cache-${{ runner.os }}-${{ steps.full-python-version.outputs.version }}-${{ hashFiles('galaxy root/requirements.txt') }}-unit | |
| - name: Install ffmpeg | |
| run: sudo apt-get update && sudo apt-get -y install ffmpeg | |
| - name: Install tox | |
| run: pip install tox | |
| - name: Run tests | |
| run: tox -e unit-coverage | |
| working-directory: 'galaxy root' | |
| - uses: codecov/codecov-action@v5 | |
| with: | |
| flags: py-unit | |
| working-directory: 'galaxy root' | |
| - uses: actions/upload-artifact@v4 | |
| if: failure() | |
| with: | |
| name: Unit test results (${{ matrix.python-version }}) | |
| path: 'galaxy root/run_unit_tests.html' |