1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
load("//tools:defs.bzl", "go_library", "go_test")
package(licenses = ["notice"])
go_library(
name = "database",
testonly = 1,
srcs = ["database.go"],
deps = ["//test/benchmarks/harness"],
)
go_test(
name = "database_test",
size = "enormous",
srcs = [
"redis_test.go",
],
library = ":database",
tags = [
# Requires docker and runsc to be configured before test runs.
"manual",
"local",
],
deps = [
"//pkg/test/dockerutil",
"//test/benchmarks/harness",
],
)
|