diff --git a/.github/workflows/mypy.yaml b/.github/workflows/mypy.yaml index 0d630e3f..1829fe62 100644 --- a/.github/workflows/mypy.yaml +++ b/.github/workflows/mypy.yaml @@ -20,4 +20,4 @@ jobs: - run: python --version - run: mypy --version - name: run mypy - run: mypy --config-file pyproject.toml + run: mypy --show-traceback --config-file pyproject.toml diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 30d84101..ebc7e132 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -39,6 +39,7 @@ repos: hooks: - id: mypy args: [ + '--show-traceback', '--config-file=pyproject.toml' ] fail_fast: true