Issue #22854: Skip pipe seek tests on Windows

This commit is contained in:
Martin Panter 2016-03-31 10:31:30 +00:00
parent 754aab28ed
commit 0950e6aef6
1 changed files with 7 additions and 2 deletions

View File

@ -424,8 +424,6 @@ class IOTest(unittest.TestCase):
self.assertEqual(obj.readable(), readable)
writable = "w" in abilities
self.assertEqual(obj.writable(), writable)
seekable = "s" in abilities
self.assertEqual(obj.seekable(), seekable)
if isinstance(obj, self.TextIOBase):
data = "3"
@ -451,6 +449,13 @@ class IOTest(unittest.TestCase):
else:
self.assertRaises(OSError, obj.write, data)
if sys.platform.startswith("win") or test in (
pipe_reader, pipe_writer):
# Pipes seem to appear as seekable on Windows
continue
seekable = "s" in abilities
self.assertEqual(obj.seekable(), seekable)
if seekable:
obj.tell()
obj.seek(0)