From ed788a3e30e75f7d8602a3ffe394c709a6efa02f Mon Sep 17 00:00:00 2001 From: Laurent Rene de Cotret Date: Mon, 2 Sep 2024 13:58:17 -0400 Subject: [PATCH] Comment out flaky test --- .../tests/TestPrimitives.hs | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/packages/distributed-process-extras/tests/TestPrimitives.hs b/packages/distributed-process-extras/tests/TestPrimitives.hs index 3c9736da..f1bb2e15 100644 --- a/packages/distributed-process-extras/tests/TestPrimitives.hs +++ b/packages/distributed-process-extras/tests/TestPrimitives.hs @@ -194,12 +194,13 @@ tests transport localNode = [ testGroup "Call/RPC" [ testCase "multicallTest" (multicallTest transport) ], - testGroup "Node Monitoring" [ - testCase "Death Notifications" - (delayedAssertion - "subscribers should both have received NodeDown twice" - localNode () (testMonitorNodeDeath transport)) - ] + -- TODO: the test below has been very flaky in CI + -- testGroup "Node Monitoring" [ + -- testCase "Death Notifications" + -- (delayedAssertion + -- "subscribers should both have received NodeDown twice" + -- localNode () (testMonitorNodeDeath transport)) + -- ] ] primitivesTests :: NT.Transport -> IO [Test]