Skip to content

Commit aba519c

Browse files
committed
Skip test for swarm
1 parent 5b213be commit aba519c

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

src/test/java/com/github/dockerjava/core/command/EventsCmdImplTest.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,8 @@ public void testEventStreamTimeBound() throws Exception {
7878

7979
@Test
8080
public void testEventStreaming() throws Exception {
81+
if (isSwarm(dockerClient)) throw new SkipException("FIXME Swarm");
82+
8183
// Don't include other tests events
8284
TimeUnit.SECONDS.sleep(1);
8385

src/test/java/com/github/dockerjava/netty/exec/EventsCmdExecTest.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,8 @@ public void testEventStreamTimeBound() throws Exception {
7575

7676
@Test
7777
public void testEventStreaming() throws Exception {
78+
if (isSwarm(dockerClient)) throw new SkipException("FIXME Swarm");
79+
7880
// Don't include other tests events
7981
TimeUnit.SECONDS.sleep(1);
8082

0 commit comments

Comments
 (0)