From a5aa15179e5d010af879109d2a38e81c65916882 Mon Sep 17 00:00:00 2001 From: Basil Crow Date: Sun, 26 Jun 2022 09:01:49 -0700 Subject: [PATCH] Ignore `hudson.model.QueueRestartTest` --- test/src/test/java/hudson/model/QueueRestartTest.java | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/test/src/test/java/hudson/model/QueueRestartTest.java b/test/src/test/java/hudson/model/QueueRestartTest.java index 861d41462a0d..5fac5ea49871 100644 --- a/test/src/test/java/hudson/model/QueueRestartTest.java +++ b/test/src/test/java/hudson/model/QueueRestartTest.java @@ -29,8 +29,10 @@ import java.io.File; import java.io.IOException; import java.util.concurrent.TimeUnit; +import org.junit.Ignore; import org.junit.Rule; import org.junit.Test; +import org.jvnet.hudson.test.Issue; import org.jvnet.hudson.test.JenkinsRule; import org.jvnet.hudson.test.RealJenkinsRule; import org.jvnet.hudson.test.recipes.LocalData; @@ -39,6 +41,8 @@ public class QueueRestartTest { @Rule public RealJenkinsRule rr = new RealJenkinsRule(); + @Ignore("Pending JENKINS-68319 sometimes fails, in CI & locally") + @Issue("JENKINS-68319") @LocalData("quietDown") @Test public void persistQueueOnRestart() throws Throwable { @@ -49,6 +53,8 @@ public void persistQueueOnRestart() throws Throwable { rr.then(QueueRestartTest::assertBuildFinishes); } + @Ignore("Pending JENKINS-68319 sometimes fails, in CI & locally") + @Issue("JENKINS-68319") @LocalData("quietDown") @Test public void persistQueueOnConsecutiveRestarts() throws Throwable {