mirror of
https://github.com/ansible/awx.git
synced 2026-02-14 01:34:45 -03:30
Fix an invalid database backend in unit test settings
This commit is contained in:
@@ -67,7 +67,7 @@ DATABASES = {
|
|||||||
if is_testing(sys.argv):
|
if is_testing(sys.argv):
|
||||||
DATABASES = {
|
DATABASES = {
|
||||||
'default': {
|
'default': {
|
||||||
'ENGINE': 'django.db.backends.sqlite3',
|
'ENGINE': 'transaction_hooks.backends.sqlite3',
|
||||||
'NAME': os.path.join(BASE_DIR, 'awx.sqlite3'),
|
'NAME': os.path.join(BASE_DIR, 'awx.sqlite3'),
|
||||||
'TEST': {
|
'TEST': {
|
||||||
# Test database cannot be :memory: for celery/inventory tests.
|
# Test database cannot be :memory: for celery/inventory tests.
|
||||||
|
|||||||
Reference in New Issue
Block a user