[22.05] pin bleach to 5.0.1 #20502
Workflow file for this run
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
name: Unit tests | |
on: | |
push: | |
paths-ignore: | |
- 'client/**' | |
- 'doc/**' | |
- 'lib/galaxy_test/selenium/**' | |
pull_request: | |
paths-ignore: | |
- 'client/**' | |
- 'doc/**' | |
- 'lib/galaxy_test/selenium/**' | |
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.7', '3.10'] | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
path: 'galaxy root' | |
- uses: actions/setup-python@v3 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Get full Python version | |
id: full-python-version | |
shell: bash | |
run: echo ::set-output name=version::$(python -c "import sys; print('-'.join(str(v) for v in sys.version_info))") | |
- name: Cache pip dir | |
uses: actions/cache@v3 | |
with: | |
path: ~/.cache/pip | |
key: pip-cache-${{ matrix.python-version }}-${{ hashFiles('galaxy root/requirements.txt') }} | |
- name: Cache galaxy venv | |
uses: actions/cache@v3 | |
with: | |
path: 'galaxy root/.venv' | |
key: gxy-venv-${{ 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: Run tests | |
run: ./run_tests.sh --coverage -u | |
working-directory: 'galaxy root' | |
- uses: codecov/codecov-action@v2 | |
with: | |
flags: py-unit | |
working-directory: 'galaxy root' | |
- uses: actions/upload-artifact@v3 | |
if: failure() | |
with: | |
name: Unit test results (${{ matrix.python-version }}) | |
path: 'galaxy root/run_unit_tests.html' |