-
Notifications
You must be signed in to change notification settings - Fork 20
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Delegate to ./pants
when [DEFAULT] delegate_bootstrap=true
.
#75
Conversation
The choice of config section for the `pants.toml` config file was made to have something that won't choke the regular Pants configuration verification and also not show up in any online help.
I'm not sure how/where to write tests for this, but it seems to do what I want when tested on the Pants repo. I have observed though that sometimes it seems like it's attempting to connect with what I suspect is debugpy, but I've no clue as to why that would be. |
You just reviewed the ~same testing needs here: That clones the pants repo quickly at a fixed sha and builds pants and caches it all (CI too). With that - a Pants repo - you have what you need to verify |
Yup, I recognized it when I saw it--thanks for not assuming I did :) |
Hmm... locally this works for me 🤔 -- not sure yet what's different here. |
Ah, it seems that the pants repo is not re-fetched and thus patched. So my new patch is never applied.. Is there any way to clear the caches? (I bumped the cache key in the Edit ftr: this has clearly been solved by now. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for working through this @kaos
Leverage pantsbuild/scie-pants#75 This allow us to run `pants ...` instead of `./pants ...` to run Pants from sources in the Pants repo.
The choice of config section for the
pants.toml
config file was made to have something that won't choke the regular Pants configuration verification and also not show up in any online help.Closes #33