* Don't use models in fab test

This commit is contained in:
Matthew Honnibal 2015-11-03 06:39:30 +01:00
parent bb5598b816
commit 3656f06e35

2
fabfile.py vendored
View File

@ -122,7 +122,7 @@ def clean():
def test():
with virtualenv(VENV_DIR):
with lcd(path.dirname(__file__)):
local('py.test -x --models spacy/tests')
local('py.test -x spacy/tests')
def train(json_dir=None, dev_loc=None, model_dir=None):