Adds MySQL to the test runner.

This commit is contained in:
Bertrand Bordage 2014-09-29 22:30:06 +02:00
parent 991bdc7ea0
commit a8d9c4faa8

View file

@ -20,6 +20,11 @@ DATABASES = {
'HOST': 'localhost',
'PORT': '5432',
},
'mysql': {
'ENGINE': 'django.db.backends.mysql',
'NAME': 'cachalot',
'USER': 'root',
},
}