You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ignite.apache.org by iv...@apache.org on 2022/12/28 12:33:18 UTC

[ignite] branch master updated: IGNITE-18460 [ducktests] Bump python packages and LATEST ignite versions (#10460)

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

ivandasch pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/ignite.git


The following commit(s) were added to refs/heads/master by this push:
     new 4ef3889eb8a IGNITE-18460 [ducktests] Bump python packages and LATEST ignite versions (#10460)
4ef3889eb8a is described below

commit 4ef3889eb8a1171640526c64fc2d0592ada281e5
Author: Sergey Korotkov <se...@gmail.com>
AuthorDate: Wed Dec 28 19:33:11 2022 +0700

    IGNITE-18460 [ducktests] Bump python packages and LATEST ignite versions (#10460)
---
 modules/ducktests/tests/docker/Dockerfile           | 2 +-
 modules/ducktests/tests/docker/requirements-dev.txt | 2 +-
 modules/ducktests/tests/docker/requirements.txt     | 2 +-
 modules/ducktests/tests/ignitetest/utils/version.py | 6 +++++-
 modules/ducktests/tests/setup.py                    | 4 ++--
 5 files changed, 10 insertions(+), 6 deletions(-)

diff --git a/modules/ducktests/tests/docker/Dockerfile b/modules/ducktests/tests/docker/Dockerfile
index c081432e143..22007352f50 100644
--- a/modules/ducktests/tests/docker/Dockerfile
+++ b/modules/ducktests/tests/docker/Dockerfile
@@ -49,7 +49,7 @@ ARG APACHE_MIRROR="https://apache-mirror.rbc.ru/pub/apache/"
 ARG APACHE_ARCHIVE="https://archive.apache.org/dist/"
 
 # Install binary test dependencies.
-RUN for v in "2.7.6" "2.8.0" "2.8.1" "2.9.0" "2.9.1" "2.10.0" "2.11.0" "2.11.1" "2.12.0" "2.13.0"; \
+RUN for v in "2.7.6" "2.8.0" "2.8.1" "2.9.0" "2.9.1" "2.10.0" "2.11.0" "2.11.1" "2.12.0" "2.13.0" "2.14.0"; \
     do cd /opt; \
     curl -O $APACHE_ARCHIVE/ignite/$v/apache-ignite-$v-bin.zip;\
     unzip apache-ignite-$v-bin.zip && mv /opt/apache-ignite-$v-bin /opt/ignite-$v;\
diff --git a/modules/ducktests/tests/docker/requirements-dev.txt b/modules/ducktests/tests/docker/requirements-dev.txt
index dbb5439398c..08626a4b106 100644
--- a/modules/ducktests/tests/docker/requirements-dev.txt
+++ b/modules/ducktests/tests/docker/requirements-dev.txt
@@ -14,5 +14,5 @@
 # limitations under the License.
 
 -r requirements.txt
-pytest==6.0.1
+pytest==6.2.5
 flake8==3.8.3
diff --git a/modules/ducktests/tests/docker/requirements.txt b/modules/ducktests/tests/docker/requirements.txt
index bfd01260009..deec8ffed59 100644
--- a/modules/ducktests/tests/docker/requirements.txt
+++ b/modules/ducktests/tests/docker/requirements.txt
@@ -13,4 +13,4 @@
 # See the License for the specific language governing permissions and
 # limitations under the License.
 
-ducktape==0.8.2
+ducktape==0.11.1
diff --git a/modules/ducktests/tests/ignitetest/utils/version.py b/modules/ducktests/tests/ignitetest/utils/version.py
index 92a10caceaa..4f15980b174 100644
--- a/modules/ducktests/tests/ignitetest/utils/version.py
+++ b/modules/ducktests/tests/ignitetest/utils/version.py
@@ -104,7 +104,11 @@ LATEST_2_12 = V_2_12_0
 V_2_13_0 = IgniteVersion("2.13.0")
 LATEST_2_13 = V_2_13_0
 
+# 2.14.x versions
+V_2_14_0 = IgniteVersion("2.14.0")
+LATEST_2_14 = V_2_14_0
+
 # if you updated the LATEST version
 # please check DEV version in 'tests/ignitetest/__init__.py'
-LATEST = LATEST_2_13
+LATEST = LATEST_2_14
 OLDEST = V_2_7_6
diff --git a/modules/ducktests/tests/setup.py b/modules/ducktests/tests/setup.py
index efb5b039767..5e4ac2f9846 100644
--- a/modules/ducktests/tests/setup.py
+++ b/modules/ducktests/tests/setup.py
@@ -30,5 +30,5 @@ setup(name="ignitetest",
       license="apache2.0",
       packages=find_packages(exclude=["ignitetest.tests", "ignitetest.tests.*"]),
       include_package_data=True,
-      install_requires=["ducktape==0.8.2"],
-      tests_require=["pytest==6.0.1"])
+      install_requires=open('docker/requirements.txt').read(),
+      tests_require=["pytest==6.2.5"])