mirror of https://github.com/databricks/cli.git
do not run TestInprocessMode on windows
This commit is contained in:
parent
92273bb86d
commit
6c0ed40d1f
|
@ -61,7 +61,11 @@ func TestInprocessMode(t *testing.T) {
|
||||||
if InprocessMode {
|
if InprocessMode {
|
||||||
t.Skip("Already tested by TestAccept")
|
t.Skip("Already tested by TestAccept")
|
||||||
}
|
}
|
||||||
t.Setenv("TERM", "dumb")
|
if runtime.GOOS == "windows" {
|
||||||
|
// - catalogs A catalog is the first layer of Unity Catalog’s three-level namespace.
|
||||||
|
// + catalogs A catalog is the first layer of Unity Catalog<6F>s three-level namespace.
|
||||||
|
t.Skip("Fails on CI on unicode characters")
|
||||||
|
}
|
||||||
require.NotZero(t, testAccept(t, true, "help"))
|
require.NotZero(t, testAccept(t, true, "help"))
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue