mirror of
				https://github.com/open-metadata/OpenMetadata.git
				synced 2025-10-31 10:39:30 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			9 lines
		
	
	
		
			282 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
		
			282 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| def pytest_pycollect_makeitem(collector, name, obj):
 | |
|     try:
 | |
|         if obj.__name__ in ("TestSuiteSource", "TestSuiteInterfaceFactory"):
 | |
|             return []
 | |
|         if obj.__base__.__name__ in ("BaseModel", "Enum"):
 | |
|             return []
 | |
|     except AttributeError:
 | |
|         pass
 | 
