summaryrefslogtreecommitdiffstats
path: root/funcweb/test.cfg
blob: 4140d5a4b113c20ab1e87d779217e6c836ca4d94 (plain)
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
[global]
# You can place test-specific configuration options here (like test db uri, etc)

# DATABASE

sqlalchemy.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]]
[[[funcweb]]]
level='DEBUG'
qualname='funcweb'
handlers=['test_out']

[[[turbogears]]]
level='INFO'
qualname='turbogears'
handlers=['test_out']