From 60f0a7b89d57f1b47993137945fa84a9fe0249ce Mon Sep 17 00:00:00 2001 From: Zack Cerza Date: Mon, 17 Apr 2017 18:19:55 -0600 Subject: [PATCH] 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 --- bootstrap | 3 +++ 1 file changed, 3 insertions(+) diff --git a/bootstrap b/bootstrap index 8ff15aa25..ff5705568 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 -- 2.47.3