Skip to content

Commit

Permalink
updated travis config file
Browse files Browse the repository at this point in the history
  • Loading branch information
silvanocerza committed Dec 1, 2016
1 parent dad4515 commit ea8faf5
Showing 1 changed file with 25 additions and 10 deletions.
35 changes: 25 additions & 10 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,19 +1,34 @@
# Config file for automatic testing at travis-ci.org

language: python

python:
- "3.3"
- "2.7"
- "3.5"

sudo: false

env:
- TOXENV=py27-django18
- TOXENV=py27-django19
- TOXENV=py27-django110
- TOXENV=py27-djangomaster
- TOXENV=py32-django18
- TOXENV=py33-django18
- TOXENV=py34-django18
- TOXENV=py34-django19
- TOXENV=py34-django110
- TOXENV=py34-djangomaster
- TOXENV=py35-django18
- TOXENV=py35-django19
- TOXENV=py35-django110
- TOXENV=py35-djangomaster

matrix:
fast_finish: true

# command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors
install:
- pip install -r requirements-test.txt
- pip install tox "virtualenv<14"
- pip install coveralls

# command to run tests, e.g. python setup.py test
script:
- coverage run -a runtests.py
- tox

after_success:
after_script:
- coveralls

0 comments on commit ea8faf5

Please sign in to comment.