Fix travis

This commit is contained in:
Matthew Honnibal 2016-10-15 02:29:25 +02:00
parent bc6159f5d9
commit 2990681955
1 changed files with 2 additions and 2 deletions

View File

@ -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