acceptable-balloon-2043
12/13/2024, 8:25 AM--changed-since
and piping it's output to another command with --spec-files
. If your only working dir change is a BUILD file change, these two commands yield different results:
$ pants --changed-since=HEAD lint # runs linter on the BUILD file and sources mapped inside
$ pants --changed-since=HEAD list > changed_targets.txt
$ pants --spec-files=changed_targets.txt lint # runs linter only on source mapped inside changed BUILD FILE, but not the BUILD file itself
Is this expected?curved-manchester-66006
12/13/2024, 9:02 PMecho
some text to a BUILD file in https://github.com/pantsbuild/example-pythonacceptable-balloon-2043
12/16/2024, 11:07 AM