diff options
author | Morgan Richomme <morgan.richomme@orange.com> | 2016-07-07 11:31:58 +0200 |
---|---|---|
committer | Morgan Richomme <morgan.richomme@orange.com> | 2016-07-07 11:31:58 +0200 |
commit | 32c3baf053e5e1e086115026c83ba2eff0cb3219 (patch) | |
tree | da46ac5e17e83f2863598470253b53fd423760d6 /utils/test/reporting/functest/reporting-tempest.py | |
parent | 06b2a638dfc85765be0e13857a38ecf5943ef0c3 (diff) |
minor bug fixes
Change-Id: I8ea8b03559a27374cb387ed9a4f3b0b08364f7ad
Signed-off-by: Morgan Richomme <morgan.richomme@orange.com>
Diffstat (limited to 'utils/test/reporting/functest/reporting-tempest.py')
-rw-r--r-- | utils/test/reporting/functest/reporting-tempest.py | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/utils/test/reporting/functest/reporting-tempest.py b/utils/test/reporting/functest/reporting-tempest.py index 6da18c425..e3f4e3306 100644 --- a/utils/test/reporting/functest/reporting-tempest.py +++ b/utils/test/reporting/functest/reporting-tempest.py @@ -19,11 +19,10 @@ logger.info("* Data retention = %s days *" % PERIOD) logger.info("* *") logger.info("************************************************") -logger.info("Success criteria: nb tests executed > %s s," + - "test duration < %s s," + - "success rate > %s " % (criteria_nb_test, - criteria_duration, - criteria_success_rate)) +logger.info("Success criteria:") +logger.info("nb tests executed > %s s " % criteria_nb_test) +logger.info("test duration < %s s " % criteria_duration) +logger.info("success rate > %s " % criteria_success_rate) for installer in installers: # we consider the Tempest results of the last PERIOD days @@ -40,7 +39,6 @@ for installer in installers: logger.error("Error code: %s" % e) test_results = results['results'] - test_results.reverse() scenario_results = {} criteria = {} |