spaCy/.travis.yml
2015-07-23 02:38:14 +02:00

23 lines
394 B
YAML

language: python
os:
- linux
- osx
python:
- "2.7"
- "3.4"
# install dependencies
install:
- "pip install --upgrade setuptools"
- "pip install cython fabric fabtools"
- "pip install -r requirements.txt"
- "python setup.py build_ext --inplace"
- "mkdir corpora/en"
- "python bin/init_model.py lang_data/en corpora/en spacy/en/data"
# run tests
script:
- py.test tests/