Is it a bug or a feature that if you have a module...
# general
g
Is it a bug or a feature that if you have a module A in a monorepo with mypy enabled (not using skip_mypy=True) and another module B (skip_mypy=True) that module A depends on. When I run
pants check module_A
, it still checks module A and module B (instead of just module A). When I run
pants check module_B
it doesn't actually run mypy (like I expect).