From d7069597ddf7fb5c30026ad13a10f5b9b07f6abf Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 1 Nov 2024 05:46:38 +0000 Subject: [PATCH 1/3] Bump uwsgi from 2.0.24 to 2.0.28 Bumps [uwsgi](https://uwsgi-docs.readthedocs.io/en/latest/) from 2.0.24 to 2.0.28. --- updated-dependencies: - dependency-name: uwsgi dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index ade62e38..a92d8dbe 100644 --- a/requirements.txt +++ b/requirements.txt @@ -21,4 +21,4 @@ python-dateutil==2.9.0.post0 requests==2.32.3 texttable==1.7.0 urllib3==2.2.3 -uwsgi==2.0.24 +uwsgi==2.0.28 From 56f8f99b4a69cd7e73b7391194f8fa0c67763ca3 Mon Sep 17 00:00:00 2001 From: Ricardo Branco Date: Mon, 27 Jan 2025 21:19:14 +0100 Subject: [PATCH 2/3] Update podman version --- requirements_test.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements_test.txt b/requirements_test.txt index e5101192..114f025f 100644 --- a/requirements_test.txt +++ b/requirements_test.txt @@ -6,5 +6,5 @@ faker flake8 pytest-cov pylint -podman~=4.9.0 +podman~=5.2.0 selenium~=4.21.0 From 7dfb3855b3dc8ee689cfb7005b5c8e5cc62c4625 Mon Sep 17 00:00:00 2001 From: Ricardo Branco Date: Mon, 27 Jan 2025 20:56:43 +0100 Subject: [PATCH 3/3] Enable podman socket --- .github/workflows/pcw.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/pcw.yml b/.github/workflows/pcw.yml index a83b3b44..22d33b47 100644 --- a/.github/workflows/pcw.yml +++ b/.github/workflows/pcw.yml @@ -22,6 +22,8 @@ jobs: run: sudo apt-get install -y build-essential podman - name: Preparation run: make prepare + - name: Enable podman socket + run: systemctl --user enable --now podman.socket - name: Run test run: make test run: @@ -36,6 +38,8 @@ jobs: python-version: '3.11' - name: Install dependencies run: pip install -r requirements_test.txt + - name: Enable podman socket + run: systemctl --user enable --now podman.socket - name: Run tests and collect coverage run: pytest --cov - name: Upload coverage to Codecov