Skip to content

Commit

Permalink
skip pd.array checks
Browse files Browse the repository at this point in the history
  • Loading branch information
liferoad committed Jan 18, 2025
1 parent 74122e6 commit 7cca1aa
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions sdks/python/apache_beam/dataframe/pandas_doctests_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -572,6 +572,12 @@ def test_series_tests(self):
'pandas.core.series.Series.to_timestamp': ['*'],
},
skip={
'pandas.core.series.Series.array': [
"pd.array(['a', 'b'], dtype=str)",
"pd.array(['a', 'b'], dtype=np.dtype(\"<U1\"))",
"pd.array([1 + 1j, 3 + 2j])",
"pd.array([1, 2], dtype=np.dtype(\"int32\"))",
],
# Relies on setting values with iloc
'pandas.core.series.Series': ['ser', 'r'],
'pandas.core.series.Series.groupby': [
Expand Down

0 comments on commit 7cca1aa

Please sign in to comment.