kiteco-public/kite-go/sandbox/flag_test.go
2021-12-31 23:54:19 -08:00

12 lines
149 B
Go

package sandbox
import "flag"
var (
dockerTests bool
)
func init() {
flag.BoolVar(&dockerTests, "docker", false, "run tests that use docker")
}