mirror of
				https://github.com/python/cpython.git
				synced 2025-11-04 07:31:38 +00:00 
			
		
		
		
	- Use os.makedirs (I had forgotten about it!) - Let TempdirManager.write_file call os.path.join for us - Remove custom command added by test_dist - Use a skip instead of hiding a method with an underscore - Address pyflakes warnings
		
			
				
	
	
		
			24 lines
		
	
	
	
		
			639 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
	
		
			639 B
		
	
	
	
		
			Python
		
	
	
	
	
	
"""Packaging test suite runner."""
 | 
						|
 | 
						|
# Ripped from importlib tests, thanks Brett!
 | 
						|
 | 
						|
import os
 | 
						|
import unittest
 | 
						|
from test.support import run_unittest, reap_children, reap_threads
 | 
						|
 | 
						|
 | 
						|
@reap_threads
 | 
						|
def test_main():
 | 
						|
    try:
 | 
						|
        start_dir = os.path.dirname(__file__)
 | 
						|
        top_dir = os.path.dirname(os.path.dirname(start_dir))
 | 
						|
        test_loader = unittest.TestLoader()
 | 
						|
        # XXX find out how to use unittest.main, to get command-line options
 | 
						|
        # (failfast, catch, etc.)
 | 
						|
        run_unittest(test_loader.discover(start_dir, top_level_dir=top_dir))
 | 
						|
    finally:
 | 
						|
        reap_children()
 | 
						|
 | 
						|
 | 
						|
if __name__ == '__main__':
 | 
						|
    test_main()
 |