Update travis CI file to test agains different databases, add travis DB setting files

This commit is contained in:
Roberto Rosario
2015-01-05 02:29:58 -04:00
parent 554ea3eb63
commit 580e5e002f
4 changed files with 33 additions and 1 deletions

View File

@@ -0,0 +1,11 @@
from __future__ import absolute_import
from .. import *
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.postgresql_psycopg2',
'NAME': 'mayan_edms',
'USER': 'postgres',
}
}