blob: 911a5c065e8c2790fb0c4f4e3d46c1fe9c6df20a [file] [log] [blame] [edit]
package cliplugins
import (
"fmt"
"os"
"testing"
"github.com/docker/cli/internal/test/environment"
)
func TestMain(m *testing.M) {
if err := environment.Setup(); err != nil {
fmt.Println(err.Error())
os.Exit(3)
}
os.Exit(m.Run())
}