summaryrefslogtreecommitdiffhomepage
path: root/benchmarks/workloads/redisbenchmark/BUILD
blob: 147cfedd2d91ea5d697444fff69eddf0c93e4b95 (plain)
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", "pkg_tar", "py_library", "py_test")
load("//benchmarks:defs.bzl", "test_deps")

package(
    default_visibility = ["//benchmarks:__subpackages__"],
    licenses = ["notice"],
)

py_library(
    name = "redisbenchmark",
    srcs = ["__init__.py"],
)

py_test(
    name = "redisbenchmark_test",
    srcs = ["redisbenchmark_test.py"],
    python_version = "PY3",
    deps = test_deps + [
        ":redisbenchmark",
    ],
)

pkg_tar(
    name = "tar",
    srcs = [
        "Dockerfile",
    ],
)