aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/contrib/lite/python
diff options
context:
space:
mode:
authorGravatar A. Unique TensorFlower <gardener@tensorflow.org>2018-07-17 14:45:12 -0700
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2018-07-17 14:49:15 -0700
commit67d7f85537bc7bb9638f3af0303f33f3f8990b6c (patch)
tree0675a8817d3e737c85f207f000e6e13c11838e7d /tensorflow/contrib/lite/python
parentc9fdfab3781bd55cf3d981b98982a1e8122de8d2 (diff)
Add 'no_oss' to all TF Lite tests that are not running in kokoro
PiperOrigin-RevId: 204978094
Diffstat (limited to 'tensorflow/contrib/lite/python')
-rw-r--r--tensorflow/contrib/lite/python/BUILD10
1 files changed, 8 insertions, 2 deletions
diff --git a/tensorflow/contrib/lite/python/BUILD b/tensorflow/contrib/lite/python/BUILD
index 8c9608db04..727fbff38e 100644
--- a/tensorflow/contrib/lite/python/BUILD
+++ b/tensorflow/contrib/lite/python/BUILD
@@ -71,7 +71,10 @@ py_test(
srcs = ["lite_test.py"],
data = [":interpreter_test_data"],
srcs_version = "PY2AND3",
- tags = ["no_windows"],
+ tags = [
+ "no_oss",
+ "no_windows",
+ ],
deps = [
":lite",
],
@@ -163,7 +166,10 @@ py_test(
name = "convert_saved_model_test",
srcs = ["convert_saved_model_test.py"],
srcs_version = "PY2AND3",
- tags = ["no_windows"],
+ tags = [
+ "no_oss",
+ "no_windows",
+ ],
visibility = ["//visibility:public"],
deps = [
":convert_saved_model",