From 1e2fb6f7f2d613b9572008a06f6df3ca1e41cc00 Mon Sep 17 00:00:00 2001 From: Allison Karlitskaya Date: Mon, 19 Feb 2024 10:17:32 +0100 Subject: [PATCH] tasks: add python3-aiohttp and aioresponses This seems to be the standard Python asyncio HTTP library. python3-aioresponses is a useful mocking framework for use with pytest. We're going to be using these soon. --- tasks/Containerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tasks/Containerfile b/tasks/Containerfile index 5f3f7a9d..573f1f7c 100644 --- a/tasks/Containerfile +++ b/tasks/Containerfile @@ -38,6 +38,8 @@ RUN dnf -y update && \ procps-ng \ psmisc \ python3 \ + python3-aiohttp+speedups \ + python3-aioresponses \ python3-build \ python3-flake8 \ python3-pika \