2024-04-19 14:47:42 -07:00
|
|
|
import os
|
2024-06-18 15:56:20 +02:00
|
|
|
import unittest
|
2024-04-19 14:47:42 -07:00
|
|
|
|
|
|
|
from test import support
|
|
|
|
|
|
|
|
|
2024-06-18 15:56:20 +02:00
|
|
|
if not support.Py_GIL_DISABLED:
|
|
|
|
raise unittest.SkipTest("GIL enabled")
|
|
|
|
|
2024-04-19 14:47:42 -07:00
|
|
|
def load_tests(*args):
|
|
|
|
return support.load_package_tests(os.path.dirname(__file__), *args)
|