From 0cfc5c7c0992a0187f6b92d64a2a831e0394eeeb Mon Sep 17 00:00:00 2001 From: Michal Nasiadka Date: Wed, 29 Nov 2023 19:07:10 +0100 Subject: [PATCH] podman: install "rich" dependency This dependency was added to podman-py in version 4.8.0, but not added properly to their requirements. Install it explicitly for our tox and integration testing as a workaround. [0] https://github.com/containers/podman-py/issues/350 Change-Id: Ic0d9b2c26fe5474f579b72d6779243b7ad39b420 --- tests/playbooks/pre.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/playbooks/pre.yml b/tests/playbooks/pre.yml index 2e0e91bc63..e35f51de3e 100644 --- a/tests/playbooks/pre.yml +++ b/tests/playbooks/pre.yml @@ -47,7 +47,7 @@ when: container_engine == "docker" - name: Install podman python library - command: "{{ virtualenv_path }}/bin/python -m pip install podman" + command: "{{ virtualenv_path }}/bin/python -m pip install podman rich" when: container_engine == "podman" - name: Configure Docker repo for Debian/Ubuntu