From 7ade5160ca8c8128bfe1476c14277179e6ecbfe4 Mon Sep 17 00:00:00 2001 From: Matthew Honnibal Date: Tue, 27 Feb 2018 23:48:00 +0100 Subject: [PATCH] Fix test command --- fabfile.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/fabfile.py b/fabfile.py index c6c636639..58f619eb8 100644 --- a/fabfile.py +++ b/fabfile.py @@ -77,5 +77,4 @@ def clean(): def test(): with lcd(path.dirname(__file__)): with virtualenv(VENV_DIR) as venv_local: - local('pip install pytest') - local('py.test -x spacy/tests') + venv_local('py.test -x spacy/tests')