summaryrefslogtreecommitdiffstats
path: root/utils
diff options
context:
space:
mode:
authorliyin <liyin11@huawei.com>2017-09-29 14:41:46 +0800
committerAce Lee <liyin11@huawei.com>2017-09-29 06:44:52 +0000
commit6113a369a62545c4d21d1fc73557f340f6f3e9d8 (patch)
tree1891bd1f6909f306eb8a6774fb85599de2255b15 /utils
parent250d6cffbc53074d84971bffec1395322eb5a3ab (diff)
Fix Bottlenecks status page cann't be shown.
Change-Id: Ia1ad4c0654ad2dea7fdb61b81725af9aaafc4750 Signed-off-by: liyin <liyin11@huawei.com>
Diffstat (limited to 'utils')
-rw-r--r--utils/test/reporting/reporting/bottlenecks/reporting-status.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/utils/test/reporting/reporting/bottlenecks/reporting-status.py b/utils/test/reporting/reporting/bottlenecks/reporting-status.py
index 8966d0690..225227ac3 100644
--- a/utils/test/reporting/reporting/bottlenecks/reporting-status.py
+++ b/utils/test/reporting/reporting/bottlenecks/reporting-status.py
@@ -37,10 +37,14 @@ for version in VERSIONS:
# For all the installers
for installer in INSTALLERS:
# get scenarios results data
+ if version != 'master':
+ new_version = "stable/{}".format(version)
+ else:
+ new_version = version
scenario_results = rp_utils.getScenarios("bottlenecks",
"posca_factor_ping",
installer,
- version)
+ new_version)
LOGGER.info("scenario_results: %s", scenario_results)
scenario_stats = rp_utils.getScenarioStats(scenario_results)