Skip to content

Commit

Permalink
[serve] skip failure test on windows (ray-project#47630)
Browse files Browse the repository at this point in the history
Skip test_replica_actor_died on windows.

Signed-off-by: Cindy Zhang <cindyzyx9@gmail.com>
Signed-off-by: ujjawal-khare <ujjawal.khare@dream11.com>
  • Loading branch information
zcin authored and ujjawal-khare committed Oct 15, 2024
1 parent e524850 commit efd929d
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions python/ray/serve/tests/test_failure.py
Original file line number Diff line number Diff line change
Expand Up @@ -258,6 +258,9 @@ def make_blocked_request():
assert ray.get(blocked_ref) == "hi"


@pytest.mark.skipif(
sys.platform == "win32", reason="ActorDiedError not raised properly on windows."
)
@pytest.mark.parametrize("die_during_request", [False, True])
def test_replica_actor_died(serve_instance, die_during_request):
"""Test replica death paired with delayed handle notification.
Expand Down

0 comments on commit efd929d

Please sign in to comment.