From 2c213ed45dc7a1b1a2828378a6e0999e24a5357e Mon Sep 17 00:00:00 2001 From: Ondra Machacek Date: Tue, 21 May 2024 10:23:36 +0200 Subject: [PATCH] Use requests 2.31.0 Workaround for: https://github.com/psf/requests/issues/6707 Signed-off-by: Ondra Machacek --- .github/workflows/ansible-test.yml | 2 ++ tests/integration/targets/guest_info/runme.sh | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ansible-test.yml b/.github/workflows/ansible-test.yml index 3471754b..9fb1a340 100644 --- a/.github/workflows/ansible-test.yml +++ b/.github/workflows/ansible-test.yml @@ -19,6 +19,8 @@ jobs: set -euxo pipefail sudo apt-get update sudo apt-get install podman + # FIXME: WA https://github.com/psf/requests/issues/6707 + pip install --force-reinstall requests==2.31.0 - name: Checkout repo uses: actions/checkout@v4 diff --git a/tests/integration/targets/guest_info/runme.sh b/tests/integration/targets/guest_info/runme.sh index a4c36631..b4dc020d 100755 --- a/tests/integration/targets/guest_info/runme.sh +++ b/tests/integration/targets/guest_info/runme.sh @@ -1,3 +1,3 @@ #!/usr/bin/env bash source ../init.sh -exec ansible-playbook run.yml +exec ansible-playbook -vvvv run.yml