From: Zack Cerza Date: Tue, 12 Apr 2022 18:32:12 +0000 (-0600) Subject: bootstrap: Drop pyc removal X-Git-Tag: 1.2.0~186^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=refs%2Fpull%2F1737%2Fhead;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 6ad7cda87..394dbb0b9 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]'}