Skip to content

Commit d34c5ff

Browse files
committed
MAINT: fft: skip hanging multithreaded test on windows
[skip circle]
1 parent 27e4a45 commit d34c5ff

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

scipy/fft/tests/test_basic.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
import platform
12
import queue
23
import threading
34
import multiprocessing
@@ -448,6 +449,7 @@ def test_ihfft(self, xp):
448449

449450
@skip_xp_backends(np_only=True)
450451
@pytest.mark.parametrize("func", [fft.fft, fft.ifft, fft.rfft, fft.irfft])
452+
@pytest.mark.skipif(platform.system() == 'Windows', reason='scipy/scipy#23989')
451453
def test_multiprocess(func, xp):
452454
# Test that fft still works after fork (gh-10422)
453455

0 commit comments

Comments
 (0)