We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fcefed7 commit ff2a3c3Copy full SHA for ff2a3c3
tests/experiments/test_ray.py
@@ -31,7 +31,7 @@ def test_execute_task_graph():
31
# Verify that parallel tasks (task2 and task3) started within a short time of each other
32
parallel_start_diff = abs(exp_args_list[1].start_time - exp_args_list[2].start_time)
33
print(f"parallel_start_diff: {parallel_start_diff}")
34
- assert parallel_start_diff < 1.5 # Allow for a small delay
+ assert parallel_start_diff < 2 # Allow for a small delay
35
36
# Ensure that the entire task graph took the expected amount of time
37
total_time = exp_args_list[-1].end_time - exp_args_list[0].start_time
0 commit comments