From c5f992ad20590152a865b69e573edfebbb7326eb Mon Sep 17 00:00:00 2001 From: Alex Richardson Date: Sat, 20 Apr 2024 12:22:52 -0700 Subject: [PATCH] Don't run flake8 as part of the basic tests This script should only run tests to check that cheribuild still works rather than also running the linting. This made sense when we didn't have pre-commit enabled, but now pre-commit takes care of that. --- tests/run_basic_tests.sh | 3 --- 1 file changed, 3 deletions(-) diff --git a/tests/run_basic_tests.sh b/tests/run_basic_tests.sh index 2d03105d6..d7184da24 100755 --- a/tests/run_basic_tests.sh +++ b/tests/run_basic_tests.sh @@ -12,9 +12,6 @@ try_run_verbose() { fi } -# check for errors that would fail the GitHub CI: -try_run_verbose python3 -m flake8 - # check that there are no obvious mistakes: sh "$SCRIPT_DIR/run_smoke_tests.sh"