Skip to content

Commit

Permalink
[client] Skip test_valid_actor_state tests on windows (ray-project#19114
Browse files Browse the repository at this point in the history
)

* skip test_wrapped_actor_creation on windows

* rerun windows ci

* mark test_valid_actor_state_2 as flaky

* mark test_valid_actor_state

* rerun
  • Loading branch information
ckw017 authored Oct 6, 2021
1 parent 4beba3f commit db1105f
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions python/ray/tests/test_client_reconnect.py
Original file line number Diff line number Diff line change
Expand Up @@ -294,6 +294,7 @@ def disconnect(middleman):
disconnect_thread.join()


@pytest.mark.skipif(sys.platform == "win32", reason="Flaky on windows")
def test_valid_actor_state():
"""
Repeatedly inject errors in the middle of mutating actor calls. Check
Expand Down Expand Up @@ -332,6 +333,7 @@ def fail_every_seven(_):
assert ray.get(ref) == 100


@pytest.mark.skipif(sys.platform == "win32", reason="Flaky on windows")
def test_valid_actor_state_2():
"""
Do a full disconnect (cancel channel) every 11 requests. Failure
Expand Down

0 comments on commit db1105f

Please sign in to comment.