From cacb542bbadaff6cfbf33298eaddcf8b34992b06 Mon Sep 17 00:00:00 2001 From: Martin Perina Date: Wed, 29 Nov 2023 18:00:36 +0100 Subject: [PATCH] Force python-rich installation for podman-py Fixes https://github.com/containers/podman-py/issues/350 by forcing installation of python-rich dependency, which is missing in python3-podman-3:4.8.0.post1-1 Signed-off-by: Martin Perina --- tests/scripts/tests-setup.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/scripts/tests-setup.sh b/tests/scripts/tests-setup.sh index b269f529ef..af186938c4 100755 --- a/tests/scripts/tests-setup.sh +++ b/tests/scripts/tests-setup.sh @@ -12,6 +12,8 @@ if [ "$INSTALL_DEPS" == "yes" ]; then python3-pytest \ python3-pytest-timeout \ -y + # Mitigate https://github.com/containers/podman-py/issues/350 + dnf install python3-rich -y fi BUILD_ARG=""