From c4f88c73bebd6e7b7c25b05cd113343cb9ac5b5c Mon Sep 17 00:00:00 2001 From: Jason Ward Date: Fri, 5 Jul 2019 15:57:22 -0400 Subject: [PATCH] Lets see if that will get tests working in python3 on travis. --- example/settings.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/example/settings.py b/example/settings.py index 5f559e0..f45eb90 100644 --- a/example/settings.py +++ b/example/settings.py @@ -18,6 +18,10 @@ DATABASES = { 'PASSWORD': '', 'HOST': '', 'PORT': '', + 'TEST': { + 'NAME': os.path.join(PROJECT_ROOT, 'example.db'), + 'ENGINE': 'django.db.backends.sqlite3', + }, } }