8000 TST: skip multithreading tests on WASM · melissawm/numpy@1d976fc · GitHub
[go: up one dir, main page]

Skip to content

Commit 1d976fc

Browse files
committed
TST: skip multithreading tests on WASM
1 parent b3b5109 commit 1d976fc

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

numpy/_core/tests/test_multithreading.py

Lines changed: 6 additions & 0 deletions
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)
0