Files
training-software/config/settings/migrate_verify.py
Paperclip CTO 01661bf5a8
Some checks failed
CI / lint (push) Successful in 6s
CI / test (push) Failing after 7s
CI / build-container (push) Has been skipped
fix: restore CI by fixing lint, test collection, and notification syntax
2026-05-18 14:53:29 +02:00

14 lines
321 B
Python

from .test import * # noqa: F401, F403
DATABASES = {
"default": {
"ENGINE": "django.db.backends.postgresql",
"NAME": "training_test",
"USER": "training",
"PASSWORD": "training",
"HOST": "127.0.0.1",
"PORT": "54329",
"TEST": {"NAME": "training_test"},
}
}