9230cb2865932eb05553792bb320d196208f469f
[releng.git] / utils / test / reporting / functest / reportingConf.py
1 #!/usr/bin/python
2 #
3 # This program and the accompanying materials
4 # are made available under the terms of the Apache License, Version 2.0
5 # which accompanies this distribution, and is available at
6 #
7 # http://www.apache.org/licenses/LICENSE-2.0
8 #
9 # Reporting: Declaration of the variables
10 #
11 # ****************************************************
12 installers = ["apex", "compass", "fuel", "joid"]
13 # list of test cases declared in testcases.yaml but that must not be
14 # taken into account for the scoring
15 blacklist = ["ovno", "security_scan", 'odl-sfc']
16 # versions = ["brahmaputra", "master"]
17 versions = ["master", "colorado"]
18 PERIOD = 50
19 MAX_SCENARIO_CRITERIA = 50
20 # get the last 5 test results to determinate the success criteria
21 NB_TESTS = 5
22 # REPORTING_PATH = "/usr/share/nginx/html/reporting/functest"
23 REPORTING_PATH = "."
24 URL_BASE = 'http://testresults.opnfv.org/test/api/v1/results'
25 TEST_CONF = "https://git.opnfv.org/cgit/functest/plain/ci/testcases.yaml"
26 LOG_LEVEL = "ERROR"
27 LOG_FILE = REPORTING_PATH + "/reporting.log"