mirror of https://github.com/dapr/dapr-agents.git
config: ignore mypy errors for optional observability module
Signed-off-by: Roberto Rodriguez <9653181+Cyb3rWard0g@users.noreply.github.com>
This commit is contained in:
parent
aab9659dd3
commit
201f831b9a
14
mypy.ini
14
mypy.ini
|
|
@ -13,12 +13,9 @@ exclude =
|
|||
cookbook/**/*.py,
|
||||
quickstarts/**/*.py,
|
||||
|
||||
[mypy-dapr_agents.agent.*]
|
||||
[mypy-dapr_agents.agents.*]
|
||||
ignore_errors = True
|
||||
|
||||
[mypy-dapr_agents.agent.telemetry.*]
|
||||
ignore_errors = False
|
||||
|
||||
[mypy-dapr_agents.document.*]
|
||||
ignore_errors = True
|
||||
|
||||
|
|
@ -43,6 +40,9 @@ ignore_errors = True
|
|||
[mypy-dapr_agents.tool.mcp.*]
|
||||
ignore_errors = True
|
||||
|
||||
[mypy-dapr_agents.tool.http.*]
|
||||
ignore_errors = True
|
||||
|
||||
[mypy-dapr_agents.tool.utils.*]
|
||||
ignore_errors = True
|
||||
|
||||
|
|
@ -52,9 +52,6 @@ ignore_errors = True
|
|||
[mypy-dapr_agents.tool.base.*]
|
||||
ignore_errors = True
|
||||
|
||||
[mypy-dapr_agents.tool.http.*]
|
||||
ignore_errors = False
|
||||
|
||||
[mypy-dapr_agents.types.*]
|
||||
ignore_errors = True
|
||||
|
||||
|
|
@ -63,3 +60,6 @@ ignore_errors = True
|
|||
|
||||
[mypy-dapr_agents.pubsub.*]
|
||||
ignore_errors = True
|
||||
|
||||
[mypy-dapr_agents.observability.*]
|
||||
ignore_errors = True
|
||||
|
|
|
|||
Loading…
Reference in New Issue