Switch to unified view

a/ForgeForum/sandbox-test.ini b/ForgeForum/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:../pyforge/sandbox.ini#plugin_test
19
use = config:../pyforge/sandbox-test.ini
20
db_prefix = test_
21
solr.server = http://localhost:50065/solr
22
load_test_data = true
23
cache_test_data = true
24
static_root = /static/
25
20
26
[app:main_without_authn]
21
[app:main_without_authn]
27
use = main
22
use = config:../pyforge/sandbox-test.ini#main_without_authn
28
skip_authentication = True
29
23
30
# Add additional test specific configuration options as necessary.
24
[app:main_with_amqp]
25
use = config:../pyforge/sandbox-test.ini#main_with_amqp
26
27
[loggers]
28
keys = root
29
30
[handlers]
31
keys = test
32
33
[formatters]
34
keys = generic
35
36
[logger_root]
37
level = INFO
38
handlers = test
39
40
[handler_test]
41
class = FileHandler
42
args = ('test.log',)
43
level = NOTSET
44
formatter = generic
45
46
[formatter_generic]
47
format = %(asctime)s,%(msecs)03d %(levelname)-5.5s [%(name)s] %(message)s
48
datefmt = %H:%M:%S