52d99974048f4d28741cf2e30be8b170febfe0fd
[releng.git] / utils / test / reporting / yardstick / 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
14 versions = ["master", "colorado"]
15
16 # get data in the past 10 days
17 PERIOD = 10
18
19 # get the lastest 4 test results to determinate the success criteria
20 LASTEST_TESTS = 4
21
22 REPORTING_PATH = "."
23
24 URL_BASE = 'http://testresults.opnfv.org/test/api/v1/results'
25
26 # LOG_LEVEL = "ERROR"
27 LOG_LEVEL = "INFO"
28 LOG_FILE = REPORTING_PATH + "/reporting.log"