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/25 09:25:14 UTC

[ignite] branch ignite-ducktape updated: IGNITE-14242 Build ducktests with minimal required classpath

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 43b926a  IGNITE-14242 Build ducktests with minimal required classpath
43b926a is described below

commit 43b926a6f34078b524023b121cdbe8c3f01e6ec8
Author: Anton Vinogradov <av...@apache.org>
AuthorDate: Thu Feb 25 12:24:26 2021 +0300

    IGNITE-14242 Build ducktests with minimal required classpath
---
 modules/ducktests/tests/README.md                         | 2 +-
 modules/ducktests/tests/ignitetest/tests/snapshot_test.py | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/modules/ducktests/tests/README.md b/modules/ducktests/tests/README.md
index 6a839a6..69b1d38 100644
--- a/modules/ducktests/tests/README.md
+++ b/modules/ducktests/tests/README.md
@@ -20,7 +20,7 @@ For development process requirements are `python` >= 3.7.
 
 ## Run tests locally
 - Change a current directory to`${IGNITE_HOME}`
-- Build Apache IGNITE invoking `${IGNITE_HOME}/scripts/build.sh`
+- Build Apache IGNITE invoking `${IGNITE_HOME}/scripts/build-module.sh ducktests`
 - Change a current directory to `${IGNITE_HOME}/modules/ducktests/tests`
 - Run tests in docker containers using a following command:
 ```
diff --git a/modules/ducktests/tests/ignitetest/tests/snapshot_test.py b/modules/ducktests/tests/ignitetest/tests/snapshot_test.py
index edb8012..dbe176e 100644
--- a/modules/ducktests/tests/ignitetest/tests/snapshot_test.py
+++ b/modules/ducktests/tests/ignitetest/tests/snapshot_test.py
@@ -27,7 +27,7 @@ from ignitetest.services.utils.ignite_configuration.data_storage import DataRegi
 from ignitetest.services.utils.ignite_configuration.discovery import from_ignite_cluster
 from ignitetest.utils import ignite_versions
 from ignitetest.utils.ignite_test import IgniteTest
-from ignitetest.utils.version import IgniteVersion, LATEST_2_9
+from ignitetest.utils.version import IgniteVersion, LATEST, DEV_BRANCH
 
 
 # pylint: disable=W0223
@@ -40,7 +40,7 @@ class SnapshotTest(IgniteTest):
     CACHE_NAME = "TEST_CACHE"
 
     @cluster(num_nodes=4)
-    @ignite_versions(str(LATEST_2_9))
+    @ignite_versions(str(DEV_BRANCH), str(LATEST))
     def snapshot_test(self, ignite_version):
         """
         Basic snapshot test.