mirror of
https://github.com/johndoe6345789/typthon.git
synced 2026-04-25 22:25:43 +00:00
10 lines
240 B
Python
10 lines
240 B
Python
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)
|