diff --git a/.github/workflows/lint_and_test.yml b/.github/workflows/lint_and_test.yml index 098e9cd..b420602 100644 --- a/.github/workflows/lint_and_test.yml +++ b/.github/workflows/lint_and_test.yml @@ -35,7 +35,7 @@ jobs: steps: - uses: actions/checkout@v4 - uses: ./.github/actions/setup - - run: uvx mypy --install-types --non-interactive . + - run: uvx mypy --install-types --non-interactive --ignore-missing-imports . tests: runs-on: ubuntu-latest needs: [lock_file] diff --git a/pyproject.toml b/pyproject.toml index e25f608..b648b29 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -81,7 +81,7 @@ per-file-ignores = {"__init__.py"=["F401"]} python_version = "3.8" show_error_codes = true check_untyped_defs = true -disable_error_code = "import-untyped" +ignore_missing_imports = true files = ["sonar/"]