/shabti/templates/auth_repozepylons/test.ini_tmpl
Unknown | 34 lines | 29 code | 5 blank | 0 comment | 0 complexity | 8183231e1b4fbc421c9507f7e90be9d5 MD5 | raw file
1#
2# {{project}} - Pylons testing environment configuration
3#
4# The %(here)s variable will be replaced with the parent directory of this file
5#
6[DEFAULT]
7debug = true
8# Uncomment and replace with the address which should receive any error reports
9#email_to = you@yourdomain.com
10smtp_server = localhost
11error_email_from = paste@localhost
12
13[server:main]
14use = egg:Paste#http
15host = 127.0.0.1
16port = 5000
17
18[app:main]
19use = config:development.ini
20
21# Add additional test specific configuration options as necessary.
22sqlalchemy.url = sqlite:///%(here)s/nosetest.db
23sqlalchemy.echo = False
24
25# # These files don't exist but if they did, this is where
26# # they are included.
27# who.config_file = %(here)s/{{package}}/config/who.ini
28# who.log_level = debug
29# who.log_file = stdout
30
31# Your main application without authentication:
32[app:main_without_authn]
33use = main
34skip_authentication = True