On 17/1/24 08:09, Philippe Mathieu-Daudé wrote:
Hi Fabiano,

On 17/1/24 00:09, Fabiano Rosas wrote:
Avocado needs sqlite3:

   Failed to load plugin from module "avocado.plugins.journal":
   ImportError("Module 'sqlite3' is not installed.
   Use: sudo zypper install python311 to install it")

Include the appropriate package in the dockerfile.

 From 'zypper info python311':
   "This package supplies rich command line features provided by
   readline, and sqlite3 support for the interpreter core, thus forming
   a so called "extended" runtime."

Signed-off-by: Fabiano Rosas <faro...@suse.de>
---
  tests/docker/dockerfiles/opensuse-leap.docker | 1 +
  1 file changed, 1 insertion(+)

diff --git a/tests/docker/dockerfiles/opensuse-leap.docker b/tests/docker/dockerfiles/opensuse-leap.docker
index dc0e36ce48..cf753383a4 100644
--- a/tests/docker/dockerfiles/opensuse-leap.docker
+++ b/tests/docker/dockerfiles/opensuse-leap.docker
@@ -90,6 +90,7 @@ RUN zypper update -y && \
             pcre-devel-static \
             pipewire-devel \
             pkgconfig \
+           python311 \
             python311-base \
             python311-pip \
             python311-setuptools \

See in this file header:

   # THIS FILE WAS AUTO-GENERATED
   #
   #  $ lcitool dockerfile --layers all opensuse-leap-15 qemu
   #
   # https://gitlab.com/libvirt/libvirt-ci

libvirt-ci maintains dependencies required to build QEMU,
in this case since it is a 'testing QEMU' dependency, you
might add it in the generate_dockerfile("opensuse-leap")
call in tests/lcitool/refresh (otherwise raise an issue
in libvirt-ci about it).

This is incorrect, correct fix in this thread:
https://lore.kernel.org/qemu-devel/cabjz62od0zzsy16sdnritupebygy9y6rugrrwoa6n_yg8cg...@mail.gmail.com/

Reply via email to