From 3656f06e35dac681b736644692bc04534a5dd932 Mon Sep 17 00:00:00 2001 From: Matthew Honnibal Date: Tue, 3 Nov 2015 06:39:30 +0100 Subject: [PATCH] * Don't use models in fab test --- fabfile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fabfile.py b/fabfile.py index 8f0097615..f7eac3f28 100644 --- a/fabfile.py +++ b/fabfile.py @@ -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):