[3.13] gh-120659: Skip test_freethreading with GIL (GH-120660) (#120694)

gh-120659: Skip `test_freethreading` with GIL (GH-120660)
(cherry picked from commit 360f14a493)

Co-authored-by: Nice Zombies <nineteendo19d0@gmail.com>
This commit is contained in:
Miss Islington (bot) 2024-06-18 16:46:29 +02:00 committed by GitHub
parent 8c129d99ef
commit 4f4973d740
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1,7 +1,11 @@
import os
import unittest
from test import support
if not support.Py_GIL_DISABLED:
raise unittest.SkipTest("GIL enabled")
def load_tests(*args):
return support.load_package_tests(os.path.dirname(__file__), *args)