From 96021152703be9d449610b617a6391b82c7a546c Mon Sep 17 00:00:00 2001 From: Zack Cerza Date: Thu, 31 Mar 2022 17:32:43 -0400 Subject: [PATCH] bootstrap: Install 'test' extras So that we can use the 'tests' task. Signed-off-by: Zack Cerza --- bootstrap | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bootstrap b/bootstrap index 34a5c61040..968b91e02b 100755 --- a/bootstrap +++ b/bootstrap @@ -157,7 +157,7 @@ fi find teuthology -name '*.pyc' -exec rm {} \; # Install teuthology in editable mode -./$VENV/bin/pip install --editable . +./$VENV/bin/pip install --editable '.[test]' # Check to make sure requirements are met ./$VENV/bin/pip check -- 2.39.5