diff options
author | Cédric Ollivier <cedric.ollivier@orange.com> | 2017-12-19 19:12:27 +0100 |
---|---|---|
committer | Cédric Ollivier <cedric.ollivier@orange.com> | 2017-12-19 19:12:27 +0100 |
commit | afa5e6098c7fd24ee2a9259a5dbff64a3e2d0a68 (patch) | |
tree | 242a0e92f873ceaf803b0f5f3357d54bc71cf962 /functest/ci | |
parent | 5c20154ceafd6d2dc1e625e2e1b5bc335f1084a6 (diff) |
Delete TestCase.create_snapshot()
OSGC has been removed then this method can be safely removed.
It also updates run_tests.py.
Change-Id: I4030b7f0351d24d095313ae990b08e65d8f69115
Signed-off-by: Cédric Ollivier <cedric.ollivier@orange.com>
Diffstat (limited to 'functest/ci')
-rw-r--r-- | functest/ci/run_tests.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/functest/ci/run_tests.py b/functest/ci/run_tests.py index 166dbfc9..6748484d 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) |