mirror of
https://github.com/explosion/spaCy.git
synced 2024-11-11 04:08:09 +03:00
23 lines
397 B
YAML
23 lines
397 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 -p corpora/en"
|
|
- "python bin/init_model.py lang_data/en corpora/en spacy/en/data"
|
|
|
|
# run tests
|
|
script:
|
|
- py.test tests/
|