We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5ae6c6d commit 2973970Copy full SHA for 2973970
Lib/test/test_cppext/__init__.py
@@ -14,6 +14,10 @@
14
SETUP = os.path.join(os.path.dirname(__file__), 'setup.py')
15
16
17
+# gh-110119: pip does not currently support 't' in the ABI flag use by
18
+# --disable-gil builds. Once it does, we can remove this skip.
19
+@unittest.skipIf(sysconfig.get_config_var('Py_NOGIL') == 1,
20
+ 'test does not work with --disable-gil')
21
@support.requires_subprocess()
22
class TestCPPExt(unittest.TestCase):
23
@support.requires_resource('cpu')
0 commit comments