So why does `--no-v1` not completely disable the v...
# development
h
So why does
--no-v1
not completely disable the v1 engine? What does it do, in fact?
a
i thought it would do exactly that
Copy code
v1_goals, ambiguous_goals, _ = self._options.goals_by_version
    if not v1_goals and (not ambiguous_goals or not self._global_options.v1):
      return PANTS_SUCCEEDED_EXIT_CODE
i think the logic here might be incorrect
(in
local_pants_runner.py
, in the
_maybe_run_v1()
method)
don't have bandwidth to check for sure right now