diff --git a/.github/workflows/run_tests.yml b/.github/workflows/run_tests.yml index d1b939c..647d225 100644 --- a/.github/workflows/run_tests.yml +++ b/.github/workflows/run_tests.yml @@ -46,7 +46,7 @@ jobs: - run: black --check src - run: isort --check-only src - run: ruff check src - - run: mypy src --strict --ignore-missing-imports --disable-error-code import-untyped + - run: mypy src --ignore-missing-imports --disable-error-code import-untyped - run: pyright src - name: Run tests and collect coverage run: pytest --cov --cov-report=xml diff --git a/pyproject.toml b/pyproject.toml index 36e3bb8..1a4ec53 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -35,7 +35,6 @@ build-backend = "poetry.core.masonry.api" profile = "black" [tool.mypy] -strict = true disable_error_code = "import-untyped" ignore_missing_imports = true