Skip to content

Commit

Permalink
run slow tests
Browse files Browse the repository at this point in the history
  • Loading branch information
nuwang committed Mar 26, 2024
1 parent 2e6218c commit e3bead6
Showing 1 changed file with 15 additions and 15 deletions.
30 changes: 15 additions & 15 deletions .github/workflows/test_galaxy_package_integration.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,20 +30,20 @@ jobs:
- uses: actions/setup-python@v4
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@v3
# with:
# path: ~/.cache/pip
# key: pip-cache-${{ matrix.python-version }}-${{ hashFiles('requirements.txt') }}
# - name: Cache galaxy venv
# uses: actions/cache@v3
# with:
# path: '.venv'
# key: gxy-venv-${{ runner.os }}-${{ steps.full-python-version.outputs.version }}-${{ hashFiles('requirements.txt') }}-integration
- 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@v3
with:
path: ~/.cache/pip
key: pip-cache-${{ matrix.python-version }}-${{ hashFiles('requirements.txt') }}
- name: Cache galaxy venv
uses: actions/cache@v3
with:
path: '.venv'
key: gxy-venv-${{ runner.os }}-${{ steps.full-python-version.outputs.version }}-${{ hashFiles('requirements.txt') }}-integration
- name: Replace tpv galaxy dependencies with package paths from local galaxy build
run: |
GALAXY_SKIP_NODE=1 GALAXY_SKIP_CLIENT_BUILD=1 make setup-venv
Expand All @@ -68,7 +68,7 @@ jobs:
- name: Install required packages
run: pip install tox
- name: Run tox
run: tox -e py${{ matrix.python-version }}
run: tox -e py${{ matrix.python-version }} -- --runslow
env:
PYTHONUNBUFFERED: "True"
working-directory: 'tpv'

0 comments on commit e3bead6

Please sign in to comment.