Skip to content

Commit ff2a3c3

Browse files
committed
increase allowed delay for parallel task start time in test_execute_task_graph
1 parent fcefed7 commit ff2a3c3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/experiments/test_ray.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ def test_execute_task_graph():
3131
# Verify that parallel tasks (task2 and task3) started within a short time of each other
3232
parallel_start_diff = abs(exp_args_list[1].start_time - exp_args_list[2].start_time)
3333
print(f"parallel_start_diff: {parallel_start_diff}")
34-
assert parallel_start_diff < 1.5 # Allow for a small delay
34+
assert parallel_start_diff < 2 # Allow for a small delay
3535

3636
# Ensure that the entire task graph took the expected amount of time
3737
total_time = exp_args_list[-1].end_time - exp_args_list[0].start_time

0 commit comments

Comments
 (0)