potiuk opened a new pull request, #66685: URL: https://github.com/apache/airflow/pull/66685
The `tool.mypy.plugins` entries on v3-2-test were written as file paths with a typo'd directory name (`airflow_mypy/plugin/...` where the directory is actually `plugins/` plural), and on the file-path format which doesn't match `main`'s use of the module-name format. Result: the `mypy-dev` prek hook fails on every v3-2-test commit that touches a `dev/` file with: ``` dev/pyproject.toml:1: error: Can't find plugin "dev/airflow_mypy/plugin/decorators.py" [misc] ``` Switched to the module-name format already used on `main` (`airflow_mypy.plugins.decorators`). Same intent, plugin discovery actually works. `main` is unaffected — already correct there. v3-2-test only. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
