mirror of
https://github.com/explosion/spaCy.git
synced 2024-11-10 19:57:17 +03:00
28 lines
612 B
YAML
28 lines
612 B
YAML
language: python
|
|
|
|
os:
|
|
- linux
|
|
|
|
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"
|
|
- "cd corpora/en"
|
|
- "wget --no-check-certificate http://wordnetcode.princeton.edu/3.0/WordNet-3.0.tar.gz"
|
|
- "tar -xzf WordNet-3.0.tar.gz"
|
|
- "mv WordNet-3.0 wordnet"
|
|
- "cd ../../"
|
|
- "export PYTHONPATH=`pwd`"
|
|
- "python bin/init_model.py en lang_data/ corpora/ spacy/en/data"
|
|
|
|
# run tests
|
|
script:
|
|
- "py.test spacy/ -x"
|