Update gitlab configuration

This commit is contained in:
Sonny Bakker 2023-06-28 08:37:28 +02:00
parent a9741d4063
commit 9258d33f4e
2 changed files with 9 additions and 1 deletions

View file

@ -4,7 +4,7 @@ python-tests:
services:
- postgres:15
- memcached:1.5.22
image: ./docker/django
image: python:3.9-bullseye
before_script:
- pip install -r requirements/ci.txt
script:

View file

@ -2,6 +2,14 @@ from .base import * # isort:skip
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"
AXES_ENABLED = False