Skip to content

targets

agent_cover.instrumentation.tools.targets

This module defines the targets for instrumentation.

This module contains a list of supported tools and their methods for instrumentation purposes. It defines the structure of the target definitions, including the module, class name, and methods to be instrumented.

Functions

get_tool_targets()

Returns the list of supported tools.

Returns:

Name Type Description
TargetList TargetList

A list of dictionaries representing the supported tools.

Source code in src/agent_cover/instrumentation/tools/targets.py
def get_tool_targets() -> TargetList:
    """Returns the list of supported tools.

    Returns:
        TargetList: A list of dictionaries representing the supported tools.
    """
    return SUPPORTED_TOOLS