Install pytest-timeout in travis

This commit is contained in:
Matthew Honnibal 2017-04-07 17:06:18 +02:00
parent 83dca920d4
commit 2dc0d28cc4

View File

@ -21,7 +21,7 @@ install:
- "./travis.sh"
script:
- "pip install pytest"
- "pip install pytest pytest-timeout"
- if [[ "${VIA}" == "compile" ]]; then python -m pytest --tb=native spacy; fi
- if [[ "${VIA}" == "pypi" ]]; then python -m pytest --tb=native `python -c "import os.path; import spacy; print(os.path.abspath(ospath.dirname(spacy.__file__)))"`; fi
- if [[ "${VIA}" == "sdist" ]]; then python -m pytest --tb=native `python -c "import os.path; import spacy; print(os.path.abspath(os.path.dirname(spacy.__file__)))"`; fi