STT-tensorflow/tensorflow/examples/tf2_showcase/BUILD
Hye Soo Yang d710569548 PY3 migration - Set py targets to "PY3" in third_party/tensorflow/...
PiperOrigin-RevId: 284874116
Change-Id: I65a79643242b127f014f5eb5f175ac2b28602ce7
2019-12-10 16:30:21 -08:00

33 lines
532 B
Python

package(
default_visibility = ["//visibility:private"],
licenses = ["notice"], # Apache 2.0
)
test_suite(
name = "all_tests",
tags = [
"manual",
"no_oss",
"notap",
],
tests = [
":mnist",
],
)
py_test(
name = "mnist",
srcs = ["mnist.py"],
python_version = "PY3",
tags = [
"manual",
"no_oss",
"notap",
],
deps = [
"//tensorflow:tensorflow_py",
"@absl_py//absl:app",
"@absl_py//absl/flags",
],
)