2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-06-15 03:25:42 +00:00

Mysql fixes

This commit is contained in:
Oliver Walters
2021-03-31 17:34:12 +11:00
parent d09483f30c
commit 9e4218d02f
2 changed files with 5 additions and 5 deletions

View File

@ -12,8 +12,8 @@ if 'test' in sys.argv:
# Ensure mysql backend is being used
'ENGINE': 'django.db.backends.mysql',
'NAME': 'inventree_test_db',
'USER': 'travis',
'PASSWORD': '',
'USER': 'inventree',
'PASSWORD': 'password',
'HOST': '127.0.0.1'
'PORT': '3306',
}