Skip to content

Update dependencies #47

Update dependencies

Update dependencies #47

Workflow file for this run

name: Unit Tests
on:
pull_request:
branches: [main]
jobs:
unit-tests:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13", "3.14.0-beta.2"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Pull docker image
run: |
IMAGE=$(python -c "import tests.test_resource; print(tests.test_resource.CONCOURSE_MOCK_RESOURCE_IMAGE)")
docker pull $IMAGE
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install -r requirements-tests.txt --no-deps
- name: Run tests
run: |
python -W error -m unittest --verbose