<#21702 Allow go to do go things> Issue created by...
# github-notifications
c
#21702 Allow go to do go things Issue created by sethgrid Is your feature request related to a problem? Please describe. My company is attempting to put Go into our Pants monorepo. However, the pants tooling is getting in the way. Describe the solution you'd like I want to run go commands, not pants commands, in my projects. I want each project to maintain its own go.mod files. I do not want a root go.mod and go.sum file. I don't need pants to run anything other than some commands in the right project. If I update a project, I simply want the expected checks that we set up and
go test ./...
to run in that project, with the ability to also run
go test ./... -tags integration
. Heck, this could be streamlined to "run a given make command" and let us figure out the what the targets look like. Describe alternatives you've considered abandoning pants Additional context pants was passing when local commands could not, like go test ./...; the inability to run normal commands within a project is untenable. pantsbuild/pants