Skip to content

Commit d2f3903

Browse files
more xfails
1 parent d89eba7 commit d2f3903

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

53 files changed

+217
-5
lines changed

pandas/tests/copy_view/test_array.py

+3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
import numpy as np
22
import pytest
33

4+
from pandas._config import using_string_dtype
5+
46
from pandas import (
57
DataFrame,
68
Series,
@@ -117,6 +119,7 @@ def test_dataframe_array_ea_dtypes():
117119
assert arr.flags.writeable is False
118120

119121

122+
@pytest.mark.xfail(using_string_dtype(), reason="TODO(infer_string)")
120123
def test_dataframe_array_string_dtype():
121124
df = DataFrame({"a": ["a", "b"]}, dtype="string")
122125
arr = np.asarray(df)

pandas/tests/copy_view/test_astype.py

+6
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@
33
import numpy as np
44
import pytest
55

6+
from pandas._config import using_string_dtype
7+
68
from pandas.compat.pyarrow import pa_version_under12p0
79
import pandas.util._test_decorators as td
810

@@ -82,6 +84,7 @@ def test_astype_numpy_to_ea():
8284
assert np.shares_memory(get_array(ser), get_array(result))
8385

8486

87+
@pytest.mark.xfail(using_string_dtype(), reason="TODO(infer_string)")
8588
@pytest.mark.parametrize(
8689
"dtype, new_dtype", [("object", "string"), ("string", "object")]
8790
)
@@ -95,6 +98,7 @@ def test_astype_string_and_object(dtype, new_dtype):
9598
tm.assert_frame_equal(df, df_orig)
9699

97100

101+
@pytest.mark.xfail(using_string_dtype(), reason="TODO(infer_string)")
98102
@pytest.mark.parametrize(
99103
"dtype, new_dtype", [("object", "string"), ("string", "object")]
100104
)
@@ -195,6 +199,7 @@ def test_astype_arrow_timestamp():
195199
assert np.shares_memory(get_array(df, "a"), get_array(result, "a")._pa_array)
196200

197201

202+
@pytest.mark.xfail(using_string_dtype(), reason="TODO(infer_string)")
198203
def test_convert_dtypes_infer_objects():
199204
ser = Series(["a", "b", "c"])
200205
ser_orig = ser.copy()
@@ -210,6 +215,7 @@ def test_convert_dtypes_infer_objects():
210215
tm.assert_series_equal(ser, ser_orig)
211216

212217

218+
@pytest.mark.xfail(using_string_dtype(), reason="TODO(infer_string)")
213219
def test_convert_dtypes():
214220
df = DataFrame({"a": ["a", "b"], "b": [1, 2], "c": [1.5, 2.5], "d": [True, False]})
215221
df_orig = df.copy()

pandas/tests/copy_view/test_constructors.py

+3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
import numpy as np
22
import pytest
33

4+
from pandas._config import using_string_dtype
5+
46
import pandas as pd
57
from pandas import (
68
DataFrame,
@@ -207,6 +209,7 @@ def test_dataframe_from_dict_of_series_with_reindex(dtype):
207209
assert np.shares_memory(arr_before, arr_after)
208210

209211

212+
@pytest.mark.xfail(using_string_dtype(), reason="TODO(infer_string)", strict=False)
210213
@pytest.mark.parametrize(
211214
"data, dtype", [([1, 2], None), ([1, 2], "int64"), (["a", "b"], None)]
212215
)

pandas/tests/copy_view/test_functions.py

+8
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
import numpy as np
22
import pytest
33

4+
from pandas._config import using_string_dtype
5+
46
from pandas import (
57
DataFrame,
68
Index,
@@ -12,6 +14,7 @@
1214
from pandas.tests.copy_view.util import get_array
1315

1416

17+
@pytest.mark.xfail(using_string_dtype(), reason="TODO(infer_string)")
1518
def test_concat_frames():
1619
df = DataFrame({"b": ["a"] * 3})
1720
df2 = DataFrame({"a": ["a"] * 3})
@@ -30,6 +33,7 @@ def test_concat_frames():
3033
tm.assert_frame_equal(df, df_orig)
3134

3235

36+
@pytest.mark.xfail(using_string_dtype(), reason="TODO(infer_string)")
3337
def test_concat_frames_updating_input():
3438
df = DataFrame({"b": ["a"] * 3})
3539
df2 = DataFrame({"a": ["a"] * 3})
@@ -149,6 +153,7 @@ def test_concat_copy_keyword():
149153
assert np.shares_memory(get_array(df2, "b"), get_array(result, "b"))
150154

151155

156+
@pytest.mark.xfail(using_string_dtype(), reason="TODO(infer_string)")
152157
@pytest.mark.parametrize(
153158
"func",
154159
[
@@ -200,6 +205,7 @@ def test_merge_on_index():
200205
tm.assert_frame_equal(df2, df2_orig)
201206

202207

208+
@pytest.mark.xfail(using_string_dtype(), reason="TODO(infer_string)", strict=False)
203209
@pytest.mark.parametrize(
204210
"func, how",
205211
[
@@ -243,6 +249,7 @@ def test_merge_copy_keyword():
243249
assert np.shares_memory(get_array(df2, "b"), get_array(result, "b"))
244250

245251

252+
@pytest.mark.xfail(using_string_dtype(), reason="TODO(infer_string)")
246253
def test_join_on_key():
247254
df_index = Index(["a", "b", "c"], name="key")
248255

@@ -270,6 +277,7 @@ def test_join_on_key():
270277
tm.assert_frame_equal(df2, df2_orig)
271278

272279

280+
@pytest.mark.xfail(using_string_dtype(), reason="TODO(infer_string)")
273281
def test_join_multiple_dataframes_on_key():
274282
df_index = Index(["a", "b", "c"], name="key")
275283

pandas/tests/copy_view/test_internals.py

+3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
import numpy as np
22
import pytest
33

4+
from pandas._config import using_string_dtype
5+
46
from pandas import DataFrame
57
import pandas._testing as tm
68
from pandas.tests.copy_view.util import get_array
@@ -40,6 +42,7 @@ def test_consolidate():
4042
assert df.loc[0, "b"] == 0.1
4143

4244

45+
@pytest.mark.xfail(using_string_dtype(), reason="TODO(infer_string)", strict=False)
4346
@pytest.mark.parametrize("dtype", [np.intp, np.int8])
4447
@pytest.mark.parametrize(
4548
"locs, arr",

pandas/tests/copy_view/test_interp_fillna.py

+4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
import numpy as np
22
import pytest
33

4+
from pandas._config import using_string_dtype
5+
46
from pandas import (
57
NA,
68
DataFrame,
@@ -110,6 +112,7 @@ def test_interp_fill_functions_inplace(func, dtype):
110112
assert view._mgr._has_no_reference(0)
111113

112114

115+
@pytest.mark.xfail(using_string_dtype(), reason="TODO(infer_string)")
113116
def test_interpolate_cannot_with_object_dtype():
114117
df = DataFrame({"a": ["a", np.nan, "c"], "b": 1})
115118

@@ -118,6 +121,7 @@ def test_interpolate_cannot_with_object_dtype():
118121
df.interpolate()
119122

120123

124+
@pytest.mark.xfail(using_string_dtype(), reason="TODO(infer_string)")
121125
def test_interpolate_object_convert_no_op():
122126
df = DataFrame({"a": ["a", "b", "c"], "b": 1})
123127
arr_a = get_array(df, "a")

pandas/tests/copy_view/test_methods.py

+4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
import numpy as np
22
import pytest
33

4+
from pandas._config import using_string_dtype
5+
46
import pandas as pd
57
from pandas import (
68
DataFrame,
@@ -712,6 +714,7 @@ def test_head_tail(method):
712714
tm.assert_frame_equal(df, df_orig)
713715

714716

717+
@pytest.mark.xfail(using_string_dtype(), reason="TODO(infer_string)")
715718
def test_infer_objects():
716719
df = DataFrame({"a": [1, 2], "b": "c", "c": 1, "d": "x"})
717720
df_orig = df.copy()
@@ -896,6 +899,7 @@ def test_sort_values_inplace(obj, kwargs):
896899
tm.assert_equal(view, obj_orig)
897900

898901

902+
@pytest.mark.xfail(using_string_dtype(), reason="TODO(infer_string)")
899903
@pytest.mark.parametrize("decimals", [-1, 0, 1])
900904
def test_round(decimals):
901905
df = DataFrame({"a": [1, 2], "b": "c"})

pandas/tests/copy_view/test_replace.py

+5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
import numpy as np
22
import pytest
33

4+
from pandas._config import using_string_dtype
5+
46
from pandas import (
57
Categorical,
68
DataFrame,
@@ -9,6 +11,7 @@
911
from pandas.tests.copy_view.util import get_array
1012

1113

14+
@pytest.mark.xfail(using_string_dtype(), reason="TODO(infer_string)")
1215
@pytest.mark.parametrize(
1316
"replace_kwargs",
1417
[
@@ -56,6 +59,7 @@ def test_replace_regex_inplace_refs():
5659
tm.assert_frame_equal(view, df_orig)
5760

5861

62+
@pytest.mark.xfail(using_string_dtype(), reason="TODO(infer_string)")
5963
def test_replace_regex_inplace():
6064
df = DataFrame({"a": ["aaa", "bbb"]})
6165
arr = get_array(df, "a")
@@ -253,6 +257,7 @@ def test_replace_empty_list():
253257
assert not df2._mgr._has_no_reference(0)
254258

255259

260+
@pytest.mark.xfail(using_string_dtype(), reason="TODO(infer_string)")
256261
@pytest.mark.parametrize("value", ["d", None])
257262
def test_replace_object_list_inplace(value):
258263
df = DataFrame({"a": ["a", "b", "c"]})

pandas/tests/frame/methods/test_reset_index.py

+3
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@
44
import numpy as np
55
import pytest
66

7+
from pandas._config import using_string_dtype
8+
79
from pandas.core.dtypes.common import (
810
is_float_dtype,
911
is_integer_dtype,
@@ -642,6 +644,7 @@ def test_rest_index_multiindex_categorical_with_missing_values(self, codes):
642644
tm.assert_frame_equal(res, expected)
643645

644646

647+
@pytest.mark.xfail(using_string_dtype(), reason="TODO(infer_string)")
645648
@pytest.mark.parametrize(
646649
"array, dtype",
647650
[

pandas/tests/frame/test_arithmetic.py

+3
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@
1111
import numpy as np
1212
import pytest
1313

14+
from pandas._config import using_string_dtype
15+
1416
import pandas as pd
1517
from pandas import (
1618
DataFrame,
@@ -1540,6 +1542,7 @@ def test_comparisons(self, simple_frame, float_frame, func):
15401542
with pytest.raises(ValueError, match=msg):
15411543
func(simple_frame, simple_frame[:2])
15421544

1545+
@pytest.mark.xfail(using_string_dtype(), reason="TODO(infer_string)")
15431546
def test_strings_to_numbers_comparisons_raises(self, compare_operators_no_eq_ne):
15441547
# GH 11565
15451548
df = DataFrame(

pandas/tests/frame/test_arrow_interface.py

+4
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,16 @@
22

33
import pytest
44

5+
from pandas._config import using_string_dtype
6+
57
import pandas.util._test_decorators as td
68

79
import pandas as pd
810

911
pa = pytest.importorskip("pyarrow")
1012

1113

14+
@pytest.mark.xfail(using_string_dtype(), reason="TODO(infer_string)")
1215
@td.skip_if_no("pyarrow", min_version="14.0")
1316
def test_dataframe_arrow_interface():
1417
df = pd.DataFrame({"a": [1, 2, 3], "b": ["a", "b", "c"]})
@@ -31,6 +34,7 @@ def test_dataframe_arrow_interface():
3134
assert table.equals(expected)
3235

3336

37+
@pytest.mark.xfail(using_string_dtype(), reason="TODO(infer_string)")
3438
@td.skip_if_no("pyarrow", min_version="15.0")
3539
def test_dataframe_to_arrow():
3640
df = pd.DataFrame({"a": [1, 2, 3], "b": ["a", "b", "c"]})

pandas/tests/frame/test_constructors.py

+1
Original file line numberDiff line numberDiff line change
@@ -1935,6 +1935,7 @@ def test_constructor_with_datetimes4(self):
19351935
df = DataFrame({"value": dr})
19361936
assert str(df.iat[0, 0].tz) == "US/Eastern"
19371937

1938+
@pytest.mark.xfail(using_string_dtype(), reason="TODO(infer_string)")
19381939
def test_constructor_with_datetimes5(self):
19391940
# GH 7822
19401941
# preserver an index with a tz on dict construction

pandas/tests/frame/test_reductions.py

+4
Original file line numberDiff line numberDiff line change
@@ -606,6 +606,7 @@ def test_sem(self, datetime_frame):
606606
result = nanops.nansem(arr, axis=0)
607607
assert not (result < 0).any()
608608

609+
@pytest.mark.xfail(using_string_dtype(), reason="TODO(infer_string)", strict=False)
609610
@pytest.mark.parametrize(
610611
"dropna, expected",
611612
[
@@ -1057,6 +1058,7 @@ def test_sum_bools(self):
10571058
# ----------------------------------------------------------------------
10581059
# Index of max / min
10591060

1061+
@pytest.mark.xfail(using_string_dtype(), reason="TODO(infer_string)")
10601062
@pytest.mark.parametrize("axis", [0, 1])
10611063
def test_idxmin(self, float_frame, int_frame, skipna, axis):
10621064
frame = float_frame
@@ -1107,6 +1109,7 @@ def test_idxmin_axis_2(self, float_frame):
11071109
with pytest.raises(ValueError, match=msg):
11081110
frame.idxmin(axis=2)
11091111

1112+
@pytest.mark.xfail(using_string_dtype(), reason="TODO(infer_string)", strict=False)
11101113
@pytest.mark.parametrize("axis", [0, 1])
11111114
def test_idxmax(self, float_frame, int_frame, skipna, axis):
11121115
frame = float_frame
@@ -1346,6 +1349,7 @@ def test_any_all_extra(self):
13461349
result = df[["C"]].all(axis=None).item()
13471350
assert result is True
13481351

1352+
@pytest.mark.xfail(using_string_dtype(), reason="TODO(infer_string)", strict=False)
13491353
@pytest.mark.parametrize("axis", [0, 1])
13501354
def test_any_all_object_dtype(
13511355
self, axis, all_boolean_reductions, skipna, using_infer_string

pandas/tests/groupby/methods/test_describe.py

+4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
import numpy as np
22
import pytest
33

4+
from pandas._config import using_string_dtype
5+
46
import pandas as pd
57
from pandas import (
68
DataFrame,
@@ -71,6 +73,7 @@ def test_series_describe_as_index(as_index, keys):
7173
tm.assert_frame_equal(result, expected)
7274

7375

76+
@pytest.mark.xfail(using_string_dtype(), reason="TODO(infer_string)")
7477
def test_frame_describe_multikey(tsframe):
7578
grouped = tsframe.groupby([lambda x: x.year, lambda x: x.month])
7679
result = grouped.describe()
@@ -246,6 +249,7 @@ def test_describe_non_cython_paths():
246249
tm.assert_frame_equal(result, expected)
247250

248251

252+
@pytest.mark.xfail(using_string_dtype(), reason="TODO(infer_string)", strict=False)
249253
@pytest.mark.parametrize("dtype", [int, float, object])
250254
@pytest.mark.parametrize(
251255
"kwargs",

pandas/tests/groupby/methods/test_nth.py

+3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
import numpy as np
22
import pytest
33

4+
from pandas._config import using_string_dtype
5+
46
import pandas as pd
57
from pandas import (
68
DataFrame,
@@ -677,6 +679,7 @@ def test_first_multi_key_groupby_categorical():
677679
tm.assert_frame_equal(result, expected)
678680

679681

682+
@pytest.mark.xfail(using_string_dtype(), reason="TODO(infer_string)", strict=False)
680683
@pytest.mark.parametrize("method", ["first", "last", "nth"])
681684
def test_groupby_last_first_nth_with_none(method, nulls_fixture):
682685
# GH29645

pandas/tests/groupby/methods/test_quantile.py

+4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
import numpy as np
22
import pytest
33

4+
from pandas._config import using_string_dtype
5+
46
import pandas as pd
57
from pandas import (
68
DataFrame,
@@ -156,6 +158,7 @@ def test_groupby_quantile_with_arraylike_q_and_int_columns(frame_size, groupby,
156158
tm.assert_frame_equal(result, expected)
157159

158160

161+
@pytest.mark.xfail(using_string_dtype(), reason="TODO(infer_string)")
159162
def test_quantile_raises():
160163
df = DataFrame([["foo", "a"], ["foo", "b"], ["foo", "c"]], columns=["key", "val"])
161164

@@ -238,6 +241,7 @@ def test_groupby_quantile_nullable_array(values, q):
238241
tm.assert_series_equal(result, expected)
239242

240243

244+
@pytest.mark.xfail(using_string_dtype(), reason="TODO(infer_string)", strict=False)
241245
@pytest.mark.parametrize("q", [0.5, [0.0, 0.5, 1.0]])
242246
@pytest.mark.parametrize("numeric_only", [True, False])
243247
def test_groupby_quantile_raises_on_invalid_dtype(q, numeric_only):

0 commit comments

Comments
 (0)