Skip to content

Commit

Permalink
travis.yml: Don't run coverage under PyPy which causes timeouts.
Browse files Browse the repository at this point in the history
  • Loading branch information
chfoo committed Sep 15, 2014
1 parent 551d099 commit e9e5eef
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,14 @@ install:

# command to run tests
script:
- nosetests --with-coverage --cover-package=wpull --cover-branches
- if [[ $TRAVIS_PYTHON_VERSION != 'pypy3' ]]; then
nosetests --with-coverage --cover-package=wpull --cover-branches;
else
nosetests;
fi


after_success:
- coveralls
- if [[ $TRAVIS_PYTHON_VERSION != 'pypy3' ]]; then
coveralls;
fi

0 comments on commit e9e5eef

Please sign in to comment.