test: add httpretty & requests to test container

Add the requests and httpretty packages to the test environment.
The former will be used in the builder plugin and the latter for
mocking http requests.
This commit is contained in:
Christian Kellner 2020-09-15 17:58:50 +02:00
parent 385d51b2ba
commit 94d0a5f57a

View file

@ -12,10 +12,12 @@ RUN dnf -y upgrade \
postgresql \
pylint \
python3-flexmock \
python3-httpretty \
python3-jsonschema \
python3-pytest-cov \
python3-pytest \
python3-koji \
python3-requests \
&& dnf clean all
COPY entrypoint.sh /entrypoint.sh