summaryrefslogtreecommitdiffstats
path: root/reporting/functest/reportingConf.py
diff options
context:
space:
mode:
authorMorgan Richomme <morgan.richomme@orange.com>2016-07-06 17:32:22 +0200
committerMorgan Richomme <morgan.richomme@orange.com>2016-07-07 10:09:20 +0200
commit302e8b431d9822fe85c759072d7536a499926e84 (patch)
tree4172498c06f86c549722824ee6d7661dd090af76 /reporting/functest/reportingConf.py
parentb7d3e63e77b1de41e9d9fb14fa32456096460022 (diff)
flake 8 fix + add logger
Change-Id: Ib8fbf0e784b57ea9be824e95fafe68e991b80aab Signed-off-by: Morgan Richomme <morgan.richomme@orange.com>
Diffstat (limited to 'reporting/functest/reportingConf.py')
-rw-r--r--reporting/functest/reportingConf.py8
1 files changed, 5 insertions, 3 deletions
diff --git a/reporting/functest/reportingConf.py b/reporting/functest/reportingConf.py
index 61410b4..a58eeec 100644
--- a/reporting/functest/reportingConf.py
+++ b/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"