* Use `testcontainers-go` * Wait for ready * Sleep * Remove `time.Sleep` * Wait until devices appear * Pass environment * Add `golangci-lint` to tools * Minor
10 lines
182 B
Go
10 lines
182 B
Go
//go:build tools
|
|
// +build tools
|
|
|
|
package tools
|
|
|
|
import (
|
|
_ "github.com/golangci/golangci-lint/cmd/golangci-lint"
|
|
_ "github.com/hashicorp/terraform-plugin-docs/cmd/tfplugindocs"
|
|
)
|