Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 11eecb7

Browse files
committed
TST: skip multithreading tests on WASM
1 parent 9fce93a commit 11eecb7

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

numpy/_core/tests/test_multithreading.py

+6
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
import concurrent.futures
22

33
import numpy as np
4+
import pytest
5+
6+
from numpy.testing import IS_WASM
7+
8+
if IS_WASM:
9+
pytest.skip(allow_module_level=True, reason="no threading support in wasm")
410

511

612
def test_parallel_errstate_creation():

0 commit comments

Comments
 (0)