Skip to content

Commit

Permalink
Fix .travis.yml syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
jonashaag committed Sep 29, 2015
1 parent f033141 commit bcb6e80
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,27 +6,27 @@ python:
- "3.3"
- "3.4"
env:
- DJANGO=django>=1.4,<1.5
- DJANGO=django>=1.5,<1.6
- DJANGO=django>=1.6,<1.7
- DJANGO=django>=1.7,<1.8
- DJANGO=django>=1.8,<1.9
- DJANGO=">=1.4,<1.5"
- DJANGO=">=1.5,<1.6"
- DJANGO=">=1.6,<1.7"
- DJANGO=">=1.7,<1.8"
- DJANGO=">=1.8,<1.9"

matrix:
exclude:
- python: "3.4"
env: DJANGO=django>=1.4,<1.5
env: DJANGO=">=1.4,<1.5"
- python: "3.3"
env: DJANGO=django>=1.4,<1.5
env: DJANGO=">=1.4,<1.5"
- python: "3.2"
env: DJANGO=django>=1.4,<1.5
env: DJANGO=">=1.4,<1.5"
- python: "2.6"
env: DJANGO=django>=1.7,<1.8
env: DJANGO=">=1.7,<1.8"
- python: "2.6"
env: DJANGO=django>=1.8,<1.9
env: DJANGO=">=1.8,<1.9"

install:
- pip install $DJANGO coverage==3.6
- pip install django$DJANGO coverage==3.6

script:
- coverage run --source=polymorphic runtests.py
Expand Down

0 comments on commit bcb6e80

Please sign in to comment.