From cfaba3211cf37efd2f6deb08deeedfd6390193ef Mon Sep 17 00:00:00 2001 From: Jeff Epler Date: Sat, 15 Nov 2025 08:30:56 -0600 Subject: [PATCH] tests/thread/stress_schedule.py: Decrease backoff time. Locally, this changes the duration of the test from about 2.7s to 0.3s. Signed-off-by: Jeff Epler --- tests/thread/stress_schedule.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/thread/stress_schedule.py b/tests/thread/stress_schedule.py index 362d71aa12..10ba67d0bb 100644 --- a/tests/thread/stress_schedule.py +++ b/tests/thread/stress_schedule.py @@ -35,7 +35,7 @@ def thread(): micropython.schedule(task, None) except RuntimeError: # Queue full, back off. - time.sleep_ms(10) + time.sleep_ms(1) for i in range(8):