2015-01-02 14:58:31 +00:00
|
|
|
language: python
|
2015-01-05 17:00:10 +00:00
|
|
|
|
2015-12-13 18:54:16 +00:00
|
|
|
sudo: required
|
|
|
|
dist: precise
|
|
|
|
group: edge
|
2015-12-13 18:46:19 +00:00
|
|
|
|
2015-12-13 18:34:51 +00:00
|
|
|
python:
|
|
|
|
- "2.7"
|
|
|
|
- "3.4"
|
|
|
|
|
2015-01-05 17:00:10 +00:00
|
|
|
os:
|
|
|
|
- linux
|
|
|
|
|
2015-12-14 06:28:07 +00:00
|
|
|
env:
|
2015-12-14 18:43:16 +00:00
|
|
|
- DATE=2015-01-01
|
2015-12-14 06:28:07 +00:00
|
|
|
|
2015-01-02 14:58:31 +00:00
|
|
|
install:
|
2015-12-14 18:43:16 +00:00
|
|
|
- python pip-date.py $DATE
|
|
|
|
- pip list
|
2015-12-13 18:40:44 +00:00
|
|
|
- pip install -r requirements.txt
|
2015-12-13 18:54:16 +00:00
|
|
|
- python setup.py sdist
|
|
|
|
- pip install dist/*
|
2015-06-07 18:47:45 +00:00
|
|
|
|
2015-01-05 08:31:40 +00:00
|
|
|
script:
|
2015-12-13 19:30:51 +00:00
|
|
|
- mkdir tmp; cd tmp
|
2015-12-13 18:34:51 +00:00
|
|
|
- python -m spacy.en.download
|
2015-12-13 19:40:38 +00:00
|
|
|
- python -m pytest ../spacy/ -x --models --vectors --slow
|