ovirt-node 2.2.0 release
[ovirt-node.git] / server / test.ini
blob415fcb0000d2d1c850fd141c70d61c894f8bf51a
1 # Copyright (C) 2010, Red Hat, Inc.
2 # Written by Darryl L. Pierce
4 # This program is free software; you can redistribute it and/or
5 # modify it under the terms of the GNU General Public License
6 # as published by the Free Software Foundation; either version 2
7 # of the License, or (at your option) any later version.
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 # GNU General Public License for more details.
14 # You should have received a copy of the GNU General Public License
15 # along with this program; if not, write to the Free Software
16 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
19 # server - TurboGears 2 testing environment configuration
21 # The %(here)s variable will be replaced with the parent directory of this file
23 [DEFAULT]
24 debug = true
25 # Uncomment and replace with the address which should receive any error reports
26 # email_to = you@yourdomain.com
27 smtp_server = localhost
28 error_email_from = paste@localhost
30 [server:main]
31 use = egg:Paste#http
32 host = 0.0.0.0
33 port = 5000
35 [app:main]
36 use = config:development.ini
38 [app:main_without_authn]
39 use = main
40 skip_authentication = True
42 # Add additional test specific configuration options as necessary.