From 91782bb6c85d15d1718d7e154bfd12a9ebe9f289 Mon Sep 17 00:00:00 2001 From: Anthony Sottile Date: Wed, 19 Dec 2018 14:08:20 -0800 Subject: [PATCH] xfail windows node until #887 is resolved --- testing/util.py | 1 + 1 file changed, 1 insertion(+) diff --git a/testing/util.py b/testing/util.py index 6a66c7c9..ed38affe 100644 --- a/testing/util.py +++ b/testing/util.py @@ -48,6 +48,7 @@ xfailif_windows_no_ruby = pytest.mark.xfail( def broken_deep_listdir(): # pragma: no cover (platform specific) if sys.platform != 'win32': return False + return True # TODO: remove this after #887 is resolved try: os.listdir(str('\\\\?\\') + os.path.abspath(str('.'))) except OSError: