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