We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 74738cb commit 90776dbCopy full SHA for 90776db
pandas/tests/io/parser/test_unsupported.py
@@ -13,6 +13,7 @@
13
import pytest
14
15
from pandas.compat import (
16
+ is_ci_environment,
17
is_platform_mac,
18
is_platform_windows,
19
)
@@ -177,7 +178,7 @@ def test_close_file_handle_on_invalid_usecols(all_parsers):
177
178
if parser.engine == "pyarrow":
179
pyarrow = pytest.importorskip("pyarrow")
180
error = pyarrow.lib.ArrowKeyError
- if is_platform_windows() or is_platform_mac():
181
+ if is_ci_environment() and (is_platform_windows() or is_platform_mac()):
182
# GH#45547 causes timeouts on windows/mac builds
183
pytest.skip("GH#45547 causing timeouts on windows/mac builds 2022-01-22")
184
0 commit comments