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/01 10:51:48 UTC

[ignite] branch ignite-ducktape updated: IGNITE-14105: Fix ignoring tests PmeFreeSwitchTests (#8734)

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 1fc213f  IGNITE-14105: Fix ignoring tests PmeFreeSwitchTests (#8734)
1fc213f is described below

commit 1fc213f766a168c8053177647a53e42ca42c2a0e
Author: Sergei Ryzhov <s....@gmail.com>
AuthorDate: Mon Feb 1 13:51:23 2021 +0300

    IGNITE-14105: Fix ignoring tests PmeFreeSwitchTests (#8734)
---
 modules/ducktests/tests/ignitetest/tests/pme_free_switch_test.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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 2109490..842062c 100644
--- a/modules/ducktests/tests/ignitetest/tests/pme_free_switch_test.py
+++ b/modules/ducktests/tests/ignitetest/tests/pme_free_switch_test.py
@@ -54,7 +54,7 @@ class PmeFreeSwitchTest(IgniteTest):
     EXTRA_CACHES_AMOUNT = 100
 
     @cluster(num_nodes=NUM_NODES + 2)
-    @ignore_if(lambda version, globals: version <= V_2_8_0 or not globals.get("use_ssl"))
+    @ignore_if(lambda version, globals: version < V_2_8_0 and globals.get("use_ssl"))
     @ignite_versions(str(DEV_BRANCH), str(LATEST_2_7))
     @matrix(load_type=[LoadType.NONE, LoadType.EXTRA_CACHES, LoadType.LONG_TXS])
     def test(self, ignite_version, load_type):