Skip to content

Commit

Permalink
use @disabled annotation rather than ignore
Browse files Browse the repository at this point in the history
  • Loading branch information
mflinn-broad committed Feb 27, 2024
1 parent ff9c964 commit 8a34a70
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions stairway/src/test/java/bio/terra/stairway/SleepQueueTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,15 @@
import java.util.concurrent.TimeUnit;
import org.junit.jupiter.api.Tag;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.Disabled;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

@Tag("unit")
public class SleepQueueTest {
private final Logger logger = LoggerFactory.getLogger(SleepQueueTest.class);

@Disabled("This test is flaky and consistently fails when running on a fresh environment for the first time")
@Test
public void clusterSuccessTest() throws Exception {
QueueInterface workQueue = FileQueue.makeFileQueue("clusterSuccessTest");
Expand Down

0 comments on commit 8a34a70

Please sign in to comment.