Skip to content

Commit

Permalink
Skipped only failing tests
Browse files Browse the repository at this point in the history
  • Loading branch information
czgdp1807 committed Jan 10, 2022
1 parent 6420c75 commit 4160a7b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
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

0 comments on commit 4160a7b

Please sign in to comment.