aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/contrib/testing/BUILD
blob: 8a40e111d7723b0d1c332b9d2381169c8bed510f (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
# Description:
#   contains parts of TensorFlow that are experimental or unstable and which are not supported.

licenses(["notice"])  # Apache 2.0

exports_files(["LICENSE"])

package(default_visibility = ["//tensorflow:__subpackages__"])

py_library(
    name = "testing_py",
    srcs = [
        "__init__.py",
        "python/framework/fake_summary_writer.py",
        "python/framework/util_test.py",
    ],
    srcs_version = "PY2AND3",
    deps = [
        "//tensorflow/core:protos_all_py",
        "//tensorflow/python:summary",
        "//tensorflow/python:training",
        "//third_party/py/numpy",
    ],
)