mirror of
https://github.com/explosion/spaCy.git
synced 2024-11-11 04:08:09 +03:00
22 lines
286 B
YAML
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/
|