fix drone file so it works

This commit is contained in:
Oliver Marks 2017-01-08 18:10:47 +00:00
parent be559501e1
commit 5f1ec4e065
2 changed files with 5 additions and 0 deletions

View File

@ -4,6 +4,7 @@ pipeline:
environment: environment:
- POSTGRES_USER=mhackspace - POSTGRES_USER=mhackspace
- USE_DOCKER=yes - USE_DOCKER=yes
- DJANGO_SETTINGS_MODULE=config.settings.test
commands: commands:
- python manage.py test - python manage.py test

View File

@ -60,3 +60,7 @@ TEMPLATES[0]['OPTIONS']['loaders'] = [
'django.template.loaders.app_directories.Loader', 'django.template.loaders.app_directories.Loader',
]), ]),
] ]
DATABASES = {
'default': {'ENGINE': 'django.db.backends.sqlite3'}
}