We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 106793d + e80f86b commit 32d1a6cCopy full SHA for 32d1a6c
integration-cli/docker_cli_stats_test.go
@@ -97,7 +97,10 @@ func (s *DockerSuite) TestStatsAllNoStream(c *check.C) {
97
98
func (s *DockerSuite) TestStatsAllNewContainersAdded(c *check.C) {
99
// Windows does not support stats
100
- testRequires(c, DaemonIsLinux)
+ // TODO: remove SameHostDaemon
101
+ // The reason it was added is because, there seems to be some race that makes this test fail
102
+ // for remote daemons (namely in the win2lin CI). We highly welcome contributions to fix this.
103
+ testRequires(c, DaemonIsLinux, SameHostDaemon)
104
105
id := make(chan string)
106
addedChan := make(chan struct{})
0 commit comments