# Coverage.py configuration for Blender Studio MCP

[run]
source = src/blender_studio_mcp
branch = True
parallel = True
omit =
    */tests/*
    */conftest.py
    */__pycache__/*
    */site-packages/*

[report]
precision = 2
show_missing = True
skip_covered = False

# Lines to exclude from consideration
exclude_lines =
    # Have to re-enable the standard pragma
    pragma: no cover

    # Don't complain about missing debug-only code
    def __repr__

    # Don't complain if tests don't hit defensive assertion code
    raise AssertionError
    raise NotImplementedError

    # Don't complain if non-runnable code isn't run
    if __name__ == .__main__.:
    if TYPE_CHECKING:

    # Don't complain about abstract methods
    @abstractmethod

[html]
directory = htmlcov
title = Blender Studio MCP Test Coverage

[xml]
output = coverage.xml
