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 12
12
13
13
import pytest
14
14
15
- from pandas .compat import is_platform_windows
15
+ from pandas .compat import (
16
+ is_platform_mac ,
17
+ is_platform_windows ,
18
+ )
16
19
from pandas .errors import ParserError
17
20
18
21
import pandas ._testing as tm
@@ -174,9 +177,9 @@ def test_close_file_handle_on_invalide_usecols(all_parsers):
174
177
if parser .engine == "pyarrow" :
175
178
pyarrow = pytest .importorskip ("pyarrow" )
176
179
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" )
180
183
181
184
with tm .ensure_clean ("test.csv" ) as fname :
182
185
Path (fname ).write_text ("col1,col2\n a,b\n 1,2" )
You can’t perform that action at this time.
0 commit comments