You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ignite.apache.org by av...@apache.org on 2021/02/05 10:26:43 UTC

[ignite] branch ignite-ducktape updated: IGNITE-14106 Get rid of obsolete version testing. All tests should be automatically tested on LATEST and DEV.

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

av pushed a commit to branch ignite-ducktape
in repository https://gitbox.apache.org/repos/asf/ignite.git


The following commit(s) were added to refs/heads/ignite-ducktape by this push:
     new b7b44a9  IGNITE-14106 Get rid of obsolete version testing. All tests should be automatically tested on LATEST and DEV.
b7b44a9 is described below

commit b7b44a9bbee4603be42dfe0331cb3a835143b3c0
Author: Anton Vinogradov <av...@apache.org>
AuthorDate: Fri Feb 5 13:26:14 2021 +0300

    IGNITE-14106 Get rid of obsolete version testing. All tests should be automatically tested on LATEST and DEV.
---
 modules/ducktests/tests/ignitetest/tests/cellular_affinity_test.py | 4 ++--
 modules/ducktests/tests/ignitetest/tests/pme_free_switch_test.py   | 4 ++--
 modules/ducktests/tests/ignitetest/tests/ssl_test.py               | 4 ++--
 3 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/modules/ducktests/tests/ignitetest/tests/cellular_affinity_test.py b/modules/ducktests/tests/ignitetest/tests/cellular_affinity_test.py
index a8aa393..0e08311 100644
--- a/modules/ducktests/tests/ignitetest/tests/cellular_affinity_test.py
+++ b/modules/ducktests/tests/ignitetest/tests/cellular_affinity_test.py
@@ -32,7 +32,7 @@ from ignitetest.services.zk.zookeeper import ZookeeperSettings, ZookeeperService
 from ignitetest.utils import ignite_versions, cluster, ignore_if
 from ignitetest.utils.enum import constructible
 from ignitetest.utils.ignite_test import IgniteTest
-from ignitetest.utils.version import DEV_BRANCH, IgniteVersion, LATEST_2_8
+from ignitetest.utils.version import DEV_BRANCH, IgniteVersion, LATEST
 
 
 @constructible
@@ -137,7 +137,7 @@ class CellularAffinity(IgniteTest):
     # pylint: disable=R0914
     # pylint: disable=no-member
     @cluster(num_nodes=2 * (NODES_PER_CELL + 1) + 3)  # cell_cnt * (srv_per_cell + cell_streamer) + zookeper_cluster
-    @ignite_versions(str(DEV_BRANCH), str(LATEST_2_8))
+    @ignite_versions(str(DEV_BRANCH), str(LATEST))
     @matrix(stop_type=[StopType.DROP_NETWORK, StopType.SIGKILL, StopType.SIGTERM],
             discovery_type=[DiscoreryType.ZooKeeper, DiscoreryType.TCP])
     def test_latency(self, ignite_version, stop_type, discovery_type):
diff --git a/modules/ducktests/tests/ignitetest/tests/pme_free_switch_test.py b/modules/ducktests/tests/ignitetest/tests/pme_free_switch_test.py
index 842062c..94b702f 100644
--- a/modules/ducktests/tests/ignitetest/tests/pme_free_switch_test.py
+++ b/modules/ducktests/tests/ignitetest/tests/pme_free_switch_test.py
@@ -31,7 +31,7 @@ from ignitetest.services.utils.ignite_configuration.discovery import from_ignite
 from ignitetest.utils import ignite_versions, cluster, ignore_if
 from ignitetest.utils.enum import constructible
 from ignitetest.utils.ignite_test import IgniteTest
-from ignitetest.utils.version import DEV_BRANCH, LATEST_2_7, V_2_8_0, IgniteVersion
+from ignitetest.utils.version import DEV_BRANCH, V_2_8_0, IgniteVersion, LATEST
 
 
 @constructible
@@ -55,7 +55,7 @@ class PmeFreeSwitchTest(IgniteTest):
 
     @cluster(num_nodes=NUM_NODES + 2)
     @ignore_if(lambda version, globals: version < V_2_8_0 and globals.get("use_ssl"))
-    @ignite_versions(str(DEV_BRANCH), str(LATEST_2_7))
+    @ignite_versions(str(DEV_BRANCH), str(LATEST))
     @matrix(load_type=[LoadType.NONE, LoadType.EXTRA_CACHES, LoadType.LONG_TXS])
     def test(self, ignite_version, load_type):
         """
diff --git a/modules/ducktests/tests/ignitetest/tests/ssl_test.py b/modules/ducktests/tests/ignitetest/tests/ssl_test.py
index 4df3180..4eac087 100644
--- a/modules/ducktests/tests/ignitetest/tests/ssl_test.py
+++ b/modules/ducktests/tests/ignitetest/tests/ssl_test.py
@@ -24,7 +24,7 @@ from ignitetest.services.utils.ssl.connector_configuration import ConnectorConfi
 from ignitetest.services.utils.ssl.ssl_factory import SslContextFactory
 from ignitetest.utils import ignite_versions, cluster
 from ignitetest.utils.ignite_test import IgniteTest
-from ignitetest.utils.version import IgniteVersion, DEV_BRANCH, LATEST_2_9, LATEST_2_8
+from ignitetest.utils.version import IgniteVersion, DEV_BRANCH, LATEST
 
 
 # pylint: disable=W0223
@@ -33,7 +33,7 @@ class SslTest(IgniteTest):
     Ssl test.
     """
     @cluster(num_nodes=3)
-    @ignite_versions(str(DEV_BRANCH), str(LATEST_2_9), str(LATEST_2_8))
+    @ignite_versions(str(DEV_BRANCH), str(LATEST))
     def test_ssl_connection(self, ignite_version):
         """
         Test that IgniteService, IgniteApplicationService correctly start and stop with ssl configurations.