Switch to faker for test data

This commit is contained in:
Keannu Christian Bernasol 2025-09-14 00:35:28 +08:00
parent 1e88f1ba53
commit 7e9501e75f
13 changed files with 190 additions and 126 deletions

View file

@ -8,7 +8,7 @@ from core.settings import * # noqa: F403
DATABASES = {
"default": {
"ENGINE": "django.db.backends.sqlite3",
"NAME": BASE_DIR / "test_db.sqlite3", # noqa: F405
"NAME": BASE_DIR / "db.sqlite3", # noqa: F405
}
}