mirror of
https://github.com/explosion/spaCy.git
synced 2024-11-11 04:08:09 +03:00
28 lines
424 B
YAML
28 lines
424 B
YAML
language: python
|
|
|
|
sudo: required
|
|
dist: precise
|
|
group: edge
|
|
|
|
python:
|
|
- "2.7"
|
|
- "3.4"
|
|
|
|
os:
|
|
- linux
|
|
|
|
env:
|
|
- PIP_DATE=2015-01-01
|
|
|
|
install:
|
|
- python pip-date.py $PIP_DATE pip setuptools wheel six
|
|
- pip list
|
|
- pip install -r requirements.txt
|
|
- python setup.py sdist
|
|
- pip install dist/*
|
|
|
|
script:
|
|
- mkdir tmp; cd tmp
|
|
- python -m spacy.en.download
|
|
- python -m pytest ../spacy/ -x --models --vectors --slow
|