Merge pull request #39575 from thaJeztah/fix_TestHealthKillContainer

Skip TestHealthKillContainer on Windows
This commit is contained in:
Michael Crosby 2019-07-19 14:52:24 -04:00 committed by GitHub
commit 943129ed86
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 0 deletions

View File

@ -36,6 +36,7 @@ func TestHealthCheckWorkdir(t *testing.T) {
// GitHub #37263
// Do not stop healthchecks just because we sent a signal to the container
func TestHealthKillContainer(t *testing.T) {
skip.If(t, testEnv.OSType == "windows", "Windows only supports SIGKILL and SIGTERM? See https://github.com/moby/moby/issues/39574")
defer setupTest(t)()
ctx := context.Background()