From 7de4e130898fc1cf74f8c4fec24416c3f7d3589b Mon Sep 17 00:00:00 2001 From: Vikram bir Singh Date: Tue, 17 Sep 2019 22:10:54 +0000 Subject: [PATCH] Disable TestPsListContainersFilterExited (Windows) On account of being flaky on both RS1 and RS5. Co-Authored-By: Sebastiaan van Stijn Signed-off-by: Vikram bir Singh --- integration-cli/docker_cli_ps_test.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/integration-cli/docker_cli_ps_test.go b/integration-cli/docker_cli_ps_test.go index 1bbf530744..7a3963d3b0 100644 --- a/integration-cli/docker_cli_ps_test.go +++ b/integration-cli/docker_cli_ps_test.go @@ -436,6 +436,10 @@ func (s *DockerSuite) TestPsListContainersFilterLabel(c *testing.T) { } func (s *DockerSuite) TestPsListContainersFilterExited(c *testing.T) { + // TODO Flaky on Windows CI [both RS1 and RS5] + // On slower machines the container may not have exited + // yet when we filter below by exit status/exit value. + skip.If(c, DaemonIsWindows(), "FLAKY on Windows, see #20819") runSleepingContainer(c, "--name=sleep") firstZero, _ := dockerCmd(c, "run", "-d", "busybox", "true")