mirror of
https://github.com/redhat-developer/odo.git
synced 2025-10-19 03:06:19 +03:00
* export GOFLAGS=-mod=vendor in Makefile * use go get instead of go install for installing test dependencies * use tools approach to manage testing dependencies When using this apporoach we can make sure that all dependencies in a proper version are vendored with the source code. * go mod vendor * add wwhrd expection for github.com/hinshun/vt10x
15 lines
373 B
Go
15 lines
373 B
Go
// +build tools
|
|
|
|
package tools
|
|
|
|
import (
|
|
_ "github.com/frapposelli/wwhrd"
|
|
_ "github.com/onsi/ginkgo/ginkgo"
|
|
_ "github.com/securego/gosec/v2/cmd/gosec"
|
|
)
|
|
|
|
// https://github.com/onsi/ginkgo#go-module-tools-package
|
|
|
|
// This file imports packages that are used when running go generate, or used
|
|
// during the development process but not otherwise depended on by built code.
|