From e7c74a95e998f4918cc2c7639916b0bf0daf3b48 Mon Sep 17 00:00:00 2001 From: Zack Cerza Date: Tue, 12 Apr 2022 12:32:12 -0600 Subject: [PATCH] bootstrap: Drop pyc removal We stopped writing these files years ago. Signed-off-by: Zack Cerza --- bootstrap | 3 --- 1 file changed, 3 deletions(-) diff --git a/bootstrap b/bootstrap index 6ad7cda87a..394dbb0b9d 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]'} -- 2.39.5