Skip to content

Commit

Permalink
removed python 3.2 and 3.3 from travis
Browse files Browse the repository at this point in the history
  • Loading branch information
John Furr authored and John Furr committed Dec 4, 2015
1 parent 09efefe commit feb6ddf
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
# Travis build script for django-mongolog
#
# Support for python 3.2 and 3.3 discontinued because django officially dropped support in 1.8
# https://docs.djangoproject.com/en/1.9/releases/1.9/#django-1-9-release-notes
language: python
python:
# - "2.6"
# - "2.6" # Just to old to support
- "2.7"
- "3.2"
- "3.3"
- "3.4"
- "3.5"
# - "3.5-dev" # 3.5 development branch
Expand All @@ -19,8 +21,8 @@ install:
- pip install coveralls
- pip install pymongo==$PYMONGO_VERSION
# command to run tests
#script: coverage run --source=./ manage.py test
script: python manage.py test
script: coverage run --source=./ manage.py test
#script: python manage.py test
after_success:
- coverage report
- coveralls

0 comments on commit feb6ddf

Please sign in to comment.