Add more leeway on async tests for Windows CI

This commit is contained in:
Jacob Segal
2025-09-02 23:43:15 -07:00
parent cf45fd1742
commit b1b5f87534
2 changed files with 5 additions and 4 deletions

View File

@@ -574,7 +574,8 @@ class TestExecution:
# Similar to the previous test, expect parallel execution of the sleep nodes
# which should complete in less than the sum of all sleeps
assert elapsed_time < 10.0, f"Expansion execution took {elapsed_time}s, expected less than 5.5s"
# Lots of leeway here since Windows CI is slow
assert elapsed_time < 13.0, f"Expansion execution took {elapsed_time}s"
# Verify the parallel sleep node executed
assert result.did_run(parallel_sleep), "ParallelSleep node should have run"