mirror of
https://github.com/open-metadata/OpenMetadata.git
synced 2025-07-12 11:39:39 +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
|