diff options
author | Morgan Richomme <morgan.richomme@orange.com> | 2016-08-10 17:32:32 +0200 |
---|---|---|
committer | Morgan Richomme <morgan.richomme@orange.com> | 2016-08-10 17:32:32 +0200 |
commit | 977d76102a2bc393c00f124947cb9639057fc47b (patch) | |
tree | 6411ef8c4e62772df256f4270dd86c6a03eac02e /utils/test/reporting/functest/reportingConf.py | |
parent | f0830fb30a41e6db542ce7c843c5819fcb205c9e (diff) |
Fix unknown projects in reporting
Change-Id: Ia3d21694b8bf5e7131110124a520ecc0b9234509
Signed-off-by: Morgan Richomme <morgan.richomme@orange.com>
Diffstat (limited to 'utils/test/reporting/functest/reportingConf.py')
-rw-r--r-- | utils/test/reporting/functest/reportingConf.py | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/utils/test/reporting/functest/reportingConf.py b/utils/test/reporting/functest/reportingConf.py index a58eeecc9..9c618a274 100644 --- a/utils/test/reporting/functest/reportingConf.py +++ b/utils/test/reporting/functest/reportingConf.py @@ -10,19 +10,18 @@ # # **************************************************** installers = ["apex", "compass", "fuel", "joid"] -# installers = ["apex"] # list of test cases declared in testcases.yaml but that must not be # taken into account for the scoring -blacklist = ["odl", "ovno", "security_scan", "copper", "moon"] +blacklist = ["ovno", "security_scan"] # versions = ["brahmaputra", "master"] versions = ["master"] -PERIOD = 10 -MAX_SCENARIO_CRITERIA = 18 +PERIOD = 50 +MAX_SCENARIO_CRITERIA = 50 # get the last 5 test results to determinate the success criteria NB_TESTS = 5 # REPORTING_PATH = "/usr/share/nginx/html/reporting/functest" REPORTING_PATH = "." URL_BASE = 'http://testresults.opnfv.org/test/api/v1/results' TEST_CONF = "https://git.opnfv.org/cgit/functest/plain/ci/testcases.yaml" -LOG_LEVEL = "ERROR" +LOG_LEVEL = "DEBUG" LOG_FILE = REPORTING_PATH + "/reporting.log" |