Skip to content

Commit 56ce679

Browse files
SaturnFromTitanroberthdevries
authored andcommitted
CI: Remove float16 fixture value (pandas-dev#32221)
1 parent 3582166 commit 56ce679

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

pandas/tests/base/test_ops.py

+6
Original file line numberDiff line numberDiff line change
@@ -277,6 +277,12 @@ def test_value_counts_unique_nunique_null(self, null_obj, index_or_series_obj):
277277
pytest.skip(f"values of {klass} cannot be changed")
278278
elif isinstance(orig, pd.MultiIndex):
279279
pytest.skip("MultiIndex doesn't support isna")
280+
elif orig.duplicated().any():
281+
pytest.xfail(
282+
"The test implementation isn't flexible enough to deal"
283+
" with duplicated values. This isn't a bug in the"
284+
" application code, but in the test code."
285+
)
280286

281287
# special assign to the numpy array
282288
if is_datetime64tz_dtype(obj):

0 commit comments

Comments
 (0)