Is there any way to isolate the pex file for a par...
# general
c
Is there any way to isolate the pex file for a particular test target and the run it with a profiler so I can see exactly where all the time is spent. Running into an issue where the pytest reported test time is significantly lower than the actual run time.
f
Thinking offhand, you can probably run with
--no-process-execution-local-cleanup
to preserve the sandbox used for the test
2
that should have the pex plus a script with the arguments that had been passed in
then modify the script to add the profiler invocation
c
k i'll mess around with that - thanks