Skip to content

Commit

Permalink
Fix mypy config options in pyproject.toml file.
Browse files Browse the repository at this point in the history
  • Loading branch information
Kami committed Jul 31, 2023
1 parent a1ac8bf commit 739d053
Showing 1 changed file with 14 additions and 10 deletions.
24 changes: 14 additions & 10 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -69,22 +69,26 @@ platform = "linux"
show_error_context = true
show_column_numbers = true

[tool.mypy.overrides]
[[tool.mypy.overrides]]
module = [
"lxml",
"xml.dom",
"xmlrpc",
"paramiko",
"cryptography",
"lockfile",
"libcloud.utils.py3",
"libcloud.compute.drivers",
"libcloud.storage.drivers",
"libcloud.dns.drivers",
"libcloud.container.drivers",
"xmlrpc.*",
"paramiko.*",
"cryptography.*",
"lockfile.*",
]
ignore_missing_imports = true

[[tool.mypy.overrides]]
module = [
"libcloud.utils.py3",
"libcloud.compute.drivers.*",
"libcloud.storage.drivers.*",
"libcloud.dns.drivers.*",
"libcloud.container.drivers.*",
]
ignore_errors = true

[tool.coverage.run]
branch = true
Expand Down

0 comments on commit 739d053

Please sign in to comment.