mirror of
https://github.com/project-zot/zot.git
synced 2024-12-23 22:27:35 -05:00
271b916a26
This adds a new --json flag to the compliance subcommand, which will output the compliance test results as minified JSON to stdout. Also a few other small additions: - Exit 1 if compliance tests fail - Use random port for test server using freeport library (added) Signed-off-by: Josh Dolitsky <393494+jdolitsky@users.noreply.github.com>
30 lines
1 KiB
Text
30 lines
1 KiB
Text
load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test")
|
|
|
|
go_library(
|
|
name = "go_default_library",
|
|
srcs = ["check.go"],
|
|
importpath = "github.com/anuvu/zot/pkg/compliance/v1_0_0",
|
|
visibility = ["//visibility:public"],
|
|
deps = [
|
|
"//pkg/api:go_default_library",
|
|
"//pkg/compliance:go_default_library",
|
|
"@com_github_opencontainers_go_digest//:go_default_library",
|
|
"@com_github_opencontainers_image_spec//specs-go/v1:go_default_library",
|
|
"@com_github_smartystreets_goconvey//convey:go_default_library",
|
|
"@com_github_smartystreets_goconvey//convey/reporting:go_default_library",
|
|
"@in_gopkg_resty_v1//:go_default_library",
|
|
],
|
|
)
|
|
|
|
go_test(
|
|
name = "go_default_test",
|
|
timeout = "short",
|
|
srcs = ["check_test.go"],
|
|
embed = [":go_default_library"],
|
|
deps = [
|
|
"//pkg/api:go_default_library",
|
|
"//pkg/compliance:go_default_library",
|
|
"@com_github_phayes_freeport//:go_default_library",
|
|
"@in_gopkg_resty_v1//:go_default_library",
|
|
],
|
|
)
|