We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 98ea48b commit f423edeCopy full SHA for f423ede
tests/system/small/operations/test_dates.py
@@ -15,8 +15,10 @@
15
16
import datetime
17
18
+from packaging import version
19
import pandas as pd
20
import pandas.testing
21
+import pytest
22
23
from bigframes import dtypes
24
@@ -74,6 +76,8 @@ def test_date_series_diff_agg(scalars_dfs):
74
76
75
77
78
def test_date_can_cast_after_accessor(scalars_dfs):
79
+ if version.Version(pd.__version__) <= version.Version("2.1.0"):
80
+ pytest.skip("pd timezone conversion bug")
81
bf_df, pd_df = scalars_dfs
82
83
actual_result = bf_df["date_col"].dt.isocalendar().week.astype("Int64").to_pandas()
0 commit comments