From 3b9177995e0124beb064ef8615ba9a2ae7ca4f4b Mon Sep 17 00:00:00 2001 From: Paul Holzinger Date: Wed, 4 May 2022 14:17:02 +0200 Subject: vendor test tools in submodule Instead of using the main module we should vendor the test tools in a different directory. That way we do not add extra dependencies to the main module which can be problemetic for packages or other users. This is already done in buildah so this makes us more consitent. Signed-off-by: Paul Holzinger --- test/tools/go.mod | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 test/tools/go.mod (limited to 'test/tools/go.mod') diff --git a/test/tools/go.mod b/test/tools/go.mod new file mode 100644 index 000000000..79d1fabe8 --- /dev/null +++ b/test/tools/go.mod @@ -0,0 +1,9 @@ +module github.com/containers/podman/test/tools + +go 1.16 + +require ( + github.com/cpuguy83/go-md2man/v2 v2.0.2 + github.com/vbatts/git-validation v1.1.0 + golang.org/x/tools v0.1.10 +) -- cgit v1.2.3-54-g00ecf