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

Skipped test_reference_counting_2 and test_actor #21507

Merged
merged 1 commit into from
Jan 11, 2022
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
1 change: 1 addition & 0 deletions python/ray/tests/test_actor.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ def get_val(self):
assert ray.get(f.get_val.remote()) == 3


@pytest.mark.skipif(sys.platform == "win32", reason="Failing on Windows.")
def test_remote_function_within_actor(ray_start_10_cpus):
# Make sure we can use remote funtions within actors.

Expand Down
1 change: 1 addition & 0 deletions python/ray/tests/test_reference_counting_2.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@ def _fill_object_store_and_get(obj, succeed=True, object_MiB=20,

# Test that an object containing object refs within it pins the inner IDs
# recursively and for submitted tasks.
@pytest.mark.skipif(sys.platform == "win32", reason="Failing on Windows.")
@pytest.mark.parametrize("use_ray_put,failure", [(False, False), (False, True),
(True, False), (True, True)])
def test_recursively_nest_ids(one_worker_100MiB, use_ray_put, failure):
Expand Down