|
a/pyforge/sandbox-test.ini |
|
b/pyforge/sandbox-test.ini |
|
... |
|
... |
6 |
[DEFAULT]
|
6 |
[DEFAULT]
|
7 |
debug = true
|
7 |
debug = true
|
8 |
# Uncomment and replace with the address which should receive any error reports
|
8 |
# Uncomment and replace with the address which should receive any error reports
|
9 |
# email_to = you@yourdomain.com
|
9 |
# email_to = you@yourdomain.com
|
10 |
smtp_server = localhost
|
10 |
smtp_server = localhost
|
|
|
11 |
smtp_port = 25
|
11 |
error_email_from = paste@localhost
|
12 |
error_email_from = paste@localhost
|
12 |
|
13 |
|
13 |
[server:main]
|
14 |
[server:main]
|
14 |
use = egg:Paste#http
|
15 |
use = egg:Paste#http
|
15 |
host = 0.0.0.0
|
16 |
host = 0.0.0.0
|
16 |
port = 5000
|
17 |
port = 50097
|
17 |
|
18 |
|
18 |
[app:main]
|
19 |
[app:main]
|
19 |
use = config:test.ini
|
20 |
use = config:production.ini#tool_test
|
|
|
21 |
db_prefix = test_
|
20 |
|
22 |
|
21 |
# Sandboxes have a different SOLR port
|
23 |
# Use test MongoDB DB server
|
22 |
solr.server = http://localhost:50065/solr/core1
|
24 |
ming.main.master = mim:///pyforge
|
|
|
25 |
|
|
|
26 |
# Use mock AMQP
|
|
|
27 |
amqp.mock = true
|
|
|
28 |
|
|
|
29 |
load_test_data = true
|
|
|
30 |
cache_test_data = false
|
|
|
31 |
static_root = /static/
|
23 |
|
32 |
|
24 |
[app:main_without_authn]
|
33 |
[app:main_without_authn]
|
25 |
use = main
|
34 |
use = main
|
26 |
skip_authentication = True
|
35 |
skip_authentication = True
|
27 |
|
36 |
|
28 |
[app:main_with_amqp]
|
37 |
[app:main_with_amqp]
|
29 |
use = config:test.ini#main_with_amqp
|
38 |
use = main
|
30 |
|
|
|
31 |
# Sandboxes have a different SOLR port
|
|
|
32 |
solr.server = http://localhost:50065/solr/core1
|
|
|
33 |
|
39 |
|
34 |
# Add additional test specific configuration options as necessary.
|
40 |
# Add additional test specific configuration options as necessary.
|
35 |
[loggers]
|
41 |
[loggers]
|
36 |
keys = root
|
42 |
keys = root
|
37 |
|
43 |
|