aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCedric Ollivier <cedric.ollivier@orange.com>2017-12-20 18:00:35 +0000
committerGerrit Code Review <gerrit@opnfv.org>2017-12-20 18:00:35 +0000
commita53fd6452a077b1905ff8f5ae1d24bdd112f2f82 (patch)
treed2dba516e060185736fb78057731fead14a89c29
parent7510ff6e0e8e66fa6aa85bd7fb5e698ed66256d8 (diff)
parentafa5e6098c7fd24ee2a9259a5dbff64a3e2d0a68 (diff)
Merge "Delete TestCase.create_snapshot()"
-rw-r--r--functest/ci/run_tests.py3
-rw-r--r--functest/core/testcase.py11
-rw-r--r--functest/tests/unit/core/test_testcase.py4
3 files changed, 0 insertions, 18 deletions
diff --git a/functest/ci/run_tests.py b/functest/ci/run_tests.py
index 166dbfc9e..6748484d7 100644
--- a/functest/ci/run_tests.py
+++ b/functest/ci/run_tests.py
@@ -137,9 +137,6 @@ class Runner(object):
test_dict = ft_utils.get_dict_by_test(test.get_name())
test_case = cls(**test_dict)
self.executed_test_cases[test.get_name()] = test_case
- if self.clean_flag:
- if test_case.create_snapshot() != test_case.EX_OK:
- return testcase.TestCase.EX_RUN_ERROR
try:
kwargs = run_dict['args']
test_case.run(**kwargs)
diff --git a/functest/core/testcase.py b/functest/core/testcase.py
index ae0da9d7e..fa3802872 100644
--- a/functest/core/testcase.py
+++ b/functest/core/testcase.py
@@ -178,17 +178,6 @@ class TestCase(object):
self.__logger.exception("The results cannot be pushed to DB")
return TestCase.EX_PUSH_TO_DB_ERROR
- def create_snapshot(self): # pylint: disable=no-self-use
- """Save the testing environment before running test.
-
- It can be overriden if resources must be listed running the
- test case.
-
- Returns:
- TestCase.EX_OK
- """
- return TestCase.EX_OK
-
def clean(self):
"""Clean the resources.
diff --git a/functest/tests/unit/core/test_testcase.py b/functest/tests/unit/core/test_testcase.py
index 6fbf62e22..73ed3470a 100644
--- a/functest/tests/unit/core/test_testcase.py
+++ b/functest/tests/unit/core/test_testcase.py
@@ -223,10 +223,6 @@ class TestCaseTesting(unittest.TestCase):
self.assertIn(duration, message)
self.assertIn('FAIL', message)
- def test_create_snapshot(self):
- self.assertEqual(self.test.create_snapshot(),
- testcase.TestCase.EX_OK)
-
def test_clean(self):
self.assertEqual(self.test.clean(), None)