Skip to content

Commit 5034aa3

Browse files
jbrockmendelyehoshuadimarsky
authored andcommitted
CI: Troubleshoot (pandas-dev#45507)
1 parent a0b0349 commit 5034aa3

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

pandas/tests/io/parser/test_unsupported.py

+4
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212

1313
import pytest
1414

15+
from pandas.compat import is_platform_windows
1516
from pandas.errors import ParserError
1617

1718
import pandas._testing as tm
@@ -173,6 +174,9 @@ def test_close_file_handle_on_invalide_usecols(all_parsers):
173174
if parser.engine == "pyarrow":
174175
pyarrow = pytest.importorskip("pyarrow")
175176
error = pyarrow.lib.ArrowKeyError
177+
if is_platform_windows():
178+
# GH#45547 causes timeouts on windows builds
179+
pytest.skip("GH#45547 causing timeouts on windows builds 2022-01-22")
176180

177181
with tm.ensure_clean("test.csv") as fname:
178182
Path(fname).write_text("col1,col2\na,b\n1,2")

0 commit comments

Comments
 (0)