Merge branch 'weblate-gnu-mailman-postorius' into 'master'
[mailman-postorious.git] / example_project / test_settings.py
blobec5b4e8c2ac23b53f20e4b740df3213dfe4f1391
1 # -*- coding: utf-8 -*-
2 # Copyright (C) 1998-2023 by the Free Software Foundation, Inc.
4 # This file is part of Postorius.
6 # Postorius is free software: you can redistribute it and/or modify it under
7 # the terms of the GNU General Public License as published by the Free
8 # Software Foundation, either version 3 of the License, or (at your option)
9 # any later version.
11 # Postorius is distributed in the hope that it will be useful, but WITHOUT
12 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 # FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
14 # more details.
16 # You should have received a copy of the GNU General Public License along with
17 # Postorius. If not, see <http://www.gnu.org/licenses/>.
19 """
20 Django test settings for postorius project.
21 """
23 from .settings import *
26 ROOT_URLCONF = 'example_project.urls'
28 TESTING = True
30 # Mailman API credentials for testing
31 MAILMAN_REST_API_URL = 'http://localhost:9001'
32 MAILMAN_REST_API_USER = 'restadmin'
33 MAILMAN_REST_API_PASS = 'restpass'
36 LOGGING = {
37 'version': 1,
38 'disable_existing_loggers': False,
39 'handlers': {
40 'console': {
41 'class': 'logging.StreamHandler',
42 'formatter': 'verbose',
45 'loggers': {
46 'django': {
47 'handlers': ['console'],
48 'level': 'INFO',
50 'django.request': {
51 'handlers': ['console'],
52 'level': 'ERROR',
54 'postorius': {
55 'handlers': ['console'],
56 'level': 'INFO',
59 'formatters': {
60 'verbose': {
61 'format': '%(levelname)s %(asctime)s %(process)d %(name)s %(message)s'