From bb5598b816767b1ed8d69fe420ed216d43ce5871 Mon Sep 17 00:00:00 2001 From: Matthew Honnibal Date: Tue, 3 Nov 2015 05:32:18 +0100 Subject: [PATCH] * Fix test command in fabfile --- fabfile.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/fabfile.py b/fabfile.py index 8def13386..8f0097615 100644 --- a/fabfile.py +++ b/fabfile.py @@ -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):