mirror of https://github.com/python/cpython
gh-120659: Skip `test_freethreading` with GIL (#120660)
This commit is contained in:
parent
d2e423114c
commit
360f14a493
|
@ -1,7 +1,11 @@
|
||||||
import os
|
import os
|
||||||
|
import unittest
|
||||||
|
|
||||||
from test import support
|
from test import support
|
||||||
|
|
||||||
|
|
||||||
|
if not support.Py_GIL_DISABLED:
|
||||||
|
raise unittest.SkipTest("GIL enabled")
|
||||||
|
|
||||||
def load_tests(*args):
|
def load_tests(*args):
|
||||||
return support.load_package_tests(os.path.dirname(__file__), *args)
|
return support.load_package_tests(os.path.dirname(__file__), *args)
|
||||||
|
|
Loading…
Reference in New Issue