summaryrefslogtreecommitdiff
path: root/tempest-pull/config.py
blob: 32a8bb5e0fe6e5ac2cc3735ffae3d8b8cb2dcb6a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
config = dict(


# this is the URL of the LAVA instance to retrieve from
LAVA_XMLRPC_ENDPOINT = "https://openstack.validation.linaro.org/RPC2",

# this is the URL of the Neo4J instance
NEO4J_ENDPOINT = "http://neo4j:linaro@localhost:7474/db/data/",

# this is the name of the bundle stream to retrieve from
BUNDLE_STREAM_NAME = "/public/team/openstack/tempest-ci/",

# this is the root location where the raw bundle JSON will be downloaded
# and stored.  Each bundle will be stored as a single .txt file inside
# a directory named with the bundle UUID.  Any bundle that already has a
# directory present will be skipped on subsequent runs.
BUNDLES_ROOT = "~/lava_pull/bundles/",  #"/srv/tempest/bundles/"

# this is the root location where the bundle's extracted log data and
# other files will be written
LOGS_ROOT = "~/lava_pull/logs/",  #"/srv/tempest/logs/"

# these are the important files that are to be brought to the top-level of
# the output directory
WHITELIST = {
   'devstack' : [
       { 'src' : "stdout.log", 'new-name' : "stdout-devstack.log" }
   ],
   'tempest-summary' : [
       { 'src' : "tempest-summary.txt" }
   ],
   'tempest-run' : [
       { 'src' : "*.log.gz" },
       { 'src' : "*.txt.gz" },
       { 'src' : "apache2/*" },
       { 'src' : "libvirt/*" },
       { 'src' : "all-tests.txt" },
       { 'src' : "results.subunit" },
       { 'src' : "stack.sh.summary.gz" },
       { 'src' : "stdout.log", 'new-name' : "stdout-tempest.log" },
       { 'src' : "tempest_conf.txt" }
   ]
}


)