I’m not sure if I’m encountering a bug with `--fil...
# general
c
I’m not sure if I’m encountering a bug with
--filter-target-type=python_test
. First, I tried running the following.
Copy code
./pants --changed-since=origin/master dependees --transitive --closed
This output a huge list of changed targets and corresponding dependees (with many test and non-test targets). Then, I ran the following.
Copy code
./pants --changed-since=origin/master dependees --transitive --closed --filter-target-type=python_test
This output a pruned list of the above, but seems to have overpruned. There existed tests in the first list, that did not exist in the second list. Do you know what might be happening?