Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Core] Mark tests unflaky #41673

Merged
merged 1 commit into from
Dec 8, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
mark test unflaky
  • Loading branch information
SangBin Cho authored and SangBin Cho committed Dec 6, 2023
commit b2f626fbd4bd40c98af9ba16d1e2152b9dddfb33
2 changes: 0 additions & 2 deletions ci/ray_ci/core.tests.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,2 @@
flaky_tests:
- //python/ray/tests:test_client_library_integration
- //src/ray/common/test:ray_syncer_test
- //:gcs_placement_group_manager_test
2 changes: 0 additions & 2 deletions python/ray/tests/test_reconstruction_stress.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
import pytest

import ray
from ray._private.test_utils import skip_flaky_core_test_premerge

SIGKILL = signal.SIGKILL if sys.platform != "win32" else signal.SIGTERM

Expand All @@ -23,7 +22,6 @@ def config(request):


@pytest.mark.skipif(sys.platform == "win32", reason="Failing on Windows.")
@skip_flaky_core_test_premerge("https://github.com/ray-project/ray/issues/41514")
def test_reconstruction_stress(config, ray_start_cluster):
config["task_retry_delay_ms"] = 100
config["max_direct_call_object_size"] = 100
Expand Down
3 changes: 0 additions & 3 deletions python/ray/tests/test_runtime_env_working_dir_3.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@
chdir,
check_local_files_gced,
wait_for_condition,
skip_flaky_core_test_premerge,
find_free_port,
)

Expand Down Expand Up @@ -257,7 +256,6 @@ def check(self):
@pytest.mark.parametrize(
"source", [S3_PACKAGE_URI, lazy_fixture("tmp_working_dir")]
)
@skip_flaky_core_test_premerge("https://github.com/ray-project/ray/issues/40781")
def test_detached_actor_gc(
self,
start_cluster,
Expand Down Expand Up @@ -352,7 +350,6 @@ 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.")

@skip_flaky_core_test_premerge("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
Loading