Switch to unified view

a/pyforge/sandbox-test.ini b/pyforge/sandbox-test.ini
...
...
14
use = egg:Paste#http
14
use = egg:Paste#http
15
host = 0.0.0.0
15
host = 0.0.0.0
16
port = 5000
16
port = 5000
17
17
18
[app:main]
18
[app:main]
19
use = config:sandbox.ini#plugin_test
19
use = config:test.ini
20
db_prefix = test_
20
21
# Sandboxes have a different SOLR port
21
solr.server = http://localhost:50065/solr
22
solr.server = http://localhost:50065/solr/core1
22
load_test_data = true
23
cache_test_data = true
24
static_root = /static/
25
23
26
[app:main_without_authn]
24
[app:main_without_authn]
27
use = main
25
use = main
28
skip_authentication = True
26
skip_authentication = True
29
27
28
[app:main_with_amqp]
29
use = config:test.ini#main_with_amqp
30
31
# Sandboxes have a different SOLR port
32
solr.server = http://localhost:50065/solr/core1
33
30
# Add additional test specific configuration options as necessary.
34
# Add additional test specific configuration options as necessary.
35
[loggers]
36
keys = root
37
38
[handlers]
39
keys = test
40
41
[formatters]
42
keys = generic
43
44
[logger_root]
45
level = INFO
46
handlers = test
47
48
[handler_test]
49
class = FileHandler
50
args = ('test.log',)
51
level = NOTSET
52
formatter = generic
53
54
[formatter_generic]
55
format = %(asctime)s,%(msecs)03d %(levelname)-5.5s [%(name)s] %(message)s
56
datefmt = %H:%M:%S