mirror of
https://github.com/django-helpdesk/django-helpdesk.git
synced 2025-01-18 20:08:33 +01:00
commit
ea9b772f35
11
.travis.yml
11
.travis.yml
@ -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
|
||||
|
@ -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.'),
|
||||
)
|
||||
|
||||
|
@ -22,6 +22,7 @@ class QuickDjangoTest(object):
|
||||
'django.contrib.admin',
|
||||
'django.contrib.staticfiles',
|
||||
'django.contrib.messages',
|
||||
'bootstrapform',
|
||||
)
|
||||
|
||||
def __init__(self, *args, **kwargs):
|
||||
|
Loading…
Reference in New Issue
Block a user