From 10d70f51e1aa4b07918424f7ae844445f4950bb6 Mon Sep 17 00:00:00 2001 From: mprahl Date: Fri, 13 Sep 2019 09:11:01 -0400 Subject: [PATCH] Install python3-pytest-cov in the C3I Dockerfile since it's now used by tox --- openshift/backend/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openshift/backend/Dockerfile b/openshift/backend/Dockerfile index 3b9f4b32..314cdcff 100644 --- a/openshift/backend/Dockerfile +++ b/openshift/backend/Dockerfile @@ -13,7 +13,7 @@ WORKDIR /src # TODO: Unpin the `python3-libmodulemd` RPM once MBS is released with libmodulemd v2 RUN ${DNF_CMD} install \ 'dnf-command(builddep)' rpm-build rpmdevtools rpmlint \ - python3-tox python3-pytest python3-mock python3-flake8 bandit python3-libmodulemd && \ + python3-tox python3-pytest python3-pytest-cov python3-mock python3-flake8 bandit python3-libmodulemd && \ ${DNF_CMD} builddep *.spec && \ ${DNF_CMD} clean all RUN rpmdev-setuptree && \