* Fix test-running for pypy

This commit is contained in:
Matthew Honnibal 2015-01-05 19:31:40 +11:00
parent 3306ae1488
commit aa7a806710
1 changed files with 3 additions and 1 deletions

View File

@ -10,4 +10,6 @@ install:
- "pip install spacy"
- "rm -rf spacy/"
# command to run tests
script: "py.test tests/"
script:
- if [[ $TRAVIS_PYTHON_VERSION != 'pypy' ]]; then py.test tests/
- if [[ $TRAVIS_PYTHON_VERSION == 'pypy' ]]; then py.test-pypy tests/