Just want to confirm if this is a typo? `.pantd.d...
# general
c
Just want to confirm if this is a typo?
.pantd.d/pants.log -> .pants.d/pants.log
on the last version of https://www.pantsbuild.org/v2.15/docs/using-pants-in-ci#tip-store-pants-logs-as-artifacts
👍 1
c
yup, typo
h
I'll fix along with some other docs fixes
Thanks for the heads up!
c
No problem, I was setting up my CI pipeline and was not sure about the logs! Thanks
p
minor issue: https://www.pantsbuild.org/docs/python-test-goal#examples
Copy code
./pants test helloworld/util:
should be
Copy code
./pants test helloworld/util::
I think?
h
It's correct but I guess confusing:
./pants test helloworld/util:
runs all the tests in the dir,
./pants test helloworld/util::
runs all the tests in or under the dir. The explanation should be clearer about that than it is, I guess.
🙌 1
It's not common to use the single
:
, admittedly