mirror of
https://github.com/vale981/ray
synced 2025-03-06 10:31:39 -05:00
[client] Skip test_valid_actor_state tests on windows (#19114)
* skip test_wrapped_actor_creation on windows * rerun windows ci * mark test_valid_actor_state_2 as flaky * mark test_valid_actor_state * rerun
This commit is contained in:
parent
4beba3f727
commit
db1105fa83
1 changed files with 2 additions and 0 deletions
|
@ -294,6 +294,7 @@ def test_disconnect_during_get():
|
|||
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
|
||||
|
@ -332,6 +333,7 @@ def test_valid_actor_state():
|
|||
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
|
||||
|
|
Loading…
Add table
Reference in a new issue