Skip to content

Commit c5ab79c

Browse files
authored
Merge pull request #30487 from charris/prepare-2.4.0.2
REL: Prepare for the NumPy 2.4.0 release (2)
2 parents 485f1c4 + 05e379a commit c5ab79c

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

numpy/_core/tests/test_multiprocessing.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
1+
import sys
2+
13
import pytest
24

35
import numpy as np
4-
from numpy.testing import IS_WASM
6+
from numpy.testing import IS_PYPY, IS_WASM
57

68
pytestmark = pytest.mark.thread_unsafe(
79
reason="tests in this module are explicitly multi-processed"
@@ -28,6 +30,8 @@ def bool_array_reader(shm_name, n):
2830

2931
@pytest.mark.skipif(IS_WASM,
3032
reason="WASM does not support _posixshmem")
33+
@pytest.mark.skipif(IS_PYPY and sys.platform == "win32",
34+
reason="_winapi does not support UnmapViewOfFile")
3135
def test_read_write_bool_array():
3236
# See: gh-30389
3337
#

0 commit comments

Comments
 (0)