Skip to content

Commit c23ff03

Browse files
CI: temporary skip parquet tz test for pyarrow>=2.0.0 (#37303)
1 parent baddf02 commit c23ff03

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

pandas/tests/io/test_parquet.py

+4
Original file line numberDiff line numberDiff line change
@@ -765,6 +765,10 @@ def test_timestamp_nanoseconds(self, pa):
765765
check_round_trip(df, pa, write_kwargs={"version": "2.0"})
766766

767767
def test_timezone_aware_index(self, pa, timezone_aware_date_list):
768+
if LooseVersion(pyarrow.__version__) >= LooseVersion("2.0.0"):
769+
# temporary skip this test until it is properly resolved
770+
# https://github.com/pandas-dev/pandas/issues/37286
771+
pytest.skip()
768772
idx = 5 * [timezone_aware_date_list]
769773
df = pd.DataFrame(index=idx, data={"index_as_col": idx})
770774

0 commit comments

Comments
 (0)