Skip to content

Commit 8c6841b

Browse files
authored
Disable io_wrapper glob test (#3270)
Disables `testListRecursivelyViaGlobbingForPathWithGlobCharacters` due to a `tf.io.gfile.glob()` breakage in tf-nightly. This should be re-enabled when this issue is fixed: #3260
1 parent 68d0382 commit 8c6841b

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

tensorboard/backend/event_processing/io_wrapper_test.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,10 @@ def testListRecursivelyViaGlobbing(self):
147147
expected, io_wrapper.ListRecursivelyViaGlobbing(temp_dir)
148148
)
149149

150-
def testListRecursivelyViaGlobbingForPathWithGlobCharacters(self):
150+
# Temporarily disable test until tf.io.gfile.glob breaking changes in TF
151+
# nightly are resolved.
152+
# See https://github.com/tensorflow/tensorboard/issues/3260.
153+
def skipTestListRecursivelyViaGlobbingForPathWithGlobCharacters(self):
151154
temp_dir = tempfile.mkdtemp(prefix=self.get_temp_dir())
152155
directory_names = (
153156
"ba*",

0 commit comments

Comments
 (0)