We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a407438 commit 3df427cCopy full SHA for 3df427c
1 file changed
tests/test_custom_type_setup.py
@@ -2,6 +2,7 @@
2
3
import gc
4
import os
5
+import sys
6
import weakref
7
8
import pytest
@@ -51,6 +52,10 @@ def test_indirect_cycle(gc_tester):
51
52
gc_tester(obj)
53
54
55
+@pytest.mark.skipif(
56
+ env.IOS or sys.platform.startswith("emscripten"),
57
+ reason="Requires subprocess support",
58
+)
59
@pytest.mark.skipif("env.PYPY or env.GRAALPY")
60
def test_py_cast_useable_on_shutdown():
61
env.check_script_success_in_subprocess(
0 commit comments