From 2990681955ff2d49402c4b081326b1dd7ffbafe2 Mon Sep 17 00:00:00 2001 From: Matthew Honnibal Date: Sat, 15 Oct 2016 02:29:25 +0200 Subject: [PATCH] Fix travis --- .travis.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 8da24be72..526231d46 100644 --- a/.travis.yml +++ b/.travis.yml @@ -22,5 +22,5 @@ install: script: - "pip install pytest" - if [[ "${VIA}" == "compile" ]]; then SPACY_DATA=models/en python -m pytest spacy; fi - - if [[ "${VIA}" == "pip" ]]; then py.test --pyargs spacy; fi - - if [[ "${VIA}" == "sdist" ]]; then py.test --pyargs spacy; fi + - if [[ "${VIA}" == "pip" ]]; then python -m pytest --pyargs spacy; fi + - if [[ "${VIA}" == "sdist" ]]; then python -m pytest --pyargs spacy; fi