When running `./pants test` on all the pants repo'...
# general
h
When running
./pants test
on all the pants repo's tests on my laptop (so it takes several minutes to complete), I see this log
Copy code
[INFO] Completed: Building pytest_runner.pex
Repeated several times in the output. Is this a bad artifact in the dynamic UI, or are we really building that pex multiple times for some reason?
The only thing that looks like it can change between targets is interpreter constraints
But we have global interpreter_constraints for the repo
we don't override them anywhere, that I can see
h
wrong PEX, what is being rebuilt is
pytest_runner.pex
, not
pytest.pex
. It gets rebuilt because of
--pex-path
h
Oh, right