-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest.ini
More file actions
29 lines (24 loc) · 674 Bytes
/
test.ini
File metadata and controls
29 lines (24 loc) · 674 Bytes
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
#
# spaceWebApp - TurboGears 2 testing environment configuration
#
# The %(here)s variable will be replaced with the parent directory of this file
#
[DEFAULT]
# Uncomment and replace with the address which should receive any error reports
# email_to = you@yourdomain.com
smtp_server = localhost
error_email_from = turbogears@localhost
[server:main]
use = egg:gearbox#wsgiref
host = 127.0.0.1
port = 8080
[app:main]
ming.url = mim:///
ming.db = test
use = config:development.ini
# Disable debugger when running test suite
set debug = false
[app:main_without_authn]
use = main
skip_authentication = True
# Add additional test specific configuration options as necessary.