Skip to content

Commit 563aad3

Browse files
TST: unskip test_close_file_handle_on_invalid_usecols #45566 (#54572)
remove import Co-authored-by: Matthew Roeschke <[email protected]>
1 parent 8dd045d commit 563aad3

File tree

1 file changed

+0
-8
lines changed

1 file changed

+0
-8
lines changed

pandas/tests/io/parser/test_unsupported.py

-8
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,6 @@
1212

1313
import pytest
1414

15-
from pandas.compat import (
16-
is_ci_environment,
17-
is_platform_mac,
18-
is_platform_windows,
19-
)
2015
from pandas.errors import ParserError
2116

2217
import pandas._testing as tm
@@ -177,9 +172,6 @@ def test_close_file_handle_on_invalid_usecols(all_parsers):
177172
if parser.engine == "pyarrow":
178173
pyarrow = pytest.importorskip("pyarrow")
179174
error = pyarrow.lib.ArrowKeyError
180-
if is_ci_environment() and (is_platform_windows() or is_platform_mac()):
181-
# GH#45547 causes timeouts on windows/mac builds
182-
pytest.skip("GH#45547 causing timeouts on windows/mac builds 2022-01-22")
183175

184176
with tm.ensure_clean("test.csv") as fname:
185177
Path(fname).write_text("col1,col2\na,b\n1,2", encoding="utf-8")

0 commit comments

Comments
 (0)