Coverage for app/settings.py: 100%
3 statements
« prev ^ index » next coverage.py v7.6.9, created at 2024-12-23 11:16 -0600
« prev ^ index » next coverage.py v7.6.9, created at 2024-12-23 11:16 -0600
1SECRET_KEY = "test"
2INSTALLED_PACKAGES = [
3 "plain.models",
4 "app.examples",
5]
6DATABASES = {
7 "default": {
8 "ENGINE": "plain.models.backends.sqlite3",
9 "NAME": ":memory:",
10 }
11}