diff --git a/.docker/Dockerfile b/.docker/Dockerfile index 770a3a9..c7ca3c4 100644 --- a/.docker/Dockerfile +++ b/.docker/Dockerfile @@ -8,7 +8,7 @@ RUN apt-get update && \ && rm -rf /var/lib/apt/lists/* COPY ./requirements.txt /tmp/ -RUN pip3 install -r /tmp/requirements.txt +RUN pip3 install -r /tmp/requirements.txt --break-system-packages COPY ./ /usr/src/ diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 63ab39e..969c516 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -14,10 +14,10 @@ on: jobs: # Run unit tests test: - runs-on: ubuntu-22.04 + runs-on: ubuntu-24.04 strategy: matrix: - qgis_version: [final-3_28_13] # We could eventually add more, e.g., latest + qgis_version: [latest] # We could eventually add more, e.g., latest env: QGIS_TEST_VERSION: ${{ matrix.qgis_version }} steps: diff --git a/run-docker-tests.sh b/run-docker-tests.sh index 6130145..c3d6cbe 100755 --- a/run-docker-tests.sh +++ b/run-docker-tests.sh @@ -2,5 +2,5 @@ set -e pushd /usr/src/ -xvfb-run nose2-3 +xvfb-run python3 -m nose2 popd