spaCy/.travis.yml

21 lines
350 B
YAML
Raw Normal View History

2015-01-02 17:58:31 +03:00
language: python
os:
- linux
- osx
2015-01-02 17:58:31 +03:00
python:
- "2.7"
- "3.4"
2015-01-03 14:03:41 +03:00
2015-01-02 17:58:31 +03:00
# command to install dependencies
install:
2015-01-03 13:51:58 +03:00
- "pip install --upgrade setuptools"
- "pip install -r requirements.txt"
2015-01-30 11:48:34 +03:00
- "export PYTHONPATH=`pwd`"
- "python setup.py build_ext --inplace"
2015-01-31 05:50:30 +03:00
- "python -m spacy.en.download all"
2015-01-02 17:58:31 +03:00
# command to run tests
2015-01-05 11:31:40 +03:00
script:
- py.test tests/