From a2a28ef2f3532ac26de88b746305d26f900b16fc Mon Sep 17 00:00:00 2001 From: Morgan Richomme Date: Mon, 6 Mar 2017 14:44:47 +0100 Subject: bug fix: last 4 run reporting for storperf - bug fix: copy/paste of yardstick code but list of results is not sorted by default, taking the last 4 array items lead to random results on the 4 last run sort results before taking the last 4 results to establish last 4 run criteria - enhancement: add link to last CI run in the reporting page - fix trend line bug Change-Id: Ice16832a81cb65503a63b16321a2be92a427d279 Signed-off-by: Morgan Richomme --- utils/test/reporting/storperf/template/index-status-tmpl.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'utils/test/reporting/storperf/template') diff --git a/utils/test/reporting/storperf/template/index-status-tmpl.html b/utils/test/reporting/storperf/template/index-status-tmpl.html index e3a18b1ce..e0fcc6828 100644 --- a/utils/test/reporting/storperf/template/index-status-tmpl.html +++ b/utils/test/reporting/storperf/template/index-status-tmpl.html @@ -25,7 +25,7 @@ } // trend line management - d3.csv("./scenario_history.csv", function(data) { + d3.csv("./scenario_history.txt", function(data) { // *************************************** // Create the trend line {% for scenario in scenario_results.keys() -%} @@ -95,7 +95,7 @@ {% for scenario,result in scenario_results.iteritems() -%} - {{scenario}} + {{scenario}}
{{scenario_results[scenario].getFourDaysScore()}} -- cgit 1.2.3-korg