Skip to content
Snippets Groups Projects
Verified Commit f799ce49 authored by Petr Špaček's avatar Petr Špaček
Browse files

ci: avoid broken py.test 6.0.0 and dnspython 2.0.0 which causes linting errors

References:
- https://github.com/pytest-dev/pytest/pull/7565
- https://github.com/rthalley/dnspython/pull/561
parent c80ef8eb
1 merge request!1032CI docker image update
Pipeline #66737 canceled with stages
in 9 minutes and 54 seconds
......@@ -26,8 +26,8 @@ RUN pip3 install --upgrade pip
RUN pip3 install pylint
RUN pip3 install pep8
RUN pip3 install pytest-xdist
# tests/pytest dependencies
RUN pip3 install dnspython jinja2 pytest pytest-html pytest-xdist
# tests/pytest dependencies: skip over broken versions
RUN pip3 install 'dnspython != 2.0.0' jinja2 'pytest != 6.0.0' pytest-html pytest-xdist
# packet capture tools for Deckard
RUN apt-get install --no-install-suggests --no-install-recommends -y -qqq tcpdump wireshark-common
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment