MINOR: Upgrade ducktape to 0.7.8 (#8879)

Newer version of ducktape that updates some dependencies and adds some features. You can see that diff here:

https://github.com/confluentinc/ducktape/compare/v0.7.7...v0.7.8

Reviewer: Konstantine Karantasis <konstantine@confluent.io>
This commit is contained in:
Ego 2020-06-17 21:53:22 -07:00 committed by GitHub
parent 446196d6e9
commit d3d65dd5dd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -34,7 +34,7 @@ LABEL ducker.creator=$ducker_creator
# Update Linux and install necessary utilities. # Update Linux and install necessary utilities.
RUN apt update && apt install -y sudo netcat iptables rsync unzip wget curl jq coreutils openssh-server net-tools vim python-pip python-dev libffi-dev libssl-dev cmake pkg-config libfuse-dev iperf traceroute && apt-get -y clean RUN apt update && apt install -y sudo netcat iptables rsync unzip wget curl jq coreutils openssh-server net-tools vim python-pip python-dev libffi-dev libssl-dev cmake pkg-config libfuse-dev iperf traceroute && apt-get -y clean
RUN python -m pip install -U pip==9.0.3; RUN python -m pip install -U pip==9.0.3;
RUN pip install --upgrade cffi virtualenv pyasn1 boto3 pycrypto pywinrm ipaddress enum34 && pip install --upgrade ducktape==0.7.7 RUN pip install --upgrade cffi virtualenv pyasn1 boto3 pycrypto pywinrm ipaddress enum34 && pip install --upgrade ducktape==0.7.8
# Set up ssh # Set up ssh
COPY ./ssh-config /root/.ssh/config COPY ./ssh-config /root/.ssh/config

View File

@ -51,7 +51,7 @@ setup(name="kafkatest",
license="apache2.0", license="apache2.0",
packages=find_packages(), packages=find_packages(),
include_package_data=True, include_package_data=True,
install_requires=["ducktape==0.7.7", "requests==2.20.0"], install_requires=["ducktape==0.7.8", "requests==2.22.0"],
tests_require=["pytest", "mock"], tests_require=["pytest", "mock"],
cmdclass={'test': PyTest}, cmdclass={'test': PyTest},
) )