From edc0e9125b01c28e81ba96a163729b08fb3df393 Mon Sep 17 00:00:00 2001 From: Julen Landa Alustiza Date: Aug 28 2019 10:29:20 +0000 Subject: Enable updates-testing repo on f29-rpms test container --- diff --git a/dev/containers/f29-rpms-py3 b/dev/containers/f29-rpms-py3 index f3d3ae7..2c37ab4 100644 --- a/dev/containers/f29-rpms-py3 +++ b/dev/containers/f29-rpms-py3 @@ -6,7 +6,7 @@ ARG branch=master ENV REPO=$repo ENV BRANCH=$branch -RUN dnf -y install \ +RUN dnf -y --enablerepo=updates-testing install \ python3-setuptools \ python3-coverage \ python3-nose \ @@ -26,7 +26,7 @@ RUN cd / \ # Install all the requirements from the spec file and replace the macro # %{python_pkgversion} by '3' which thus installs all the py3 version of # the dependencies. -RUN dnf install -y `grep "Requires:" /pagure/files/pagure.spec | \ +RUN dnf install -y --enablerepo=updates-testing `grep "Requires:" /pagure/files/pagure.spec | \ awk '{split($0, a, " "); print a[2]}' |grep -v "%{name}" | \ sed -e "s|%{python_pkgversion}|3|"` && \ dnf clean all && \