File tree Expand file tree Collapse file tree 1 file changed +7
-4
lines changed Expand file tree Collapse file tree 1 file changed +7
-4
lines changed Original file line number Diff line number Diff line change 1212
1313import pytest
1414
15- from pandas .compat import is_platform_windows
15+ from pandas .compat import (
16+ is_platform_mac ,
17+ is_platform_windows ,
18+ )
1619from pandas .errors import ParserError
1720
1821import pandas ._testing as tm
@@ -174,9 +177,9 @@ def test_close_file_handle_on_invalide_usecols(all_parsers):
174177 if parser .engine == "pyarrow" :
175178 pyarrow = pytest .importorskip ("pyarrow" )
176179 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" )
180+ if 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" )
180183
181184 with tm .ensure_clean ("test.csv" ) as fname :
182185 Path (fname ).write_text ("col1,col2\n a,b\n 1,2" )
You can’t perform that action at this time.
0 commit comments