rm -short support; not a big win with parallel runs

This commit is contained in:
Denis Bilenko 2025-03-05 10:45:45 +01:00
parent d7daebfba0
commit 97f87d2544
1 changed files with 6 additions and 13 deletions

View File

@ -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",
}
}