rules_mypy runs on py_library/py_test and would try to type check this file
it would then fail with something like:
bazel-out/k8-fastbuild/.../__test__.py:42: error: Need type annotation for "user_args" (hint: "user_args: list[<type>] = ...") [var-annotated]
bazel-out/k8-fastbuild/.../__test__.py:43: error: Expression type contains "Any" (has type "list[Any]") [misc]
bazel-out/k8-fastbuild/.../__test__.py:44: error: Expression type contains "Any" (has type "list[Any]") [misc]
Changes are visible to end-users: yes
rules_mypy
runs on py_library/py_test and would try to type check this filemypy
happy