From 87747ca82018e88ebec0efc3f5a66a5e29de7903 Mon Sep 17 00:00:00 2001 From: Ed Santiago Date: Mon, 6 May 2024 09:53:58 -0600 Subject: [PATCH] Skip machine tests if they don't need to be run Followup to #13936 : add an exclusion to localmachine tests so we can avoid running those on test- or doc-only PRs. Reason: #22551, the machine-start-timeout flake, is causing hours of wasted time. Signed-off-by: Ed Santiago --- contrib/cirrus/runner.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/contrib/cirrus/runner.sh b/contrib/cirrus/runner.sh index 33a600b219d7..ddb3be81880e 100755 --- a/contrib/cirrus/runner.sh +++ b/contrib/cirrus/runner.sh @@ -412,7 +412,8 @@ dotest() { } _run_machine-linux() { - # N/B: Can't use _bail_if_test_can_be_skipped here b/c content isn't under test/ + _bail_if_test_can_be_skipped pkg/machine/e2e + showrun make localmachine |& logformatter }