Skip to content

Commit

Permalink
Fix missing coverage dependency for Python 2.5
Browse files Browse the repository at this point in the history
  • Loading branch information
treyhunner committed Apr 12, 2013
1 parent 22b060e commit f3883d0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ env:
- DJANGO=Django==1.3.7 SOUTH=0

install:
- pip install $DJANGO --use-mirrors
- pip install coverage $DJANGO --use-mirrors
- sh -c "if [ '$SOUTH' = '1' ]; then pip install South==0.7.6; fi"
- sh -c "if [ '$COVERALLS' != '0' ]; then pip install coverage coveralls; fi"
- sh -c "if [ '$COVERALLS' != '0' ]; then pip install coveralls; fi"

script: coverage run -a --branch --include="simple_history/*" --omit="simple_history/tests/*" setup.py test

Expand Down

0 comments on commit f3883d0

Please sign in to comment.