* Fix test command in fabfile

This commit is contained in:
Matthew Honnibal 2015-11-03 05:32:18 +01:00
parent 5668feb235
commit bb5598b816

3
fabfile.py vendored
View File

@ -121,9 +121,8 @@ def clean():
def test():
with virtualenv(VENV_DIR):
# Run each test file separately. pytest is performing poorly, not sure why
with lcd(path.dirname(__file__)):
local('py.test -x tests/')
local('py.test -x --models spacy/tests')
def train(json_dir=None, dev_loc=None, model_dir=None):