aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/tools/dist_test/scripts/BUILD
blob: 9041a19af7119071a5742434f065f0879aed1593 (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
29
30
31
32
33
34
35
36
37
# Tools for running distributed benchmarks.

licenses(["notice"])  # Apache 2.0

exports_files(["k8s_tensorflow.py"])

py_library(
    name = "k8s_tensorflow_lib",
    srcs = ["k8s_tensorflow_lib.py"],
    srcs_version = "PY2AND3",
)

py_test(
    name = "k8s_tensorflow_test",
    srcs = ["k8s_tensorflow_test.py"],
    srcs_version = "PY2AND3",
    deps = [
        ":k8s_tensorflow_lib",
        "//tensorflow/python:client_testlib",
    ],
)

py_library(
    name = "kubectl_util_lib",
    srcs = ["kubectl_util.py"],
    srcs_version = "PY2AND3",
)

py_test(
    name = "kubectl_util_test",
    srcs = ["kubectl_util_test.py"],
    srcs_version = "PY2AND3",
    deps = [
        ":kubectl_util_lib",
        "//tensorflow/python:client_testlib",
    ],
)