Call t.Parallel() after t.Skip() to avoid confusion while debugging.

pull/3314/head
Thomas Stromberg 2018-11-07 16:40:21 -08:00
parent c9abdf46a7
commit 1b254773ef
1 changed files with 2 additions and 1 deletions

View File

@ -34,13 +34,14 @@ import (
)
func testMounting(t *testing.T) {
t.Parallel()
if runtime.GOOS == "darwin" {
t.Skip("mount tests disabled in darwin due to timeout (issue#3200)")
}
if strings.Contains(*args, "--vm-driver=none") {
t.Skip("skipping test for none driver as it does not need mount")
}
t.Parallel()
minikubeRunner := NewMinikubeRunner(t)
tempDir, err := ioutil.TempDir("", "mounttest")