From 0d78cd407ce51b738b1261accf179b118e2bc1b3 Mon Sep 17 00:00:00 2001 From: Thomas Boyer-Chammard <49786685+thomas-bc@users.noreply.github.com> Date: Wed, 22 Oct 2025 17:26:25 -0700 Subject: [PATCH] Fix macOS CI intermittent failure (#4347) * Attempt CI fix and test debug setup * Sleep longer to wait for downlink * why tho? * revert misc debug things --- Ref/test/int/ref_integration_test.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Ref/test/int/ref_integration_test.py b/Ref/test/int/ref_integration_test.py index da62f7045a..e9102b3c67 100644 --- a/Ref/test/int/ref_integration_test.py +++ b/Ref/test/int/ref_integration_test.py @@ -235,7 +235,8 @@ def test_active_logger_filter(fprime_test_api): fprime_test_api.send_and_assert_command("CdhCore.cmdDisp.CMD_NO_OP") fprime_test_api.send_and_assert_command("CdhCore.cmdDisp.CMD_NO_OP") - time.sleep(0.5) + # Wait >1s for ComAggregator's 1Hz timeout to flush all downlink + time.sleep(1.5) fprime_test_api.assert_event_count(pred, cmd_events) fprime_test_api.assert_event_count(pred, actHI_events) @@ -247,7 +248,8 @@ def test_active_logger_filter(fprime_test_api): fprime_test_api.send_command("CdhCore.cmdDisp.CMD_NO_OP") fprime_test_api.send_command("CdhCore.cmdDisp.CMD_NO_OP") - time.sleep(0.5) + # Wait >1s for ComAggregator's 1Hz timeout to flush all downlink + time.sleep(1.5) fprime_test_api.assert_event_count(zero, cmd_events) fprime_test_api.assert_event_count(pred, actHI_events)