spaCy/.travis.yml

20 lines
316 B
YAML
Raw Normal View History

2015-01-02 14:58:31 +00:00
language: python
os:
- linux
- osx
2015-01-02 14:58:31 +00:00
python:
- "2.7"
- "3.4"
2015-01-03 11:03:41 +00:00
2015-01-02 14:58:31 +00:00
# command to install dependencies
install:
2015-01-03 10:51:58 +00:00
- "pip install --upgrade setuptools"
- "pip install -r requirements.txt"
- "python setup.py build_ext --inplace"
- "python -m spacy.en.download"
2015-01-02 14:58:31 +00:00
# command to run tests
2015-01-05 08:31:40 +00:00
script:
- py.test tests/