spaCy/.travis.yml
2016-10-15 13:51:48 +02:00

27 lines
620 B
YAML

language: python
sudo: false
dist: trusty
group: edge
python:
- "2.7"
- "3.5"
os:
- linux
env:
- VIA="pypi"
- VIA="compile"
- VIA="sdist"
install:
- "./travis.sh"
script:
- "pip install pytest"
- if [[ "${VIA}" == "compile" ]]; then SPACY_DATA=models/en python -m pytest spacy; fi
- if [[ "${VIA}" == "pypi" ]]; then python -m pytest `python -c "import pathlib; import spacy; print(pathlib.Path(spacy.__file__).parent.resolve())"`; fi
- if [[ "${VIA}" == "sdist" ]]; then python -m pytest `python -c "import pathlib; import spacy; print(pathlib.Path(spacy.__file__).parent.resolve())"`; fi