blob: e3d189c4efcd2777e6936c2c6b3229d41238b874 (
plain)
1
2
3
4
5
6
7
8
9
|
import os
from test.support import load_package_tests, Py_GIL_DISABLED
import unittest
if Py_GIL_DISABLED:
raise unittest.SkipTest("GIL disabled")
def load_tests(*args):
return load_package_tests(os.path.dirname(__file__), *args)
|