Initial working test for run_launch_job task.

This commit is contained in:
Chris Church
2013-03-31 17:25:18 -04:00
parent b38cb80efa
commit c149f03119
7 changed files with 113 additions and 17 deletions

View File

@@ -52,7 +52,9 @@ REST_FRAMEWORK = {
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.sqlite3',
'NAME': os.path.join(BASE_DIR, 'acom.sqlite3'),
'NAME': os.path.join(BASE_DIR, 'acom.sqlite3'),
# Test database cannot be :memory: for celery/inventory tests to work.
'TEST_NAME': os.path.join(BASE_DIR, 'acom_test.sqlite3'),
}
}