mirror of https://github.com/databricks/cli.git
rm -short support; not a big win with parallel runs
This commit is contained in:
parent
d7daebfba0
commit
97f87d2544
|
@ -29,19 +29,12 @@ func getPythonScriptsDir() string {
|
||||||
}
|
}
|
||||||
|
|
||||||
func getPythonVersions() []string {
|
func getPythonVersions() []string {
|
||||||
if testing.Short() {
|
return []string{
|
||||||
return []string{
|
"python3.9",
|
||||||
"python3.9",
|
"python3.10",
|
||||||
"python3.12",
|
"python3.11",
|
||||||
}
|
"python3.12",
|
||||||
} else {
|
"python3.13",
|
||||||
return []string{
|
|
||||||
"python3.9",
|
|
||||||
"python3.10",
|
|
||||||
"python3.11",
|
|
||||||
"python3.12",
|
|
||||||
"python3.13",
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue