mirror of
https://github.com/explosion/spaCy.git
synced 2024-11-10 19:57:17 +03:00
25 lines
352 B
YAML
25 lines
352 B
YAML
language: python
|
|
|
|
sudo: required
|
|
dist: trusty
|
|
group: edge
|
|
|
|
python:
|
|
- "2.7"
|
|
- "3.5"
|
|
|
|
os:
|
|
- linux
|
|
|
|
env:
|
|
- VIA="pypi"
|
|
- VIA="compile"
|
|
|
|
install:
|
|
- "travis.sh"
|
|
|
|
script:
|
|
- "pip install pytest"
|
|
- if [[ "${VIA}" == "compile" ]]; then SPACY_DATA=models/en python -m pytest spacy; fi
|
|
- if [[ "${VIA}" == "pip" ]]; then python -m pytest spacy
|