Skip to content

Commit fd63d20

Browse files
authored
[Tune] Increase tune checkpoint test latency threshold (#56251)
Bumping it to 5s to de-flake. Signed-off-by: Lehui Liu <[email protected]>
1 parent 3346d67 commit fd63d20

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

python/ray/tune/tests/test_commands.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ def train_fn(config):
7373
times += [time.time() - start]
7474

7575
print("Average CLI time: ", sum(times) / len(times))
76-
assert sum(times) / len(times) < 2, "CLI is taking too long!"
76+
assert sum(times) / len(times) < 5, "CLI is taking too long!"
7777

7878

7979
@mock.patch(

0 commit comments

Comments
 (0)