Skip to content

Commit

Permalink
[DOP-11712] add github workflow for code analysis
Browse files Browse the repository at this point in the history
  • Loading branch information
dmitry-pedchenko committed Feb 26, 2024
1 parent daa60c6 commit 8b7d6ba
Showing 1 changed file with 15 additions and 12 deletions.
27 changes: 15 additions & 12 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,9 @@ known_first_party = ["app"]
[tool.mypy]
python_version = "3.11"
plugins = ["pydantic.mypy", "sqlalchemy.ext.mypy.plugin"]
exclude = [
".*/tests/.*",
]

[[tool.mypy.overrides]]
module = "alembic.*"
Expand Down Expand Up @@ -107,15 +110,15 @@ ignore_missing_imports = true
[[tool.mypy.overrides]]
module = "uvicorn.*"
ignore_missing_imports = true

[[tool.mypy.overrides]]
module = "httpx.*"
ignore_missing_imports = true

[[tool.mypy.overrides]]
module = "pytest.*"
ignore_missing_imports = true

[[tool.mypy.overrides]]
module = "pytest_asyncio.*"
ignore_missing_imports = true
#
#[[tool.mypy.overrides]]
#module = "httpx.*"
#ignore_missing_imports = true
#
#[[tool.mypy.overrides]]
#module = "pytest.*"
#ignore_missing_imports = true
#
#[[tool.mypy.overrides]]
#module = "pytest_asyncio.*"
#ignore_missing_imports = true

0 comments on commit 8b7d6ba

Please sign in to comment.