Install pytest if necessary in fabfile

This commit is contained in:
Matthew Honnibal 2018-02-27 23:42:22 +01:00
parent fd816bbd1b
commit 60567ae646

1
fabfile.py vendored
View File

@ -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')