add media files to production compose

This commit is contained in:
godd0t
2023-05-10 13:19:19 +02:00
parent 1ae2664984
commit 70a802350a
25 changed files with 129 additions and 123 deletions

View File

@@ -13,7 +13,11 @@ testpaths = [
]
pythonpath = [".", "src"]
python_files = "tests.py test_*.py *_tests.py"
DJANGO_SETTINGS_MODULE = "conf.settings.test"
DJANGO_SETTINGS_MODULE = "project_name.settings.test"
filterwarnings = [
'ignore::DeprecationWarning:kombu.*:',
'ignore::DeprecationWarning:celery.*:',
]
[tool.coverage.report]
fail_under = 85
@@ -58,6 +62,7 @@ extend-exclude = '''
[tool.ruff]
format = "grouped"
line-length = 88 # black default
extend-exclude = [
"*/migrations/*",