swsnider / portfolio

These are projects that I use as a portfolio.

swsnider (author)
Mon Mar 31 00:30:03 -0700 2008
commit  f675985c84e91b11a9c732e4f03e2ecabd049a94
tree    398a2f64527c18c5bf87acc50585025ec23ef0ec
parent  059b8e2bc56f0766fb93f2eec77489889216b96e
portfolio / bugs / test.cfg
100644 33 lines (24 sloc) 0.517 kb
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
30
31
32
33
[global]
# You can place test-specific configuration options here (like test db uri, etc)
 
# DATABASE
 
sqlobject.dburi = "sqlite:///:memory:"
 
# LOGGING
 
[logging]
 
[[formatters]]
[[[full_content]]]
format='*(asctime)s *(name)s *(levelname)s *(message)s'
 
[[handlers]]
[[[test_out]]]
class='StreamHandler'
level='DEBUG'
args='(sys.stdout,)'
formatter='full_content'
 
[[loggers]]
[[[bugs]]]
level='DEBUG'
qualname='bugs'
handlers=['test_out']
 
[[[turbogears]]]
level='INFO'
qualname='turbogears'
handlers=['test_out']