Fixed Windows CI: now systemd integration test is skipped on Windows

pull/1035/head
Aaron Prindle 2017-01-20 15:48:03 -08:00
parent e4df3abc6f
commit e9717abc78
1 changed files with 4 additions and 0 deletions

View File

@ -19,6 +19,7 @@ limitations under the License.
package integration
import (
"runtime"
"strings"
"testing"
@ -27,6 +28,9 @@ import (
func testVMSystemd(t *testing.T) {
t.Parallel()
if runtime.GOOS == "windows" {
t.Skip("skipping test in windows as it doesn't exit properly")
}
minikubeRunner := util.MinikubeRunner{
Args: *args,
BinaryPath: *binaryPath,