From 40ccc2d100f3be4f5204b5c415dd4e137d8e016e Mon Sep 17 00:00:00 2001 From: Johannes Schindelin Date: Fri, 12 Jun 2026 16:38:32 +0200 Subject: [PATCH] fixup! ci: only run the expensive tests in the Windows tests for now Now that -rc0 is out and no longer adding pressure, let's _actually_ re-enable the expensive tests on Windows. Signed-off-by: Johannes Schindelin --- ci/lib.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/lib.sh b/ci/lib.sh index 6cad9767717c58..848d77d8a455fe 100755 --- a/ci/lib.sh +++ b/ci/lib.sh @@ -321,7 +321,7 @@ export SKIP_DASHED_BUILT_INS=YesPlease # enable the long tests for pushes to the integration branches as well. test -z "$MSYSTEM" || case "$GITHUB_EVENT_NAME,$CI_BRANCH" in -pull_request,*|push,*next*|push,*master*|push,*maint*) +pull_request,*|push,*next*|push,*master*|push,*main*|push,*maint*) export GIT_TEST_LONG=YesPlease ;; esac