blob: 182fcce04594be8c90155a4221629134a83795fa [file] [log] [blame]
load("@io_bazel_rules_go//go:def.bzl", "go_library")
load("//bazel/go:go_test.bzl", "go_test")
go_library(
name = "compare",
srcs = [
"compare.go",
"kolmogorov_smirnov.go",
"mann_whitney_u.go",
],
importpath = "go.skia.org/infra/bisection/go/compare",
visibility = ["//visibility:public"],
deps = ["//bisection/go/compare/thresholds"],
)
go_test(
name = "compare_test",
srcs = [
"compare_test.go",
"kolmogorov_smirnov_test.go",
"mann_whitney_u_test.go",
],
embed = [":compare"],
deps = ["@com_github_stretchr_testify//assert"],
)