Commit f100e698 by benjaoming

Remove Python 3.2 testing because South migrations arent running

...and they probably never will. Assuming that 0.0.24 will support Python 3.3+.
parent 99c8d6b8
...@@ -2,7 +2,8 @@ language: python ...@@ -2,7 +2,8 @@ language: python
python: python:
- "2.6" - "2.6"
- "2.7" - "2.7"
- "3.2" # Python 3.2 support removed as South migrations wont run
# - "3.2"
- "3.3" - "3.3"
env: env:
# Django 1.4 support is dumped because of introduction of python3 support # Django 1.4 support is dumped because of introduction of python3 support
...@@ -14,15 +15,13 @@ install: ...@@ -14,15 +15,13 @@ install:
- pip install $DJANGO -r requirements.txt - pip install $DJANGO -r requirements.txt
matrix: matrix:
exclude: exclude:
# Python 2.6 support has been dropped in Django 1.7 # Invalid example left to fill in the exclude block.
#- python: "2.6" - python: "2.0"
# env: DJANGO="Django>=1.7,<1.8" env: DJANGO="Django>=2000.0"
# Support for python 3 was added in Django 1.5 # Python 3.2, migrations are broken with South so we should take care not to include
#- python: "3.3" # it when adding 1.7 support
# env: DJANGO="Django>=1.4,<1.5" #- python: "3.2"
# Example left, although not in use. # env: DJANGO="Django>=1.7"
- python: "3.2"
env: DJANGO="Django>=1.4,<1.5"
# command to run tests # command to run tests
script: script:
- cd testproject ; python -W error:"":"":0 manage.py test wiki --settings=testproject.settings.travis --traceback - cd testproject ; python -W error:"":"":0 manage.py test wiki --settings=testproject.settings.travis --traceback
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment