We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 26a85bb commit de37f41Copy full SHA for de37f41
tests/test_gil_scoped.py
@@ -168,6 +168,9 @@ def _intentional_deadlock():
168
169
170
def _run_in_process(target, *args, **kwargs):
171
+ if env.ANDROID or env.IOS or sys.platform.startswith("emscripten"):
172
+ pytest.skip("Requires subprocess support")
173
+
174
test_fn = target if len(args) == 0 else args[0]
175
# Do not need to wait much, 10s should be more than enough.
176
timeout = 0.1 if test_fn is _intentional_deadlock else 10
0 commit comments