mirror of
https://github.com/containers/podman.git
synced 2025-12-16 03:57:36 +08:00
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 <pholzing@redhat.com>
10 lines
179 B
Modula-2
10 lines
179 B
Modula-2
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
|
|
)
|