-
Notifications
You must be signed in to change notification settings - Fork 2
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
Too many dependencies #1
Comments
Yeah this is a frustrating problem with go.mod. All the dependencies are actually test-only dependencies, and they won't be pulled on I'm not a fan of changing how the code (and tests) is structured to bypass a shortcoming of the official tooling, so I'd rather keep it this way and wait for updates on golang/go#44743 or golang/go#26955 (I don't close the issue yet because I'm still a bit torn on this) |
I changed my mind and did the split, having an empty root go.mod is great :D |
An alternative would be to use a tool like https://github.com/komuw/ote. |
Too many dependencies referenced in go.mod.
It would be helpful to move the test suite to a separate Go module in the same repo. Go workspaces might be helpful for development.
The text was updated successfully, but these errors were encountered: