* Ensure the fabfile prebuild command installs pytest

This commit is contained in:
Matthew Honnibal 2015-10-09 20:57:47 +11:00
parent 599f739ddb
commit 3bf50ab830

2
fabfile.py vendored
View File

@ -47,7 +47,7 @@ def prebuild(build_dir='/tmp/build_spacy'):
local('git clone %s .' % spacy_dir)
local('virtualenv ' + build_venv)
with prefix('cd %s && PYTHONPATH=`pwd` && . %s/bin/activate' % (build_dir, build_venv)):
local('pip install cython fabric fabtools')
local('pip install cython fabric fabtools pytest')
local('pip install -r requirements.txt')
local('fab clean make')
local('cp -r %s/corpora/en/wordnet corpora/en/' % spacy_dir)