summaryrefslogtreecommitdiffstats
path: root/utils/test/reporting/functest/reportingConf.py
diff options
context:
space:
mode:
authorMorgan Richomme <morgan.richomme@orange.com>2016-07-07 08:44:22 +0000
committerGerrit Code Review <gerrit@172.30.200.206>2016-07-07 08:44:22 +0000
commitae1fa95defd506dd15d4a89b2b26d29adccdd2f0 (patch)
tree274b4672fe446ae2cce5ae827c6c30f2b7e76c74 /utils/test/reporting/functest/reportingConf.py
parentfb4fcf3abcb36b33a3055317220404c5090d7919 (diff)
parent06b2a638dfc85765be0e13857a38ecf5943ef0c3 (diff)
Merge "flake 8 fix + add logger"
Diffstat (limited to 'utils/test/reporting/functest/reportingConf.py')
-rw-r--r--utils/test/reporting/functest/reportingConf.py8
1 files changed, 5 insertions, 3 deletions
diff --git a/utils/test/reporting/functest/reportingConf.py b/utils/test/reporting/functest/reportingConf.py
index 61410b414..a58eeecc9 100644
--- a/utils/test/reporting/functest/reportingConf.py
+++ b/utils/test/reporting/functest/reportingConf.py
@@ -13,14 +13,16 @@ 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"]
+blacklist = ["odl", "ovno", "security_scan", "copper", "moon"]
# versions = ["brahmaputra", "master"]
versions = ["master"]
PERIOD = 10
MAX_SCENARIO_CRITERIA = 18
# 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 = "INFO"
-LOG_FILE = "reporting.log"
+LOG_LEVEL = "ERROR"
+LOG_FILE = REPORTING_PATH + "/reporting.log"