From a06be4785f2c1ccfcbd549d73590ed32855d924b Mon Sep 17 00:00:00 2001 From: Fabian Wolter Date: Wed, 7 Jul 2021 20:06:06 +0200 Subject: [PATCH] Disable unstable tests (#10956) * Disable unstable tests Signed-off-by: Fabian Wolter --- .../internal/communicator/virtual/ButtonDatapointTest.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/bundles/org.openhab.binding.homematic/src/test/java/org/openhab/binding/homematic/internal/communicator/virtual/ButtonDatapointTest.java b/bundles/org.openhab.binding.homematic/src/test/java/org/openhab/binding/homematic/internal/communicator/virtual/ButtonDatapointTest.java index 8d46a391d..be58072c3 100644 --- a/bundles/org.openhab.binding.homematic/src/test/java/org/openhab/binding/homematic/internal/communicator/virtual/ButtonDatapointTest.java +++ b/bundles/org.openhab.binding.homematic/src/test/java/org/openhab/binding/homematic/internal/communicator/virtual/ButtonDatapointTest.java @@ -17,6 +17,7 @@ import static org.hamcrest.MatcherAssert.assertThat; import java.io.IOException; +import org.junit.Ignore; import org.junit.jupiter.api.BeforeEach; import org.junit.jupiter.api.Test; import org.openhab.binding.homematic.internal.misc.HomematicClientException; @@ -92,6 +93,7 @@ public class ButtonDatapointTest extends JavaTest { } @Test + @Ignore(value = "Test is unstable see #10753") public void testDoublePress() throws IOException, HomematicClientException, InterruptedException { HmDatapoint shortPressDp = createPressDatapoint("PRESS_SHORT", Boolean.TRUE); HmDatapoint buttonVirtualDatapoint = getButtonVirtualDatapoint(shortPressDp);