From a74c8dae5fc4941b63bb7ac7a025796622af644f Mon Sep 17 00:00:00 2001 From: Sam Gross Date: Mon, 18 Mar 2024 16:24:27 +0000 Subject: [PATCH] Revert "gh-110119: Temporarily skip test_cppext on --disable-gil builds. (#110123)" The `test_cppext` can run now that the `wheel` package is updated. This reverts commit 2973970af8fb3f117ab2e8ab2d82e8a541fcb1da. --- Lib/test/test_cppext/__init__.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/Lib/test/test_cppext/__init__.py b/Lib/test/test_cppext/__init__.py index c6039bd17b0662..a7c7dbfececac9 100644 --- a/Lib/test/test_cppext/__init__.py +++ b/Lib/test/test_cppext/__init__.py @@ -12,10 +12,6 @@ SETUP = os.path.join(os.path.dirname(__file__), 'setup.py') -# gh-110119: pip does not currently support 't' in the ABI flag use by -# --disable-gil builds. Once it does, we can remove this skip. -@unittest.skipIf(support.Py_GIL_DISABLED, - 'test does not work with --disable-gil') @support.requires_subprocess() class TestCPPExt(unittest.TestCase): @support.requires_resource('cpu')