From: Zack Cerza Date: Tue, 18 Apr 2017 00:19:55 +0000 (-0600) Subject: Run 'python setup.py develop' in bootstrap X-Git-Tag: 1.1.0~430^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=refs%2Fpull%2F1064%2Fhead;p=teuthology.git Run 'python setup.py develop' in bootstrap Our old wonky requirements.txt used to magically do this for us, but no longer. Signed-off-by: Zack Cerza --- diff --git a/bootstrap b/bootstrap index 8ff15aa2..ff570556 100755 --- a/bootstrap +++ b/bootstrap @@ -144,3 +144,6 @@ fi # Remove leftover .pyc files find teuthology -name '*.pyc' -exec rm {} \; + +# Install teuthology +./virtualenv/bin/python setup.py develop