From 65683e73db5f0666a3dab081128ddad4860f10b7 Mon Sep 17 00:00:00 2001 From: Martin Pitt Date: Sun, 8 Dec 2024 03:52:17 +0100 Subject: [PATCH] tasks: Explicitly install python3-pytest-cov Our tests need it, but it doesn't get installed as transient recommends any more. --- tasks/container/Containerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/tasks/container/Containerfile b/tasks/container/Containerfile index dc9493b4..5214f103 100644 --- a/tasks/container/Containerfile +++ b/tasks/container/Containerfile @@ -51,6 +51,7 @@ RUN dnf -y update && \ python3-pip \ python3-pytest \ python3-pytest-asyncio \ + python3-pytest-cov \ python3-pytest-timeout \ python3-pyyaml \ python3-types-pyyaml \