fix travis settings
This commit is contained in:
parent
b674c84144
commit
a20417af0b
@ -8,7 +8,7 @@ env:
|
||||
- DJANGO_VERSION=1.3
|
||||
- DJANGO_VERSION=1.4
|
||||
install: pip install Django==$DJANGO_VERSION django-markupfield markdown docutils --use-mirrors
|
||||
script: django-admin.py test --settings=markupfield.tests.settings --pythonpath=.
|
||||
script: django-admin.py test --settings=example.settings --pythonpath=. markupwiki
|
||||
notifications:
|
||||
email:
|
||||
- james.p.turk@gmail.com
|
||||
|
@ -1,3 +1,5 @@
|
||||
import os
|
||||
|
||||
DEBUG = True
|
||||
TEMPLATE_DEBUG = DEBUG
|
||||
|
||||
@ -27,7 +29,7 @@ MIDDLEWARE_CLASSES = (
|
||||
|
||||
ROOT_URLCONF = 'example.urls'
|
||||
|
||||
TEMPLATE_DIRS = ( 'templates', )
|
||||
TEMPLATE_DIRS = ( os.path.join(os.path.dirname(__file__), 'templates'), )
|
||||
|
||||
INSTALLED_APPS = (
|
||||
'django.contrib.auth',
|
||||
|
Loading…
Reference in New Issue
Block a user