Join GitHub today
GitHub is home to over 28 million developers working together to host and review code, manage projects, and build software together.
Sign upcmd/go: add 'require test' section to go.mod #26913
Comments
This comment has been minimized.
Show comment
Hide comment
This comment has been minimized.
|
@gopherbot modules |
gopherbot
added
the
modules
label
Aug 10, 2018
This comment has been minimized.
Show comment
Hide comment
This comment has been minimized.
davecheney
Aug 10, 2018
Contributor
Yes please. This mirrors maven's notion of scopes; the set of dependencies for a build scope are different to the set of dependencies for a test scope.
|
Yes please. This mirrors maven's notion of scopes; the set of dependencies for a build scope are different to the set of dependencies for a test scope. |
ianlancetaylor
added
the
NeedsInvestigation
label
Aug 10, 2018
ianlancetaylor
added this to the Go1.11 milestone
Aug 10, 2018
This comment has been minimized.
Show comment
Hide comment
This comment has been minimized.
This comment has been minimized.
Show comment
Hide comment
This comment has been minimized.
rsc
Aug 10, 2018
Contributor
In a sense, go get -t is now the default.
The module download is split into two parts: downloading the go.mod and downloading the actual code. If you have dependencies only needed for tests, then they will show up in your go.mod, and go get will download their go.mods, but it will not download their code. The test-only dependencies get downloaded only when you need it, such as the first time you run go test.
This applies not just to test-only dependencies but also os-specific dependencies. For example if you use logrus but don't use Solaris, then the golang.org/x/sys go.mod needs to be downloaded, but not the code in that repo.
When you do split things out explicitly, then you'd have different version selection results for the different "scopes". You could potentially be using one version for a build and then get a different version for a test. That would be quite unfortunate. Having one unified go.mod avoids that potential problem.
So you're getting the fine-grained separation you want already, for free*, without having to maintain any explicit scopes, and without any possibility of inconsistency.
* The asterisk is that right now because we're still fetching git repos, even to get the go.mod, what I said isn't true. But once we have a better story for a proxy, it will become true, all with no effort. Because we do have a plan to get there, though, we're not planning to add any of these kinds of scopes as a temporary workaround. They'd just cause needless pain in the long run.
|
In a sense, The module download is split into two parts: downloading the go.mod and downloading the actual code. If you have dependencies only needed for tests, then they will show up in your go.mod, and go get will download their go.mods, but it will not download their code. The test-only dependencies get downloaded only when you need it, such as the first time you run This applies not just to test-only dependencies but also os-specific dependencies. For example if you use logrus but don't use Solaris, then the golang.org/x/sys go.mod needs to be downloaded, but not the code in that repo. When you do split things out explicitly, then you'd have different version selection results for the different "scopes". You could potentially be using one version for a build and then get a different version for a test. That would be quite unfortunate. Having one unified go.mod avoids that potential problem. So you're getting the fine-grained separation you want already, for free*, without having to maintain any explicit scopes, and without any possibility of inconsistency. * The asterisk is that right now because we're still fetching git repos, even to get the go.mod, what I said isn't true. But once we have a better story for a proxy, it will become true, all with no effort. Because we do have a plan to get there, though, we're not planning to add any of these kinds of scopes as a temporary workaround. They'd just cause needless pain in the long run. |
rsc
closed this
Aug 10, 2018
rsc
referenced this issue
Aug 10, 2018
Open
cmd/go: allow forcing tags on/off during go mod vendor, tidy #25873
This was referenced Aug 12, 2018
This comment has been minimized.
Show comment
Hide comment
This comment has been minimized.
posener
Sep 10, 2018
@rsc , wouldn't it be helpful to mark in any way dependencies that are only used for tests? I find it quite confusing to have dependencies in the go.mod that are not actually present in run time.
posener
commented
Sep 10, 2018
|
@rsc , wouldn't it be helpful to mark in any way dependencies that are only used for tests? I find it quite confusing to have dependencies in the go.mod that are not actually present in run time. |
This comment has been minimized.
Show comment
Hide comment
This comment has been minimized.
bcmills
Sep 10, 2018
Member
I find it quite confusing to have dependencies in the go.mod that are not actually present in run time.
They are present at run time, if you run go test all, and go mod why should help clear up the confusion for any given dependency.
They are present at run time, if you run |
This comment has been minimized.
Show comment
Hide comment
This comment has been minimized.
wsc1
Sep 29, 2018
I think it would be more clear if there were a way to know from the go tool or the go.mod which requirements are only for testing, and that doing this would not violate the problem of inconsistent scopes. It is in any event helpful to be clear about really why a requirement is there, as requirements without test fall under a different set of considerations for a module maintainer than requirements for tests. (The consumer of the former is more the end user and the later more developers). Similarly for build tags...
Note, this is not to say that I think splitting the requirements is good, as @rsc noted that causes problems. But explaining why requirements are there without mentioning scopes like testing or build tags is not ideal.
Also there is a question on go-nuts where there is some concern about vendoring overhead, but the justification from @rsc
that they are or will be free
"""
- The asterisk is that right now because we're still fetching git repos, even to get the go.mod, what I said isn't true. But once we have a better story for a proxy, it will become true, all with no effort. Because we do have a plan to get there, though, we're not planning to add any of these kinds of scopes as a temporary workaround. They'd just cause needless pain in the long run.
"""
does not address the relationship to vendoring. Sorry I don't have an answer for whether there is vendoring overhead.
CC @rsc
wsc1
commented
Sep 29, 2018
•
|
I think it would be more clear if there were a way to know from the go tool or the go.mod which requirements are only for testing, and that doing this would not violate the problem of inconsistent scopes. It is in any event helpful to be clear about really why a requirement is there, as requirements without test fall under a different set of considerations for a module maintainer than requirements for tests. (The consumer of the former is more the end user and the later more developers). Similarly for build tags... Note, this is not to say that I think splitting the requirements is good, as @rsc noted that causes problems. But explaining why requirements are there without mentioning scopes like testing or build tags is not ideal. Also there is a question on go-nuts where there is some concern about vendoring overhead, but the justification from @rsc
CC @rsc |
This comment has been minimized.
Show comment
Hide comment
This comment has been minimized.
wsc1
commented
Sep 29, 2018
|
redirecting my comment above to related #26955 |
OneOfOne commentedAug 10, 2018
Please answer these questions before submitting your issue. Thanks!
What version of Go are you using (
go version)?go version devel +479da24aac 2018-08-10 00:47:31 +0000 linux/amd64
Does this issue reproduce with the latest release?
Yes.
What operating system and processor architecture are you using (
go env)?Linux/amd64
What did you do?
What did you expect to see?
What did you see instead?
Those 2 deps are only used in
*_test.gofiles.This isn't a bug really but more of a feature request, is there any way to split those sections into
require (...)andrequire test (...)?Without that split,
go get -tis pretty much meaningless.If there's interest, I'd like to take a stab at it.