From b9eb01c9d34ebb58981cfab79270ad64d92e42dc Mon Sep 17 00:00:00 2001 From: "Brian C. Lane" Date: Tue, 3 Mar 2020 08:56:21 -0800 Subject: [PATCH] Add osbuild-weldr-tests command --- cmd/osbuild-weldr-tests/main.go | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 cmd/osbuild-weldr-tests/main.go diff --git a/cmd/osbuild-weldr-tests/main.go b/cmd/osbuild-weldr-tests/main.go new file mode 100644 index 000000000..7a7002832 --- /dev/null +++ b/cmd/osbuild-weldr-tests/main.go @@ -0,0 +1,11 @@ +// osbuild-tests runs all of the osbuild integration tests against a live server +// Copyright (C) 2020 by Red Hat, Inc. +package main + +import ( + "github.com/osbuild/osbuild-composer/internal/weldrcheck" +) + +func main() { + weldrcheck.Run("/run/weldr/api.socket") +}