mirror of
				https://github.com/python/cpython.git
				synced 2025-10-31 13:41:24 +00:00 
			
		
		
		
	 07145ddf19
			
		
	
	
		07145ddf19
		
			
		
	
	
	
	
		
			
			(cherry picked from commit 1035fe0cfb, AKA gh-120689)
Co-authored-by: Nice Zombies <nineteendo19d0@gmail.com>
		
	
			
		
			
				
	
	
		
			9 lines
		
	
	
	
		
			240 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			9 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)
 |