ivandasch commented on a change in pull request #8211:
URL: https://github.com/apache/ignite/pull/8211#discussion_r498847702
##########
File path: modules/ducktests/tests/ignitetest/utils/ignite_test.py
##########
@@ -26,9 +26,17 @@ class IgniteTest(Test):
"""
Basic ignite test.
"""
+ TEMP_PATH_ROOT = "/mnt/ducktests"
+
def __init__(self, test_context):
super().__init__(test_context=test_context)
+ def teardown(self):
+ for node in self.test_context.cluster.nodes:
+ node.account.ssh_client.exec_command("rm -drf " +
self.TEMP_PATH_ROOT)
+
+ Test.teardown(self)
Review comment:
please use super().teardown()
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]