diff --git a/tests/ports/psoc6/board_only_hw/single/timer.py b/tests/ports/psoc6/board_only_hw/single/timer.py index f0bdb4f1d36fc..77ca379a35a07 100644 --- a/tests/ports/psoc6/board_only_hw/single/timer.py +++ b/tests/ports/psoc6/board_only_hw/single/timer.py @@ -1,3 +1,4 @@ +import os from machine import Timer import time @@ -76,3 +77,10 @@ def test_multiple_timers(): test_periodic() print("*****Multiple Timers Execution*****") test_multiple_timers() + + # TODO: Timer tests need to be refined. + # The current implementation is not reliable. + # After this tests CY8CPROTO-063-BLE board is not able to the subsequent test. + # Occasionally, the other board also fail. + # This workaround works for now. + time.sleep(5)