From 598cf7d79ba5efa01bdf7eeae909dda03b2b9ca0 Mon Sep 17 00:00:00 2001 From: Adrien Lemaire Date: Wed, 24 Apr 2019 12:55:22 +0900 Subject: [PATCH] chore: ignore db file generated by make_migration --- .gitignore | 1 + test_settings.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) 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" } }