From 6b0b5f2998eaafa27d34c57f1a037ea861291365 Mon Sep 17 00:00:00 2001 From: Min RK Date: Fri, 24 Mar 2023 11:36:36 +0100 Subject: [PATCH] add bzip2 to test env required for testing against miniconda 4.5 --- .github/workflows/unit-test.yaml | 1 + integration-tests/Dockerfile | 1 + 2 files changed, 2 insertions(+) diff --git a/.github/workflows/unit-test.yaml b/.github/workflows/unit-test.yaml index a0acde8..3c51a98 100644 --- a/.github/workflows/unit-test.yaml +++ b/.github/workflows/unit-test.yaml @@ -61,6 +61,7 @@ jobs: apt-get update apt-get install --yes \ python3-venv \ + bzip2 \ git python3 -m venv /srv/venv diff --git a/integration-tests/Dockerfile b/integration-tests/Dockerfile index 447bcb7..22cd2d4 100644 --- a/integration-tests/Dockerfile +++ b/integration-tests/Dockerfile @@ -8,6 +8,7 @@ RUN export DEBIAN_FRONTEND=noninteractive \ && apt-get update \ && apt-get install --yes \ systemd \ + bzip2 \ curl \ git \ sudo \