diff options
author | Morgan Richomme <morgan.richomme@orange.com> | 2016-08-30 06:21:12 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@172.30.200.206> | 2016-08-30 06:21:12 +0000 |
commit | 3b0bcece3e95a3e020d0cfd9014219a075502fb1 (patch) | |
tree | 7096568a439f7042997d1921b590fde61b3c4481 /utils/test/reporting/yardstick/reportingConf.py | |
parent | 6f437cac140ea8995f680053a8361a0b05bdcdc8 (diff) | |
parent | f53fc8221faf7718d1cf060038ad3a23463b8398 (diff) |
Merge "Add the function of yardstick testcase reporter"
Diffstat (limited to 'utils/test/reporting/yardstick/reportingConf.py')
-rw-r--r-- | utils/test/reporting/yardstick/reportingConf.py | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/utils/test/reporting/yardstick/reportingConf.py b/utils/test/reporting/yardstick/reportingConf.py new file mode 100644 index 000000000..af95cc00f --- /dev/null +++ b/utils/test/reporting/yardstick/reportingConf.py @@ -0,0 +1,28 @@ +#!/usr/bin/python +# +# This program and the accompanying materials +# are made available under the terms of the Apache License, Version 2.0 +# which accompanies this distribution, and is available at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Reporting: Declaration of the variables +# +# **************************************************** +installers = ["apex", "compass", "fuel", "joid"] + +versions = ["master"] + +# get data in the past 7 days +PERIOD = 7 + +# get the lastest 4 test results to determinate the success criteria +LASTEST_TESTS = 4 + +REPORTING_PATH = "." + +URL_BASE = 'http://testresults.opnfv.org/test/api/v1/results' + +# LOG_LEVEL = "ERROR" +LOG_LEVEL = "INFO" +LOG_FILE = REPORTING_PATH + "/reporting.log" |