Update gitlab configuration
This commit is contained in:
parent
a9741d4063
commit
9258d33f4e
2 changed files with 9 additions and 1 deletions
|
|
@ -4,7 +4,7 @@ python-tests:
|
||||||
services:
|
services:
|
||||||
- postgres:15
|
- postgres:15
|
||||||
- memcached:1.5.22
|
- memcached:1.5.22
|
||||||
image: ./docker/django
|
image: python:3.9-bullseye
|
||||||
before_script:
|
before_script:
|
||||||
- pip install -r requirements/ci.txt
|
- pip install -r requirements/ci.txt
|
||||||
script:
|
script:
|
||||||
|
|
|
||||||
|
|
@ -2,6 +2,14 @@ from .base import * # isort:skip
|
||||||
from .version import get_current_version
|
from .version import get_current_version
|
||||||
|
|
||||||
|
|
||||||
|
LOGGING["loggers"].update(
|
||||||
|
{
|
||||||
|
"celery.task": {"handlers": ["console"], "level": "DEBUG"},
|
||||||
|
"newsreader": {"handlers": ["console"], "level": "INFO"},
|
||||||
|
}
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
EMAIL_BACKEND = "django.core.mail.backends.console.EmailBackend"
|
EMAIL_BACKEND = "django.core.mail.backends.console.EmailBackend"
|
||||||
|
|
||||||
AXES_ENABLED = False
|
AXES_ENABLED = False
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue