-
Notifications
You must be signed in to change notification settings - Fork 17.9k
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
cmd/go: don't include the dependencies of external tests in the dependency graph #33857
Comments
Discussed before by @bcmills et al. With a present "fluent" state of module support in go and policies of the project, I think that most you may be able to get out of your complaint is a split presentation of dependencies in
|
Then you wouldn't be able to diagnose problems in your dependencies by running their tests, because running the test would potentially result in a different configuration from the one in which you observed the problem. |
Duplicate of #26626 |
That's #26955. |
@bcmills This is trivial to implement - only generated canonical external representation will be affected, with fully backward compatible content. I am surprised that you do not even have a CL for this yet. So that those willing could forward apply it - like for #32389. |
@av86743, remember that among our Gopher values is to “be charitable”. The reason we don't have a CL for this yet is because we've been dealing with the (literally) hundreds of other |
Thanks for responding so quickly @bcmills and pointing me to an issue that has comments discussing the why behind this behavior. Linking here for anyone else who needs it: #26626 (comment). |
What version of Go are you using (
go version
)?Does this issue reproduce with the latest release?
Yes
What operating system and processor architecture are you using (
go env
)?go env
OutputWhat did you do?
Migrate a repository from Dep to Modules (stellar/go#1634) that is currently dependent on:
github.com/go-sql-driver/mysql@2e00b5cd7039
github.com/jmoiron/sqlx@v1.2.0
What did you expect to see?
These dependencies to be selected by Modules at the same versions, as listed above.
What did you see instead?
Modules selected the following versions:
github.com/go-sql-driver/mysql@v1.4.0
github.com/jmoiron/sqlx@v1.2.0
According to
go mod why
andgo mod graph
the reason Modules is requiring I use at leastmysql@v1.4.0
is becausesqlx.test
depends onmysql@v1.4.0
. Thesqlx
package itself does not importmysql
in any file, and it is only_test.go
files that import themysql
dependency.From what I can see the dependency graph looks like this:
Wrangling with dependencies that are being restricted by test-only dependencies is something I've been struggling with over the last week and this is just one example.
Given that
mypackage
is not dependent onsqlx.test
it seems inconvenient, unintuitive, and unnecessary thatmypackage
would inherit the requirements that are unique only to the tests ofsqlx
. In the reading I did about my understanding of why this exists I could only find comments from folks mentioning a developer might want to run all the tests for all the dependencies of a package. But in this situation, won't the tests for each dependency be built separately, and executed as their own main, and could assume their own dependency graphs without infecting the dependency graph ofmypackage
? It seems like we could make this easier to work with by limiting the impact on the main modules dependency graph by not including external test dependencies.The text was updated successfully, but these errors were encountered: