mirror of
https://github.com/explosion/spaCy.git
synced 2024-11-10 19:57:17 +03:00
20 lines
290 B
YAML
20 lines
290 B
YAML
language: python
|
|
|
|
os:
|
|
- linux
|
|
- osx
|
|
|
|
python:
|
|
- "2.7"
|
|
- "3.4"
|
|
|
|
# install dependencies
|
|
install:
|
|
- "pip install --upgrade setuptools"
|
|
- "pip install -r requirements.txt"
|
|
- "export PYTHONPATH=`pwd`"
|
|
- "python setup.py build_ext --inplace"
|
|
# run tests
|
|
script:
|
|
- py.test tests/
|