Fix missing bits of test

Travis will now grab the newest point releases of Django, including 1.6.5

Also added 'bootstrapform' to test settings to reduce failing tests to actual bugs
This commit is contained in:
Matt Molyneaux 2014-06-05 00:42:58 +01:00
parent 2a257c6407
commit a99f444e96
2 changed files with 5 additions and 3 deletions

View File

@ -3,9 +3,10 @@ python:
- "2.6"
- "2.7"
env:
- DJANGO=1.4.3
- DJANGO=1.3.5
- DJANGO=1.5.0
- DJANGO=1.3.7
- DJANGO=1.4.13
- DJANGO=1.5.8
- DJANGO=1.6.5
install:
- pip install argparse --use-mirrors
- pip install -q Django==$DJANGO --use-mirrors

View File

@ -22,6 +22,7 @@ class QuickDjangoTest(object):
'django.contrib.admin',
'django.contrib.staticfiles',
'django.contrib.messages',
'bootstrapform',
)
def __init__(self, *args, **kwargs):