This is an automated email from the ASF dual-hosted git repository.

kkarantasis pushed a commit to branch 2.7
in repository https://gitbox.apache.org/repos/asf/kafka.git


The following commit(s) were added to refs/heads/2.7 by this push:
     new 804a473  MINOR: Upgrade ducktape to version 0.8.1  (#9933)
804a473 is described below

commit 804a473e32baf77b33a5c7657051759a85946f11
Author: Stanislav Vodetskyi <[email protected]>
AuthorDate: Fri Jan 22 20:23:55 2021 -0800

    MINOR: Upgrade ducktape to version 0.8.1  (#9933)
    
    ducktape 0.8.1 was updated to include the following changes/fixes from 
0.7.x branch:
    * Junit reporting support
    * fix for an issue where unicode characters in exception message would 
cause test runner to hang on py27.
    
    Reviewers: Konstantine Karantasis <[email protected]>
---
 tests/docker/Dockerfile | 2 +-
 tests/setup.py          | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/tests/docker/Dockerfile b/tests/docker/Dockerfile
index 8e8169a..69a66d4 100644
--- a/tests/docker/Dockerfile
+++ b/tests/docker/Dockerfile
@@ -35,7 +35,7 @@ LABEL ducker.creator=$ducker_creator
 # we have to install git since it is included in openjdk:8 but not openjdk:11
 RUN apt update && apt install -y sudo git netcat iptables rsync unzip wget 
curl jq coreutils openssh-server net-tools vim python3-pip python3-dev 
libffi-dev libssl-dev cmake pkg-config libfuse-dev iperf traceroute && apt-get 
-y clean
 RUN python3 -m pip install -U pip==20.2.2;
-RUN pip3 install --upgrade cffi virtualenv pyasn1 boto3 pycrypto pywinrm 
ipaddress enum34 && pip3 install --upgrade ducktape==0.8.0
+RUN pip3 install --upgrade cffi virtualenv pyasn1 boto3 pycrypto pywinrm 
ipaddress enum34 && pip3 install --upgrade ducktape==0.8.1
 
 # Set up ssh
 COPY ./ssh-config /root/.ssh/config
diff --git a/tests/setup.py b/tests/setup.py
index 7d846e3..ec36bbc 100644
--- a/tests/setup.py
+++ b/tests/setup.py
@@ -51,7 +51,7 @@ setup(name="kafkatest",
       license="apache2.0",
       packages=find_packages(),
       include_package_data=True,
-      install_requires=["ducktape==0.8.0", "requests==2.24.0"],
+      install_requires=["ducktape==0.8.1", "requests==2.24.0"],
       tests_require=["pytest", "mock"],
       cmdclass={'test': PyTest},
       )

Reply via email to