forked from keitaroinc/ckanext-issues
-
Notifications
You must be signed in to change notification settings - Fork 1
/
test.ini
45 lines (36 loc) · 913 Bytes
/
test.ini
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
34
35
36
37
38
39
40
41
42
43
44
45
[app:main]
# debug should be false otherwise every web page includes the values of all the
# template variables, which can confuse tests which test for their presence in
# the normal part of the page.
debug = False
use = config:../ckan/test-core.ini
ckan.simple_search = 1
#sqlalchemy.url = sqlite:///issue-test.db
ckan.plugins = issues
ckan.auth.roles_that_cascade_to_sub_groups = admin
ckanext.issues.send_email_notifications = false
# Logging configuration
[loggers]
keys = root, ckan, sqlalchemy
[handlers]
keys = console
[formatters]
keys = generic
[logger_root]
level = WARN
handlers = console
[logger_ckan]
qualname = ckan
handlers =
level = INFO
[logger_sqlalchemy]
handlers =
qualname = sqlalchemy.engine
level = WARN
[handler_console]
class = StreamHandler
args = (sys.stdout,)
level = NOTSET
formatter = generic
[formatter_generic]
format = %(asctime)s %(levelname)-5.5s [%(name)s] %(message)s