From d9a312a151e8025141d3b9d08f111e4950a0ff3f Mon Sep 17 00:00:00 2001 From: Trevor Bramwell Date: Tue, 2 Oct 2018 16:45:02 -0700 Subject: Create Gambia Testresults Pages This change add the Gambia page to the testresults dashboard. JIRA: RELENG-412 Change-Id: Id1ee651b9f3658adeff342c39e030dc248bf6747 Signed-off-by: Trevor Bramwell --- reporting/3rd_party/html/gambia.html | 141 +++++++++++++++++++++ reporting/3rd_party/html/index.html | 16 +-- reporting/api/conf.py | 2 +- reporting/docker/reporting.sh | 2 +- reporting/img/gambia.jpg | Bin 0 -> 45206 bytes .../app/scripts/controllers/gating.controller.js | 2 +- reporting/reporting/reporting.yaml | 2 +- reporting/reporting/vsperf/reporting-status.py | 2 +- 8 files changed, 154 insertions(+), 13 deletions(-) create mode 100644 reporting/3rd_party/html/gambia.html create mode 100644 reporting/img/gambia.jpg diff --git a/reporting/3rd_party/html/gambia.html b/reporting/3rd_party/html/gambia.html new file mode 100644 index 0000000..d5f6fcd --- /dev/null +++ b/reporting/3rd_party/html/gambia.html @@ -0,0 +1,141 @@ + + + + + Phantom by HTML5 UP + + + + + + + + + +
+ + + + + + + + + +
+
+
+

OPNFV Testing Working group

+
+
+

Follow

+ +
+ +
+
+ +
+ + + + + + + + + + diff --git a/reporting/3rd_party/html/index.html b/reporting/3rd_party/html/index.html index 858ac47..9165250 100644 --- a/reporting/3rd_party/html/index.html +++ b/reporting/3rd_party/html/index.html @@ -45,23 +45,23 @@
diff --git a/reporting/api/conf.py b/reporting/api/conf.py index e05c1fd..d0023e0 100644 --- a/reporting/api/conf.py +++ b/reporting/api/conf.py @@ -1,5 +1,5 @@ base_url = 'http://testresults.opnfv.org/test/api/v1' -versions = ['master', 'euphrates', 'fraser'] +versions = ['master', 'fraser', 'gambia'] period = 10 diff --git a/reporting/docker/reporting.sh b/reporting/docker/reporting.sh index 8008bf6..f3f3d50 100755 --- a/reporting/docker/reporting.sh +++ b/reporting/docker/reporting.sh @@ -3,7 +3,7 @@ export PYTHONPATH="${PYTHONPATH}:./reporting" export CONFIG_REPORTING_YAML=./reporting/reporting.yaml -declare -a versions=(fraser euphrates master) +declare -a versions=(gambia fraser master) declare -a projects=(functest storperf yardstick qtip vsperf bottlenecks) project=$1 diff --git a/reporting/img/gambia.jpg b/reporting/img/gambia.jpg new file mode 100644 index 0000000..fd91d11 Binary files /dev/null and b/reporting/img/gambia.jpg differ diff --git a/reporting/pages/app/scripts/controllers/gating.controller.js b/reporting/pages/app/scripts/controllers/gating.controller.js index 329f8e0..52b381d 100644 --- a/reporting/pages/app/scripts/controllers/gating.controller.js +++ b/reporting/pages/app/scripts/controllers/gating.controller.js @@ -12,7 +12,7 @@ angular.module('opnfvApp') $scope.scenarios = {}; $scope.scenarioList = _toSelectList(['all']); - $scope.versionList = _toSelectList(['master', 'euphrates', 'fraser']); + $scope.versionList = _toSelectList(['master', 'fraser', 'gambia']); $scope.installerList = _toSelectList(['all', 'apex', 'compass', 'daisy', 'fuel', 'joid']); $scope.iterationList = _toSelectList([10, 20, 30]); diff --git a/reporting/reporting/reporting.yaml b/reporting/reporting/reporting.yaml index ce27b90..6a59a44 100644 --- a/reporting/reporting/reporting.yaml +++ b/reporting/reporting/reporting.yaml @@ -9,7 +9,7 @@ general: versions: - master - - fraser + - gambia log: log_file: reporting.log diff --git a/reporting/reporting/vsperf/reporting-status.py b/reporting/reporting/vsperf/reporting-status.py index b45595d..377c315 100644 --- a/reporting/reporting/vsperf/reporting-status.py +++ b/reporting/reporting/vsperf/reporting-status.py @@ -127,7 +127,7 @@ def main(): period=50) version_data = _get_version_data(data['vsperf']) - for version in {'master', 'euphrates', 'fraser'}: + for version in {'master', 'fraser', 'gambia'}: _generate_reporting(version, version_data.get(version, [])) LOG.info("End") -- cgit 1.2.3-korg