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][easy] disable test not suppose to work with ray client #34556

Merged
merged 1 commit into from
Apr 19, 2023
Merged
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
2 changes: 2 additions & 0 deletions python/ray/tests/test_basic_5.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
from ray._private.test_utils import (
run_string_as_driver,
wait_for_pid_to_exit,
client_test_enabled,
)

logger = logging.getLogger(__name__)
Expand Down Expand Up @@ -362,6 +363,7 @@ def verify_imports(latch):
ray.get(futures)


@pytest.mark.skipif(client_test_enabled(), reason="only server mode")
def test_gcs_port_env():
try:
with unittest.mock.patch.dict(os.environ):
Expand Down