diff options
author | Morgan Richomme <morgan.richomme@orange.com> | 2016-09-13 15:04:05 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@172.30.200.206> | 2016-09-13 15:04:05 +0000 |
commit | ae5c54cd7acb95defc0c8f0ec8a4ddeb0d85cfce (patch) | |
tree | de92e9bfc9213481f340bf9a003aca778630ca69 | |
parent | 51a3806ba98cf2fa3e6ae03c0cd4a7781c89330b (diff) | |
parent | fa7a4dc69cfb0bbfd9db24ffd253b3832a4bbc59 (diff) |
Merge "Bugfix: reporting shows more than 4 days result"
-rw-r--r-- | utils/test/reporting/yardstick/reporting-status.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/utils/test/reporting/yardstick/reporting-status.py b/utils/test/reporting/yardstick/reporting-status.py index d7a4e2986..57a95947b 100644 --- a/utils/test/reporting/yardstick/reporting-status.py +++ b/utils/test/reporting/yardstick/reporting-status.py @@ -38,6 +38,8 @@ for version in conf.versions: if not scenario_results.has_key(k): scenario_results[k] = [] scenario_results[k] += stable_result[k] + for k,v in scenario_results.items(): + scenario_results[k] = v[0:conf.LASTEST_TESTS] scenario_result_criteria = {} # From each scenarios get results list |