From ca7d69749a258911622c20371991b3c869b386c8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Germ=C3=A1n=20Carrillo?= Date: Wed, 15 Jan 2025 18:20:14 +0100 Subject: [PATCH] [tests] Bump to QGIS 3.34.13 --- .docker/Dockerfile | 2 +- .github/workflows/main.yml | 4 ++-- run-docker-tests.sh | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) 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