Skip to content

Commit

Permalink
CI: Adjust mypy configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
amotl committed Dec 20, 2023
1 parent 8734762 commit b8443ef
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -138,17 +138,20 @@ exclude_lines = [
]

[tool.mypy]
#packages = ["sqlalchemy_cratedb"]
mypy_path = "src"
packages = ["sqlalchemy_cratedb"]
exclude = [
]
check_untyped_defs = true
explicit_package_bases = true
ignore_missing_imports = true
implicit_optional = true
install_types = true
namespace_packages = true
non_interactive = true
# Needed until `mypy-0.990` for `ConverterDefinition` in `converter.py`.
# https://github.com/python/mypy/issues/731#issuecomment-1260976955
enable_recursive_aliases = true
# enable_recursive_aliases = true

[tool.pytest.ini_options]
addopts = """
Expand Down

0 comments on commit b8443ef

Please sign in to comment.