mirror of
				https://github.com/apache/cloudstack.git
				synced 2025-10-26 08:42:29 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			363 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			363 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| from pymysql.tests.test_issues import *
 | |
| from pymysql.tests.test_example import *
 | |
| from pymysql.tests.test_basic import *
 | |
| from pymysql.tests.test_DictCursor import *
 | |
| 
 | |
| import sys
 | |
| if sys.version_info[0] == 2:
 | |
|     # MySQLdb tests were designed for Python 3
 | |
|     from pymysql.tests.thirdparty import *
 | |
| 
 | |
| if __name__ == "__main__":
 | |
|     import unittest
 | |
|     unittest.main()
 |