Files
podman/test/tools/tools.go
Paul Holzinger c7827957a4 ginkgo: restructure install work flow
- move the ginkgo deps into test/tools which is more consitent with the
  other tools there, listing in dependencies always causes errors with
  linters
- do not install it globally on the system, instead we use it in a
  subdir of this project

Signed-off-by: Paul Holzinger <pholzing@redhat.com>
2022-11-25 14:41:43 +01:00

15 lines
292 B
Go

//go:build tools
// +build tools
package tools
// Importing the packages here will allow to vendor those via
// `go mod vendor`.
import (
_ "github.com/cpuguy83/go-md2man/v2"
_ "github.com/onsi/ginkgo/ginkgo"
_ "github.com/vbatts/git-validation"
_ "golang.org/x/tools/cmd/goimports"
)