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 {