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.
unittest.skipUnless
1 parent 1071cb9 commit 41793d4Copy full SHA for 41793d4
Lib/test/test_free_threading/__init__.py
@@ -1,8 +1,9 @@
1
import os
2
3
from test import support
4
+from unittest import skipUnless
5
6
-@support.skipUnless(support.Py_GIL_DISABLED, "GIL enabled")
7
+@skipUnless(support.Py_GIL_DISABLED, "GIL enabled")
8
def load_tests(*args):
9
return support.load_package_tests(os.path.dirname(__file__), *args)
0 commit comments