Skip to content

Commit 621077a

Browse files
Skip some tests that use fcntl
1 parent fdb2bef commit 621077a

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

tests/v2/test_sync.py

+2
Original file line numberDiff line numberDiff line change
@@ -153,6 +153,7 @@ def test_hexdigest(self):
153153
assert "05b0663ffe1785f38d3a459dec17e57a18f254af" == z.hexdigest()
154154

155155

156+
@pytest.mark.skipif(IS_WASM, reason="fcntl not available in WASM")
156157
class TestArrayWithProcessSynchronizer(TestArray, MixinArraySyncTests):
157158
def create_array(self, read_only=False, **kwargs):
158159
path = tempfile.mkdtemp()
@@ -291,6 +292,7 @@ def test_synchronizer_property(self):
291292
assert isinstance(g.synchronizer, ThreadSynchronizer)
292293

293294

295+
@pytest.mark.skipif(IS_WASM, reason="fcntl not available in WASM")
294296
class TestGroupWithProcessSynchronizer(TestGroup, MixinGroupSyncTests):
295297
def create_store(self):
296298
path = tempfile.mkdtemp()

0 commit comments

Comments
 (0)