From aa7a806710080e337d6d8fa90b7e070a2b5d43a9 Mon Sep 17 00:00:00 2001 From: Matthew Honnibal Date: Mon, 5 Jan 2015 19:31:40 +1100 Subject: [PATCH] * Fix test-running for pypy --- .travis.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index e075f507b..bb207fb9a 100644 --- a/.travis.yml +++ b/.travis.yml @@ -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/