spaCy/.travis.yml

25 lines
352 B
YAML
Raw Normal View History

2015-01-02 17:58:31 +03:00
language: python
2015-12-13 21:54:16 +03:00
sudo: required
2016-09-23 15:17:46 +03:00
dist: trusty
2015-12-13 21:54:16 +03:00
group: edge
2015-12-13 21:46:19 +03:00
2015-12-13 21:34:51 +03:00
python:
- "2.7"
2016-09-30 21:31:22 +03:00
- "3.5"
2015-12-13 21:34:51 +03:00
os:
- linux
2016-10-13 13:23:45 +03:00
env:
- VIA="pypi"
- VIA="compile"
2015-01-02 17:58:31 +03:00
install:
- "travis.sh"
2015-12-15 12:50:10 +03:00
2015-12-18 19:47:06 +03:00
script:
2016-02-09 21:29:23 +03:00
- "pip install pytest"
- if [[ "${VIA}" == "compile" ]]; then SPACY_DATA=models/en python -m pytest spacy; fi
- if [[ "${VIA}" == "pip" ]]; then python -m pytest spacy