From 60567ae646607ef47172a65f9cbce0eb00f9dff6 Mon Sep 17 00:00:00 2001 From: Matthew Honnibal Date: Tue, 27 Feb 2018 23:42:22 +0100 Subject: [PATCH] Install pytest if necessary in fabfile --- fabfile.py | 1 + 1 file changed, 1 insertion(+) diff --git a/fabfile.py b/fabfile.py index 814337a77..c6c636639 100644 --- a/fabfile.py +++ b/fabfile.py @@ -77,4 +77,5 @@ 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')