From 97f87d2544de171d8ff0da2b46c762a0bf6261ab Mon Sep 17 00:00:00 2001 From: Denis Bilenko Date: Wed, 5 Mar 2025 10:45:45 +0100 Subject: [PATCH] rm -short support; not a big win with parallel runs --- libs/patchwheel/patch_test.go | 19 ++++++------------- 1 file changed, 6 insertions(+), 13 deletions(-) diff --git a/libs/patchwheel/patch_test.go b/libs/patchwheel/patch_test.go index 5c6873e47..13b89d832 100644 --- a/libs/patchwheel/patch_test.go +++ b/libs/patchwheel/patch_test.go @@ -29,19 +29,12 @@ func getPythonScriptsDir() string { } func getPythonVersions() []string { - if testing.Short() { - return []string{ - "python3.9", - "python3.12", - } - } else { - return []string{ - "python3.9", - "python3.10", - "python3.11", - "python3.12", - "python3.13", - } + return []string{ + "python3.9", + "python3.10", + "python3.11", + "python3.12", + "python3.13", } }