Skip to content
Merged
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions pandas/tests/io/parser/test_unsupported.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@

import pytest

from pandas.compat import is_platform_windows
from pandas.errors import ParserError

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

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