mirror of
https://github.com/explosion/spaCy.git
synced 2024-11-13 13:17:06 +03:00
36 lines
862 B
YAML
36 lines
862 B
YAML
language: python
|
|
|
|
sudo: required
|
|
dist: trusty
|
|
group: edge
|
|
|
|
python:
|
|
- "2.7"
|
|
- "3.4"
|
|
|
|
os:
|
|
- linux
|
|
|
|
install:
|
|
- "pip install -r requirements.txt"
|
|
- "pip install -e ."
|
|
- "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 ../../"
|
|
- "python bin/init_model.py en lang_data/ corpora/ data"
|
|
- "cp package.json data"
|
|
- "sputnik build data en_default.sputnik"
|
|
- "sputnik --name spacy install en_default.sputnik"
|
|
|
|
script:
|
|
- "pip install pytest"
|
|
- "python -m pytest spacy"
|
|
|
|
notifications:
|
|
slack:
|
|
secure: F8GvqnweSdzImuLL64TpfG0i5rYl89liyr9tmFVsHl4c0DNiDuGhZivUz0M1broS8svE3OPOllLfQbACG/4KxD890qfF9MoHzvRDlp7U+RtwMV/YAkYn8MGWjPIbRbX0HpGdY7O2Rc9Qy4Kk0T8ZgiqXYIqAz2Eva9/9BlSmsJQ=
|
|
email: false
|