From 7b983b24726ee1c40326333582ef4c6a2c5794db Mon Sep 17 00:00:00 2001 From: Matthew Honnibal Date: Mon, 5 Jan 2015 19:34:48 +1100 Subject: [PATCH] * Bash syntax is the worst... --- .travis.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index bb207fb9a..134dc7b7e 100644 --- a/.travis.yml +++ b/.travis.yml @@ -11,5 +11,5 @@ install: - "rm -rf spacy/" # command to run tests script: - - if [[ $TRAVIS_PYTHON_VERSION != 'pypy' ]]; then py.test tests/ - - if [[ $TRAVIS_PYTHON_VERSION == 'pypy' ]]; then py.test-pypy tests/ + - if [[ $TRAVIS_PYTHON_VERSION != 'pypy' ]]; then py.test tests/; fi + - if [[ $TRAVIS_PYTHON_VERSION == 'pypy' ]]; then py.test-pypy tests/; fi