From: Zack Cerza Date: Tue, 12 Apr 2022 18:32:12 +0000 (-0600) Subject: bootstrap: Drop pyc removal X-Git-Tag: 1.2.0~167^2~5 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=5695353e23b52b549c894b70ce317efa6ba8faec;p=teuthology.git bootstrap: Drop pyc removal We stopped writing these files years ago. Signed-off-by: Zack Cerza --- diff --git a/bootstrap b/bootstrap index a36a54cb4..24729e25d 100755 --- a/bootstrap +++ b/bootstrap @@ -149,9 +149,6 @@ fi # First, upgrade pip ./$VENV/bin/pip install --upgrade pip -# Remove leftover .pyc files -find teuthology -name '*.pyc' -exec rm {} \; - # By default, install teuthology in editable mode ./$VENV/bin/pip install ${PIP_INSTALL_FLAGS:---editable '.[test]'}