Fix fab test

This commit is contained in:
Matthew Honnibal 2018-02-28 02:22:57 +01:00
parent eaef36e4a5
commit c5bc0eadc8

3
fabfile.py vendored
View File

@ -81,4 +81,5 @@ def clean():
def test(): def test():
with lcd(path.dirname(__file__)): with lcd(path.dirname(__file__)):
with virtualenv(VENV_DIR) as venv_local: with virtualenv(VENV_DIR) as venv_local:
venv_local('py.test -x spacy/tests') venv_local('pip install pytest')
venv_local('pytest -x spacy/tests')