spaCy/.travis.yml

27 lines
455 B
YAML
Raw Normal View History

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