Skip to content

Commit

Permalink
More skips
Browse files Browse the repository at this point in the history
  • Loading branch information
kounelisagis committed Mar 7, 2025
1 parent 0ba1d84 commit d4b7beb
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions tiledb/tests/test_fork_ctx.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,8 @@ def test_no_warning_multiprocessing_without_ctx():


@pytest.mark.skipif(
sys.platform == "win32", reason="fork() is not available on Windows"
sys.platform != "linux",
reason=f"fork() is not available on Windows, and this test randomly fails on macOS.",
)
@pytest.mark.filterwarnings("ignore::DeprecationWarning")
def test_warning_multiprocessing_with_ctx():
Expand All @@ -92,7 +93,8 @@ def test_warning_multiprocessing_with_ctx():


@pytest.mark.skipif(
sys.platform == "win32", reason="fork() is not available on Windows"
sys.platform != "linux",
reason=f"fork() is not available on Windows, and this test randomly fails on macOS.",
)
@pytest.mark.filterwarnings("ignore::DeprecationWarning")
def test_warning_multiprocessing_with_default_ctx():
Expand Down

0 comments on commit d4b7beb

Please sign in to comment.