From a8d9c4faa86ccd31b7bde627102043547321b3fa Mon Sep 17 00:00:00 2001 From: Bertrand Bordage Date: Mon, 29 Sep 2014 22:30:06 +0200 Subject: [PATCH] Adds MySQL to the test runner. --- runtests.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/runtests.py b/runtests.py index 28e2eb7..a1238e1 100755 --- a/runtests.py +++ b/runtests.py @@ -20,6 +20,11 @@ DATABASES = { 'HOST': 'localhost', 'PORT': '5432', }, + 'mysql': { + 'ENGINE': 'django.db.backends.mysql', + 'NAME': 'cachalot', + 'USER': 'root', + }, }