From 8914047eb0b6b3707b49ffadcdbfd5aad199de7e Mon Sep 17 00:00:00 2001 From: apete Date: Thu, 10 Oct 2024 06:48:47 +0200 Subject: [PATCH] Update InterruptionTest.java --- .../java/org/ojalgo/optimisation/linear/InterruptionTest.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/test/java/org/ojalgo/optimisation/linear/InterruptionTest.java b/src/test/java/org/ojalgo/optimisation/linear/InterruptionTest.java index b6acca5cf..41871b40f 100644 --- a/src/test/java/org/ojalgo/optimisation/linear/InterruptionTest.java +++ b/src/test/java/org/ojalgo/optimisation/linear/InterruptionTest.java @@ -4,6 +4,7 @@ import java.util.concurrent.TimeUnit; import org.junit.jupiter.api.Assertions; +import org.junit.jupiter.api.Tag; import org.junit.jupiter.api.Test; import org.junit.jupiter.api.Timeout; import org.ojalgo.TestUtils; @@ -15,6 +16,7 @@ * Now and then the model used with these tests needs to be changed – ojAlgo gets better and computers faster, * causing the model to solve too fast for these interruption tests. */ +@Tag("unstable") public class InterruptionTest extends OptimisationLinearTests implements ModelFileTest { private static class ThreadInterrupter implements Runnable {