diff options
author | Cédric Ollivier <cedric.ollivier@orange.com> | 2019-02-13 21:23:28 +0100 |
---|---|---|
committer | Cédric Ollivier <cedric.ollivier@orange.com> | 2019-02-13 21:23:28 +0100 |
commit | 4afaf09c94da6e98ca449a7495f158e2d30255e5 (patch) | |
tree | 32566385a8eceb5a569dc271bebb91a5fe0d6a84 | |
parent | dd217735edd2e596d396a2b8815b418548f78111 (diff) |
Publish tempest details into database
It switches from tempest.log to rally.log to conform with rally/stestr.
Change-Id: I00c2a268a2bc312a22a8d70278fad618c1c25235
Signed-off-by: Cédric Ollivier <cedric.ollivier@orange.com>
-rw-r--r-- | functest/opnfv_tests/openstack/tempest/tempest.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/functest/opnfv_tests/openstack/tempest/tempest.py b/functest/opnfv_tests/openstack/tempest/tempest.py index d7e3f243d..011c8b6fb 100644 --- a/functest/opnfv_tests/openstack/tempest/tempest.py +++ b/functest/opnfv_tests/openstack/tempest/tempest.py @@ -260,7 +260,7 @@ class TempestCommon(singlevm.VmReady2): return with open(os.path.join(self.res_dir, - "tempest.log"), 'r') as logfile: + "rally.log"), 'r') as logfile: output = logfile.read() success_testcases = [] |