Skip to content

Commit

Permalink
Add hack to make pypy on travis not segfault
Browse files Browse the repository at this point in the history
  • Loading branch information
cyli committed Jan 7, 2014
1 parent fa83b75 commit 1dbf2d6
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,12 @@ install:
- pip install -r requirements.txt
- pip install coveralls

# TODO: without this, the travis version of pypy segfaults when running
# coverage run `which trial` silverberg. This (before_script) can be removed
# once the bug has been tracked down and fixed
before_script:
- if [[ $TRAVIS_PYTHON_VERSION == 'pypy' ]]; then coverage run || true; fi

script:
- make lint
- coverage run `which trial` silverberg
Expand Down

0 comments on commit 1dbf2d6

Please sign in to comment.