Merge pull request #214 from Inboxen/testing-fixes

Testing fixes
This commit is contained in:
Ross Poulton 2014-06-06 10:17:18 +10:00
commit ea9b772f35
3 changed files with 8 additions and 5 deletions

View File

@ -3,10 +3,11 @@ python:
- "2.6"
- "2.7"
env:
- DJANGO=1.4.3
- DJANGO=1.3.5
- DJANGO=1.5.0
- 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
- pip install argparse
- pip install -q Django==$DJANGO
- pip install -q -r requirements.txt
script: python quicktest.py helpdesk

View File

@ -1194,6 +1194,7 @@ class CustomField(models.Model):
empty_selection_list = models.BooleanField(
_('Add empty first choice to List?'),
default=False,
help_text=_('Only for List: adds an empty first entry to the choices list, which enforces that the user makes an active choice.'),
)

View File

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