MCPcopy Index your code
hub / github.com/google/adk-python / _is_explicitly_marked

Function _is_explicitly_marked

tests/integration/conftest.py:114–119  ·  view source on GitHub ↗
(mark_name: str, metafunc: Metafunc)

Source from the content-addressed store, hash-verified

112
113
114def _is_explicitly_marked(mark_name: str, metafunc: Metafunc) -> bool:
115 if hasattr(metafunc.function, 'pytestmark'):
116 for mark in metafunc.function.pytestmark:
117 if mark.name == 'parametrize' and mark_name in mark.args[0]:
118 return True
119 return False

Callers 1

pytest_generate_testsFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected