Bump httptools from 0.6.4 to 0.7.1 #207
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: KBase JobRunner tests | |
| on: | |
| pull_request: | |
| types: | |
| - opened | |
| - reopened | |
| - synchronize | |
| - ready_for_review | |
| push: | |
| # run workflow when merging to main or develop | |
| branches: | |
| - main | |
| - master | |
| - develop | |
| - scanon/gha | |
| jobs: | |
| jobsrunner_tests: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| python-version: ["3.9"] | |
| steps: | |
| - name: Install Docker | |
| uses: docker-practice/actions-setup-docker@master | |
| timeout-minutes: 12 | |
| - name: Repo checkout | |
| uses: actions/checkout@v4 | |
| - name: Set up Python ${{ matrix.python-version }} | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v6 | |
| - name: Install dependecies | |
| # tried VaultVulp/action-pipenv but pytest wasn't on the path post action | |
| shell: bash | |
| run: | | |
| export UV_PROJECT_ENVIRONMENT="${pythonLocation}" | |
| uv sync --locked | |
| docker build -t mock_app ./test/mock_app | |
| docker pull docker.io/kbase/runtester | |
| docker tag docker.io/kbase/runtester test/runtester | |
| curl -q -L -o $HOME/cromwell-44.jar https://github.com/broadinstitute/cromwell/releases/download/44/cromwell-44.jar | |
| touch ~/cromwell.conf | |
| ulimit -a | |
| - name: Run tests | |
| shell: bash | |
| env: | |
| KB_AUTH_TOKEN: ${{ secrets.KBASE_CI_TOKEN }} | |
| KB_BASE_URL: https://ci.kbase.us/services/ | |
| run: PYTHONPATH=. pytest -m "not online" --cov=JobRunner --cov-report=xml test | |
| - name: Upload coverage to Codecov | |
| uses: codecov/codecov-action@v5 | |
| with: | |
| token: ${{ secrets.CODECOV_TOKEN }} | |
| fail_ci_if_error: true |