rough-book-52790
05/23/2024, 11:41 PM--process-execution-local-parallelism=1
. The tests themselves don't take that long to run. However, doing things sequentially also affects the step of building all the .pex files, which takes forever. My plan, for now, is the following:
1. Run pants test :: -- --setup-plan
. This should build all the .pex files concurrently~, but will ultimately fail when the tests are run.~
2. Run pants --process-execution-local-parallelism=1 test ::
. This should run without having to rebuild any of the .pex files.
Just wondering if there's any better workarounds.wide-midnight-78598
05/24/2024, 1:25 AMwide-midnight-78598
05/24/2024, 1:26 AMbroad-processor-92400
05/24/2024, 1:30 AMwide-midnight-78598
05/24/2024, 1:46 AMrough-book-52790
05/24/2024, 3:21 PM--setup-plan
cmdline arg which seems to pretty much nullify test running which is ideal for the first step of just building pex files.