Skip to content

Commit

Permalink
Relax test constraint to reduce flakiness in test_ray (#2610)
Browse files Browse the repository at this point in the history
  • Loading branch information
arnavgarg1 authored Oct 8, 2022
1 parent 82835d8 commit 05ece0c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/integration_tests/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -865,7 +865,7 @@ def filter(stats):
for (name1, metric1), (name2, metric2) in zip(v1.items(), v2.items()):
assert name1 == name2
assert np.isclose(
metric1, metric2, rtol=1e-04, atol=1e-5
metric1, metric2, rtol=1e-03, atol=1e-04
), f"metric {name1}: {metric1} != {metric2}"

return model
Expand Down

0 comments on commit 05ece0c

Please sign in to comment.