diff --git a/.gitignore b/.gitignore index ef83750..a95ab74 100644 --- a/.gitignore +++ b/.gitignore @@ -12,3 +12,4 @@ settings.json *.py[cod] .pytest_cache/* .mypy_cache +.testdb diff --git a/test_settings.py b/test_settings.py index b8f7249..69a6812 100644 --- a/test_settings.py +++ b/test_settings.py @@ -5,7 +5,7 @@ BASE_DIR = os.path.dirname(os.path.dirname(__file__)) DATABASES = { "default": { "ENGINE": "django.db.backends.sqlite3", - "NAME": "test" + "NAME": ".testdb" } }