Another related question: we are tying to use Pant...
# general
w
Another related question: we are tying to use Pants in our Jenkins CI. In our CI, we run all unittest first, then integration test. Translate it to pants, we have something like
./pants --tag='unit_test' ::
and
./pants --tag='int_test' ::
, but i found the following in both steps.
Copy code
[2022-04-21T17:10:57.265Z] 13:10:50.51 [INFO] Long running tasks:
[2022-04-21T17:10:57.265Z]   82.29s	Installing build-support/lockfile.txt for the resolve `python-default`
[2022-04-21T17:11:22.031Z] 13:11:20.54 [INFO] Long running tasks:
[2022-04-21T17:11:22.031Z]   112.32s	Installing build-support/lockfile.txt for the resolve `python-default`
I am wondering why this step needs to repeat? @hundreds-father-404