Is there a way to get pants run/test targets to be...
# general
b
Is there a way to get pants run/test targets to be more verbose while building the requirements? Adding pytorch as a requirement to a target is making pants run/test take forever (literally - I cancelled it multiple times when reaching 500s). Adding torch wasn't a problem before. Just now, after a reboot, I can't run these tests anymore
1
Problem solved. Turns out one of my coworkers had changed one of the requirements 🙂
c
One "trick" here with a long running resolve (that you don't want to start over) is to run something like
ps aux | grep pex
to find the process doing the work and then
tail
the pip log file.
👌 1