Add support to test agains Oracle via Docker.

Signed-off-by: Roberto Rosario <roberto.rosario.gonzalez@gmail.com>
This commit is contained in:
Roberto Rosario
2017-07-22 04:40:53 -04:00
parent 906e2e36a6
commit 22bb93ec13
3 changed files with 34 additions and 1 deletions

View File

@@ -0,0 +1,14 @@
from __future__ import unicode_literals
from .base import * # NOQA
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.oracle',
'NAME': 'xe',
'USER': 'system',
'HOST': '127.0.0.1',
'PORT': '49161',
'PASSWORD': 'oracle',
}
}