aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/examples/autograph/integration_tests/BUILD
blob: 3630b41fc8d071887931f659a97e7dbe0e38d696 (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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
licenses(["notice"])  # Apache 2.0

exports_files(["LICENSE"])

load("//tensorflow:tensorflow.bzl", "py_test")

filegroup(
    name = "all_files",
    srcs = glob(
        ["**/*"],
        exclude = [
            "**/METADATA",
            "**/OWNERS",
        ],
    ),
    visibility = ["//tensorflow:__subpackages__"],
)

py_test(
    name = "errors_test",
    srcs = [
        "errors_test.py",
    ],
    srcs_version = "PY2AND3",
    tags = ["no_windows"],
    deps = [
        "//tensorflow:tensorflow_py",
    ],
)

py_test(
    name = "keras_test",
    srcs = [
        "keras_test.py",
    ],
    srcs_version = "PY2AND3",
    tags = ["no_windows"],
    deps = [
        "//tensorflow:tensorflow_py",
    ],
)

py_test(
    name = "list_literals_test",
    srcs = [
        "list_literals_test.py",
    ],
    srcs_version = "PY2AND3",
    tags = ["no_windows"],
    deps = [
        "//tensorflow:tensorflow_py",
    ],
)