diff options
author | Manuel Buil <mbuil@suse.com> | 2017-04-10 18:20:04 +0200 |
---|---|---|
committer | Manuel Buil <mbuil@suse.com> | 2017-04-10 18:20:04 +0200 |
commit | a13cf9ed3c16a41e2638c081b4d27a83bbd191d5 (patch) | |
tree | 831a73e39a5925fa7fafc6ffce83c505e1b16ab8 | |
parent | 779708abf7fbae55c65cc7920d03b79e6801ad1a (diff) |
Remove the extra logs we added
Tacker plug-in does not have a problem anymore so we can remove the extra logs
we added in case of failure
Change-Id: I3b74d6caee9235ad2e8cc180757d0627770380c2
Signed-off-by: Manuel Buil <mbuil@suse.com>
-rw-r--r-- | sfc/tests/functest/run_tests.py | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/sfc/tests/functest/run_tests.py b/sfc/tests/functest/run_tests.py index a6c218ab..88a351a0 100644 --- a/sfc/tests/functest/run_tests.py +++ b/sfc/tests/functest/run_tests.py @@ -134,16 +134,6 @@ def main(report=False): logger.error("Exception when executing: %s" % testcase) logger.error(e) result = {'status': 'FAILED'} - for node in nodes: - if node.get_file("/usr/lib/python2.7/dist-packages/tacker/" - "sfc/plugin.py", "/tmp/plugin.py"): - node.get_file("/var/log/tacker/tacker-server.log", - "/tmp/tacker-server.log") - break - with open("/tmp/plugin.py") as fd: - logger.info(fd.read()) - with open("/tmp/tacker-server.log") as fd1: - logger.info(fd1.read()) end_time = time.time() duration = end_time - start_time logger.info("Results of test case '%s - %s':\n%s\n" % |