Add osbuild-weldr-tests command

This commit is contained in:
Brian C. Lane 2020-03-03 08:56:21 -08:00 committed by Lars Karlitski
parent 17ca73ab14
commit b9eb01c9d3

View file

@ -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")
}