From 5b8ebdd51cbfa2376c29e0bcb51953609829b142 Mon Sep 17 00:00:00 2001 From: Meghna Natraj Date: Wed, 20 Jan 2021 20:10:41 -0800 Subject: [PATCH] Enable MacOS and Windows tests which use the python flatbuffer library. PiperOrigin-RevId: 352930704 Change-Id: I1ed53cf24bc2e45c9af8310da1fbeb50b4e7933e --- tensorflow/lite/python/BUILD | 4 ---- tensorflow/lite/tools/BUILD | 6 ------ tensorflow/lite/tools/optimize/python/BUILD | 3 --- 3 files changed, 13 deletions(-) diff --git a/tensorflow/lite/python/BUILD b/tensorflow/lite/python/BUILD index 4ba8c4d05ca..86adc9d4c90 100644 --- a/tensorflow/lite/python/BUILD +++ b/tensorflow/lite/python/BUILD @@ -39,8 +39,6 @@ py_test( python_version = "PY3", srcs_version = "PY3", tags = [ - "no_mac", # TODO(b/148247402): flatbuffers import broken on Mac OS. - "no_windows", "noasan", # TODO(b/137568139): enable after this is fixed. "nomsan", # TODO(b/137568139): enable after this is fixed. ], @@ -217,7 +215,6 @@ py_test( shard_count = 12, srcs_version = "PY3", tags = [ - "no_mac", # TODO(b/148247402): flatbuffers import broken on Mac OS. "no_windows", ], deps = [ @@ -293,7 +290,6 @@ py_test( python_version = "PY3", srcs_version = "PY3", tags = [ - "no_mac", # TODO(b/148247402): flatbuffers import broken on Mac OS. "no_windows", ], deps = [ diff --git a/tensorflow/lite/tools/BUILD b/tensorflow/lite/tools/BUILD index 3924ff07cf7..7b29b0cd2f0 100644 --- a/tensorflow/lite/tools/BUILD +++ b/tensorflow/lite/tools/BUILD @@ -29,9 +29,6 @@ py_test( srcs = ["visualize_test.py"], python_version = "PY3", srcs_version = "PY3", - tags = [ - "no_mac", # TODO(b/148247402): flatbuffers import broken on Mac OS. - ], deps = [ ":test_utils", ":visualize", @@ -124,9 +121,6 @@ py_test( srcs = ["flatbuffer_utils_test.py"], python_version = "PY3", srcs_version = "PY3", - tags = [ - "no_mac", # TODO(b/148247402): flatbuffers import broken on Mac OS. - ], deps = [ ":flatbuffer_utils", ":test_utils", diff --git a/tensorflow/lite/tools/optimize/python/BUILD b/tensorflow/lite/tools/optimize/python/BUILD index ead5d49f13b..d58cbcc8a09 100644 --- a/tensorflow/lite/tools/optimize/python/BUILD +++ b/tensorflow/lite/tools/optimize/python/BUILD @@ -37,9 +37,6 @@ py_test( srcs = ["modify_model_interface_lib_test.py"], python_version = "PY3", srcs_version = "PY3", - tags = [ - "no_mac", # TODO(b/148247402): flatbuffers import broken on Mac OS. - ], deps = [ ":modify_model_interface_lib", "//tensorflow:tensorflow_py",