Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Exclude a test that doesn't pass due to an upstream issue. #31240

Merged
merged 1 commit into from
May 10, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions sdks/python/apache_beam/dataframe/frames_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
# limitations under the License.

import re
import sys
import unittest
import warnings
from typing import Dict
Expand Down Expand Up @@ -1447,6 +1448,9 @@ def test_unstack_pandas_example2(self):
s = pd.Series(np.arange(1.0, 5.0), index=index)
self._run_test(lambda s: s.unstack(level=0), s)

@unittest.skipIf(
sys.version_info >= (2, 12) and PD_VERSION < (2, 3),
'https://github.com/pandas-dev/pandas/issues/58604')
def test_unstack_pandas_example3(self):
index = self._unstack_get_categorical_index()
s = pd.Series(np.arange(1.0, 5.0), index=index)
Expand Down
Loading