spaCy/.travis.yml
2015-06-08 01:27:08 +02:00

22 lines
286 B
YAML

language: python
os:
- linux
- osx
python:
- "2.7"
- "3.4"
# install dependencies
install:
- "pip install --upgrade setuptools"
- "rm -rf spacy/"
- "pip install spacy"
# run tests
script:
- py.test tests/tokenizer/
- py.test tests/vocab/
- py.test tests/tagger/