~yeliabmas/sloecode/wiki-merge-proposal

« back to all changes in this revision

Viewing changes to test.ini

  • Committer: Thomi Richards
  • Date: 2012-04-25 05:37:09 UTC
  • mto: (147.1.7 trunk)
  • mto: This revision was merged to the branch mainline in revision 162.
  • Revision ID: thomi.richards@canonical.com-20120425053709-qkk56e90hhr6ethl
Removed dependancy on nose for unit tests - this allows us to use test scenarios. It will make it slightly harder when we come to do functional testing, but we'll cross that bridge when we come to it.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#
2
 
# sloecode - Pylons testing environment configuration
3
 
#
4
 
# The %(here)s variable will be replaced with the parent directory of this file
5
 
#
6
 
[DEFAULT]
7
 
debug = true
8
 
# Uncomment and replace with the address which should receive any error reports
9
 
#email_to = you@yourdomain.com
10
 
smtp_server = localhost
11
 
error_email_from = paste@localhost
12
 
 
13
 
[server:main]
14
 
use = egg:Paste#http
15
 
host = 127.0.0.1
16
 
port = 5000
17
 
 
18
 
[app:main]
19
 
use = config:development.ini
20
 
# specify that the SQLite database should be in memory for testing.
21
 
sqlalchemy.url = sqlite:///:memory:
22
 
# Add additional test specific configuration options as necessary.