mirror of
https://github.com/explosion/spaCy.git
synced 2024-11-13 05:07:03 +03:00
11 lines
202 B
Python
11 lines
202 B
Python
|
from fabric.api import local, run, lcd, cd, env
|
||
|
|
||
|
def make():
|
||
|
local('python setup.py build_ext --inplace')
|
||
|
|
||
|
def clean():
|
||
|
local('python setup.py clean --all')
|
||
|
|
||
|
def test():
|
||
|
local('py.test -x')
|