Skip to content

Commit

Permalink
[ci] mark two core functions as flaky (#41237)
Browse files Browse the repository at this point in the history
  • Loading branch information
can-anyscale authored Nov 17, 2023
1 parent 9a34839 commit 9dec618
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
4 changes: 4 additions & 0 deletions python/ray/tests/test_client_builder.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,10 @@ def test_client(address):
assert builder.address == address.replace("ray://", "")


@pytest.mark.skipif(
skip_flaky_test(),
reason="https://github.com/ray-project/ray/issues/38224",
)
def test_namespace(ray_start_cluster):
"""
Most of the "checks" in this test case rely on the fact that
Expand Down
4 changes: 4 additions & 0 deletions python/ray/tests/test_runtime_env_working_dir_3.py
Original file line number Diff line number Diff line change
Expand Up @@ -348,6 +348,10 @@ def test_import(self):
wait_for_condition(lambda: check_local_files_gced(cluster, whitelist=whitelist))
print("check_local_files_gced passed wait_for_condition block.")

@pytest.mark.skipif(
skip_flaky_test(),
reason="https://github.com/ray-project/ray/issues/40781",
)
def test_hit_cache_size_limit(
self, start_cluster, URI_cache_10_MB, disable_temporary_uri_pinning
):
Expand Down

0 comments on commit 9dec618

Please sign in to comment.