-
Notifications
You must be signed in to change notification settings - Fork 285
Add a separate go.mod for test/ directory to avoid dependency creep in root go.mod #789
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
Merged
dcantah
merged 2 commits into
microsoft:master
from
dims:add-new-go.mod-in-test-directory-to-cleanup-root-dependencies
Mar 31, 2020
Merged
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,36 @@ | ||
| module github.com/Microsoft/hcsshim/test | ||
|
|
||
| go 1.13 | ||
|
|
||
| require ( | ||
| github.com/Microsoft/go-winio v0.4.15-0.20190919025122-fc70bd9a86b5 | ||
| github.com/Microsoft/hcsshim v0.8.7 | ||
| github.com/blang/semver v3.1.0+incompatible // indirect | ||
| github.com/containerd/containerd v1.3.2 | ||
| github.com/containerd/go-runc v0.0.0-20180907222934-5a6d9f37cfa3 | ||
| github.com/containerd/ttrpc v0.0.0-20190828154514-0e0f228740de | ||
| github.com/containerd/typeurl v0.0.0-20180627222232-a93fcdb778cd | ||
| github.com/coreos/go-systemd v0.0.0-20190719114852-fd7a80b32e1f // indirect | ||
| github.com/docker/distribution v0.0.0-20190905152932-14b96e55d84c // indirect | ||
| github.com/docker/go-events v0.0.0-20190806004212-e31b211e4f1c // indirect | ||
| github.com/godbus/dbus v4.1.0+incompatible // indirect | ||
| github.com/gogo/googleapis v1.2.0 // indirect | ||
| github.com/gogo/protobuf v1.3.1 | ||
| github.com/hashicorp/errwrap v0.0.0-20141028054710-7554cd9344ce // indirect | ||
| github.com/hashicorp/go-multierror v0.0.0-20161216184304-ed905158d874 // indirect | ||
| github.com/imdario/mergo v0.3.8 // indirect | ||
| github.com/opencontainers/runtime-spec v0.1.2-0.20190507144316-5b71a03e2700 | ||
| github.com/opencontainers/runtime-tools v0.0.0-20181011054405-1d69bd0f9c39 | ||
| github.com/pkg/errors v0.8.1 | ||
| github.com/sirupsen/logrus v1.4.2 | ||
| github.com/syndtr/gocapability v0.0.0-20170704070218-db04d3cc01c8 // indirect | ||
| github.com/xeipuuv/gojsonpointer v0.0.0-20180127040702-4e3ac2762d5f // indirect | ||
| github.com/xeipuuv/gojsonreference v0.0.0-20180127040603-bd5ef7bd5415 // indirect | ||
| github.com/xeipuuv/gojsonschema v0.0.0-20180618132009-1d523034197f // indirect | ||
| go.etcd.io/bbolt v1.3.3 // indirect | ||
| golang.org/x/sync v0.0.0-20190423024810-112230192c58 | ||
| google.golang.org/grpc v1.23.1 | ||
| k8s.io/cri-api v0.17.3 | ||
| ) | ||
|
|
||
| replace github.com/Microsoft/hcsshim => ../ |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.