Skip to content

Commit

Permalink
fix .travis.yml syntax errors
Browse files Browse the repository at this point in the history
  • Loading branch information
danvk committed Feb 26, 2015
1 parent 2f1ae88 commit 59ecbad
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ install:

# Only track coverage using the 2.7 job
script:
- if [[ $TRAVIS_PYTHON_VERSION != 2.7 ]]; then nosetests
- if [[ $TRAVIS_PYTHON_VERSION == 2.7 ]]; then nosetests --with-coverage
- if [[ $TRAVIS_PYTHON_VERSION != 2.7 ]]; then nosetests; fi
- if [[ $TRAVIS_PYTHON_VERSION == 2.7 ]]; then nosetests --with-coverage; fi

after_success:
- if [[ $TRAVIS_PYTHON_VERSION == 2.7 ]]; then coveralls
- if [[ $TRAVIS_PYTHON_VERSION == 2.7 ]]; then coveralls; fi

sudo: false

0 comments on commit 59ecbad

Please sign in to comment.