From 5ac99123e7f825f9d28f17d2042e4dafcfe4d50f Mon Sep 17 00:00:00 2001 From: Andrea Peruffo Date: Thu, 5 Aug 2021 11:23:26 +0200 Subject: [PATCH] Exclude BoundedBlockingQueueSpec on GH Actions (#30480) --- .../src/test/scala/akka/util/BoundedBlockingQueueSpec.scala | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/akka-actor-tests/src/test/scala/akka/util/BoundedBlockingQueueSpec.scala b/akka-actor-tests/src/test/scala/akka/util/BoundedBlockingQueueSpec.scala index f82651133a..5eeb525cbb 100644 --- a/akka-actor-tests/src/test/scala/akka/util/BoundedBlockingQueueSpec.scala +++ b/akka-actor-tests/src/test/scala/akka/util/BoundedBlockingQueueSpec.scala @@ -21,7 +21,7 @@ import org.scalatest.time.Span import org.scalatest.time.SpanSugar._ import org.scalatest.wordspec.AnyWordSpec -import akka.testkit.TimingTest +import akka.testkit.{ GHExcludeTest, TimingTest } import akka.util.DefaultExecutionContext._ import akka.util.ccompat.JavaConverters._ @@ -284,7 +284,8 @@ class BoundedBlockingQueueSpec (events should contain).inOrder(awaitNotFull, signalNotFull, offer("World")) } - "check the backing queue size before offering" in { + // Excluded on GH Actions: https://github.com/akka/akka/issues/30479 + "check the backing queue size before offering" taggedAs GHExcludeTest in { val TestContext(queue, events, _, notFull, lock, _) = newBoundedBlockingQueue(1) queue.put("Hello") // Blocks until another thread signals `notFull`