Running turbo run test executes dependency tasks for every package in the monorepo, even packages that do not define a test script at all. For example, if only the bar package has a test script depending on foo, the build task of an unrelated baz package still runs. The expected behavior is that turbo only builds the task graph from packages that actually define the task. This affects large monorepos where hundreds of useless task invocations slow everything down.