cpython/Lib/test/test_free_threading/__init__.py
Miss Islington (bot) 4f4973d740
[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>
2024-06-18 14:46:29 +00:00

11 lines
225 B
Python

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)