Skip to content

CI: deduplicate skip printing #22950

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

Merged
merged 2 commits into from
Oct 8, 2018

Conversation

TomAugspurger
Copy link
Contributor

Trying to cut down on the noise in the travis log. Right now, we print out skipped / xfailed tests twice. This removes the -r flag passed to pytest. The skipped tests output will still be available under the output of ci/print_skipped.py. I believe that azure automatically parses the XML output anyway.

cc @datapythonista

@TomAugspurger TomAugspurger added this to the 0.24.0 milestone Oct 2, 2018
@TomAugspurger TomAugspurger added the CI Continuous Integration label Oct 2, 2018
@TomAugspurger
Copy link
Contributor Author

As an example, https://travis-ci.org/pandas-dev/pandas/jobs/436287688#L2713 is the end of a test run. https://travis-ci.org/pandas-dev/pandas/jobs/436287688#L3371 is the output of print_skipped.

numpydev is failing :/

@datapythonista
Copy link
Member

Love this change. Not sure if at some point we'll miss something from the warnings, but it really helps to have the failing tests at the end, and not having to scroll up the large list of warnings. Thanks!

@TomAugspurger
Copy link
Contributor Author

Not sure if at some point we'll miss something from the warnings

FWIW, the dev build will still fail on unhandled warnings. The bigger issue is if a PR accidentally skips a bunch of previously running tests. But I don't think we have a great way of seeing that now anyway.

I'm not able to reproduce the numpydev failure locally

______________________ TestSeriesMisc.test_ndarray_compat ______________________
[gw1] linux -- Python 3.7.0 /home/travis/miniconda3/envs/pandas/bin/python
self = <pandas.tests.series.test_api.TestSeriesMisc object at 0x7fa364ff7518>
    def test_ndarray_compat(self):
    
        # test numpy compat with Series as sub-class of NDFrame
        tsdf = DataFrame(np.random.randn(1000, 3), columns=['A', 'B', 'C'],
                         index=date_range('1/1/2000', periods=1000))
    
        def f(x):
            return x[x.idxmax()]
    
>       result = tsdf.apply(f)
pandas/tests/series/test_api.py:405: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
pandas/core/frame.py:6241: in apply
    return op.get_result()
pandas/core/apply.py:151: in get_result
    return self.apply_standard()
pandas/core/apply.py:245: in apply_standard
    dummy = Series(empty_arr, index=index, dtype=values.dtype)
pandas/core/series.py:277: in __init__
    raise_cast_failure=True)
pandas/core/series.py:4269: in _sanitize_array
    subarr = _try_cast(data, True)
pandas/core/series.py:4227: in _try_cast
    subarr = maybe_cast_to_integer_array(arr, dtype)
pandas/core/dtypes/cast.py:1350: in maybe_cast_to_integer_array
    if np.array_equal(arr, casted):
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
a1 = array([ 6.93382322e-310,  6.93382322e-310,  4.65553126e-310,
        4.65553126e-310,  6.93382342e-310, -1.15043653e+0...00000000e+000,  0.00000000e+000,
        0.00000000e+000,  0.00000000e+000,  6.93371033e-310,
       -1.85836974e-295])
a2 = array([ 6.93382322e-310,  6.93382322e-310,  4.65553126e-310,
        4.65553126e-310,  6.93382342e-310, -1.15043653e+0...00000000e+000,  0.00000000e+000,
        0.00000000e+000,  0.00000000e+000,  6.93371033e-310,
       -1.85836974e-295])
    def array_equal(a1, a2):
        """
        True if two arrays have the same shape and elements, False otherwise.
    
        Parameters
        ----------
        a1, a2 : array_like
            Input arrays.
    
        Returns
        -------
        b : bool
            Returns True if the arrays are equal.
    
        See Also
        --------
        allclose: Returns True if two arrays are element-wise equal within a
                  tolerance.
        array_equiv: Returns True if input arrays are shape consistent and all
                     elements equal.
    
        Examples
        --------
        >>> np.array_equal([1, 2], [1, 2])
        True
        >>> np.array_equal(np.array([1, 2]), np.array([1, 2]))
        True
        >>> np.array_equal([1, 2], [1, 2, 3])
        False
        >>> np.array_equal([1, 2], [1, 4])
        False
    
        """
        try:
            a1, a2 = asarray(a1), asarray(a2)
        except Exception:
            return False
        if a1.shape != a2.shape:
            return False
>       return bool(asarray(a1 == a2).all())
E       DeprecationWarning: elementwise comparison failed; this will raise an error in the future.

@jreback
Copy link
Contributor

jreback commented Oct 2, 2018

pls don’t do this

the point is to fix the fails at some point so hiding them just makes this out of sight

if u want to remove the skipped section instead that would be ok

@TomAugspurger
Copy link
Contributor Author

TomAugspurger commented Oct 2, 2018

What part of

``` =========================== short test summary info ============================ XFAIL pandas/tests/test_base.py::test_ndarray_values[array6-expected6] PeriodArray Not implemented XFAIL pandas/tests/test_window.py::TestExpanding::()::test_empty_df_expanding[ls] GH#16425 expanding with offset not supported XFAIL pandas/tests/arithmetic/test_datetime64.py::TestDatetimeIndexArithmetic::()::test_dti_sub_pi[DataFrame-None-D-op0] Tries to broadcast incorrectly XFAIL pandas/tests/arithmetic/test_datetime64.py::TestDatetimeIndexArithmetic::()::test_dti_sub_pi[DataFrame-None-D-op2] Tries to broadcast incorrectly XFAIL pandas/tests/arithmetic/test_datetime64.py::TestDatetimeIndexArithmetic::()::test_dti_sub_pi[DataFrame-None-W-op0] Tries to broadcast incorrectly XFAIL pandas/tests/arithmetic/test_datetime64.py::TestDatetimeIndexArithmetic::()::test_dti_sub_pi[DataFrame-None-W-op2] Tries to broadcast incorrectly XFAIL pandas/tests/arithmetic/test_datetime64.py::TestDatetimeIndexArithmetic::()::test_dti_sub_pi[DataFrame-None-Q-op0] Tries to broadcast incorrectly XFAIL pandas/tests/arithmetic/test_datetime64.py::TestDatetimeIndexArithmetic::()::test_dti_sub_pi[DataFrame-None-Q-op2] Tries to broadcast incorrectly XFAIL pandas/tests/arithmetic/test_datetime64.py::TestDatetimeIndexArithmetic::()::test_dti_sub_pi[DataFrame-None-H-op0] Tries to broadcast incorrectly XFAIL pandas/tests/arithmetic/test_datetime64.py::TestDatetimeIndexArithmetic::()::test_dti_sub_pi[DataFrame-None-H-op2] Tries to broadcast incorrectly XFAIL pandas/tests/arithmetic/test_datetime64.py::TestDatetimeIndexArithmetic::()::test_dti_sub_pi[DataFrame-D-D-op0] Tries to broadcast incorrectly XFAIL pandas/tests/arithmetic/test_datetime64.py::TestDatetimeIndexArithmetic::()::test_dti_sub_pi[DataFrame-D-D-op2] Tries to broadcast incorrectly XFAIL pandas/tests/arithmetic/test_datetime64.py::TestDatetimeIndexArithmetic::()::test_dti_sub_pi[DataFrame-D-W-op0] Tries to broadcast incorrectly XFAIL pandas/tests/arithmetic/test_datetime64.py::TestDatetimeIndexArithmetic::()::test_dti_sub_pi[DataFrame-D-W-op2] Tries to broadcast incorrectly XFAIL pandas/tests/arithmetic/test_datetime64.py::TestDatetimeIndexArithmetic::()::test_dti_sub_pi[DataFrame-D-Q-op0] Tries to broadcast incorrectly XFAIL pandas/tests/arithmetic/test_datetime64.py::TestDatetimeIndexArithmetic::()::test_dti_sub_pi[DataFrame-D-Q-op2] Tries to broadcast incorrectly XFAIL pandas/tests/arithmetic/test_datetime64.py::TestDatetimeIndexArithmetic::()::test_dti_sub_pi[DataFrame-D-H-op0] Tries to broadcast incorrectly XFAIL pandas/tests/arithmetic/test_datetime64.py::TestDatetimeIndexArithmetic::()::test_dti_sub_pi[DataFrame-D-H-op2] Tries to broadcast incorrectly XFAIL pandas/tests/arithmetic/test_numeric.py::TestNumericArraylikeArithmeticWithTimedeltaLike::()::test_numeric_arr_rdiv_tdscalar[three_days0-Float64Index-DataFrame] reason: timedelta64 not converted to nanos; Tick division not imlpemented XFAIL pandas/tests/arithmetic/test_numeric.py::TestNumericArraylikeArithmeticWithTimedeltaLike::()::test_numeric_arr_rdiv_tdscalar[three_days0-Int64Index-Series] reason: timedelta64 not converted to nanos; Tick division not imlpemented XFAIL pandas/tests/arithmetic/test_numeric.py::TestNumericArraylikeArithmeticWithTimedeltaLike::()::test_numeric_arr_rdiv_tdscalar[three_days0-UInt64Index-DataFrame] reason: timedelta64 not converted to nanos; Tick division not imlpemented XFAIL pandas/tests/arithmetic/test_numeric.py::TestNumericArraylikeArithmeticWithTimedeltaLike::()::test_numeric_arr_rdiv_tdscalar[three_days0-RangeIndex-Series] reason: timedelta64 not converted to nanos; Tick division not imlpemented XFAIL pandas/tests/arithmetic/test_numeric.py::TestNumericArraylikeArithmeticWithTimedeltaLike::()::test_numeric_arr_rdiv_tdscalar[three_days1-Float64Index-DataFrame] reason: timedelta64 not converted to nanos; Tick division not imlpemented XFAIL pandas/tests/arithmetic/test_numeric.py::TestNumericArraylikeArithmeticWithTimedeltaLike::()::test_numeric_arr_rdiv_tdscalar[three_days1-Int64Index-Series] reason: timedelta64 not converted to nanos; Tick division not imlpemented XFAIL pandas/tests/arithmetic/test_numeric.py::TestNumericArraylikeArithmeticWithTimedeltaLike::()::test_numeric_arr_rdiv_tdscalar[three_days1-UInt64Index-DataFrame] reason: timedelta64 not converted to nanos; Tick division not imlpemented XFAIL pandas/tests/arithmetic/test_numeric.py::TestNumericArraylikeArithmeticWithTimedeltaLike::()::test_numeric_arr_rdiv_tdscalar[three_days1-RangeIndex-Series] reason: timedelta64 not converted to nanos; Tick division not imlpemented XFAIL pandas/tests/arithmetic/test_numeric.py::TestNumericArraylikeArithmeticWithTimedeltaLike::()::test_numeric_arr_rdiv_tdscalar[three_days4-Float64Index-DataFrame] reason: timedelta64 not converted to nanos; Tick division not imlpemented XFAIL pandas/tests/arithmetic/test_numeric.py::TestNumericArraylikeArithmeticWithTimedeltaLike::()::test_numeric_arr_rdiv_tdscalar[three_days4-Int64Index-Series] reason: timedelta64 not converted to nanos; Tick division not imlpemented XFAIL pandas/tests/arithmetic/test_numeric.py::TestNumericArraylikeArithmeticWithTimedeltaLike::()::test_numeric_arr_rdiv_tdscalar[three_days4-UInt64Index-DataFrame] reason: timedelta64 not converted to nanos; Tick division not imlpemented XFAIL pandas/tests/arithmetic/test_numeric.py::TestNumericArraylikeArithmeticWithTimedeltaLike::()::test_numeric_arr_rdiv_tdscalar[three_days4-RangeIndex-Series] reason: timedelta64 not converted to nanos; Tick division not imlpemented XFAIL pandas/tests/arithmetic/test_numeric.py::TestNumericArraylikeArithmeticWithTimedeltaLike::()::test_numeric_arr_rdiv_tdscalar[three_days5-Float64Index-DataFrame] reason: timedelta64 not converted to nanos; Tick division not imlpemented XFAIL pandas/tests/arithmetic/test_numeric.py::TestNumericArraylikeArithmeticWithTimedeltaLike::()::test_numeric_arr_rdiv_tdscalar[three_days5-Int64Index-Series] reason: timedelta64 not converted to nanos; Tick division not imlpemented XFAIL pandas/tests/arithmetic/test_numeric.py::TestNumericArraylikeArithmeticWithTimedeltaLike::()::test_numeric_arr_rdiv_tdscalar[three_days5-UInt64Index-DataFrame] reason: timedelta64 not converted to nanos; Tick division not imlpemented XFAIL pandas/tests/arithmetic/test_numeric.py::TestNumericArraylikeArithmeticWithTimedeltaLike::()::test_numeric_arr_rdiv_tdscalar[three_days5-RangeIndex-Series] reason: timedelta64 not converted to nanos; Tick division not imlpemented XFAIL pandas/tests/arithmetic/test_numeric.py::TestMultiplicationDivision::()::test_divmod_series[Int64Index] GH#19252 Series has no __rdivmod__ XFAIL pandas/tests/arithmetic/test_numeric.py::TestMultiplicationDivision::()::test_divmod_series[RangeIndex] GH#19252 Series has no __rdivmod__ XFAIL pandas/tests/arithmetic/test_object.py::TestArithmetic::()::test_objarr_radd_str[Index] Does not mask nulls XFAIL pandas/tests/arithmetic/test_object.py::TestArithmetic::()::test_objarr_add_invalid[DataFrame-radd] reason: DataFrame op incorrectly casts the np.arraycase to M8[ns] XFAIL pandas/tests/arithmetic/test_period.py::TestPeriodIndexArithmetic::()::test_parr_add_iadd_parr_raises[DataFrame] Tries to broadcast incorrectly XFAIL pandas/tests/arithmetic/test_period.py::TestPeriodIndexArithmetic::()::test_pi_add_sub_td64_array_tick op with TimedeltaIndex raises, with ndarray OK XFAIL pandas/tests/arithmetic/test_timedelta64.py::TestTimedeltaArraylikeAddSubOps::()::test_td64arr_add_sub_float[DataFrame-add-3.14] reason: Tries to align incorrectly, raises ValueError XFAIL pandas/tests/arithmetic/test_timedelta64.py::TestTimedeltaArraylikeAddSubOps::()::test_td64arr_add_sub_float[DataFrame-sub-3.14] reason: Tries to align incorrectly, raises ValueError XFAIL pandas/tests/arithmetic/test_timedelta64.py::TestTimedeltaArraylikeAddSubOps::()::test_td64arr_sub_pi[None-D-DataFrame] broadcasts along wrong axis XFAIL pandas/tests/arithmetic/test_timedelta64.py::TestTimedeltaArraylikeAddSubOps::()::test_td64arr_sub_pi[None-Q-DataFrame] broadcasts along wrong axis XFAIL pandas/tests/arithmetic/test_timedelta64.py::TestTimedeltaArraylikeAddSubOps::()::test_td64arr_sub_pi[H-D-DataFrame] broadcasts along wrong axis XFAIL pandas/tests/arithmetic/test_timedelta64.py::TestTimedeltaArraylikeAddSubOps::()::test_td64arr_sub_pi[H-Q-DataFrame] broadcasts along wrong axis XFAIL pandas/tests/arithmetic/test_timedelta64.py::TestTimedeltaArraylikeAddSubOps::()::test_tdi_sub_dt64_array[DataFrame] Tries to broadcast incorrectly XFAIL pandas/tests/arithmetic/test_timedelta64.py::TestTimedeltaArraylikeAddSubOps::()::test_td64arr_add_int_series_invalid[DataFrame] Tries to broadcast incorrectly XFAIL pandas/tests/arithmetic/test_timedelta64.py::TestTimedeltaArraylikeAddSubOps::()::test_td64arr_sub_int_series_invalid[DataFrame] Tries to broadcast incorrectly XFAIL pandas/tests/arithmetic/test_timedelta64.py::TestTimedeltaArraylikeAddSubOps::()::test_td64arr_add_intlike[DataFrame] Attempts to broadcast incorrectly XFAIL pandas/tests/arithmetic/test_timedelta64.py::TestTimedeltaArraylikeAddSubOps::()::test_td64arr_add_sub_numeric_arr_invalid[DataFrame-ndarray-int64] Tries to broadcast incorrectly XFAIL pandas/tests/arithmetic/test_timedelta64.py::TestTimedeltaArraylikeAddSubOps::()::test_td64arr_add_sub_numeric_arr_invalid[DataFrame-ndarray-int16] Tries to broadcast incorrectly XFAIL pandas/tests/arithmetic/test_timedelta64.py::TestTimedeltaArraylikeAddSubOps::()::test_td64arr_add_sub_numeric_arr_invalid[DataFrame-ndarray-uint32] Tries to broadcast incorrectly XFAIL pandas/tests/arithmetic/test_timedelta64.py::TestTimedeltaArraylikeAddSubOps::()::test_td64arr_add_sub_numeric_arr_invalid[DataFrame-ndarray-uint8] Tries to broadcast incorrectly XFAIL pandas/tests/arithmetic/test_timedelta64.py::TestTimedeltaArraylikeAddSubOps::()::test_td64arr_add_sub_numeric_arr_invalid[DataFrame-ndarray-float32] Tries to broadcast incorrectly XFAIL pandas/tests/arithmetic/test_timedelta64.py::TestTimedeltaArraylikeAddSubOps::()::test_td64arr_add_sub_numeric_arr_invalid[DataFrame-Int64Index-int64] Tries to broadcast incorrectly XFAIL pandas/tests/arithmetic/test_timedelta64.py::TestTimedeltaArraylikeAddSubOps::()::test_td64arr_add_sub_numeric_arr_invalid[DataFrame-Int64Index-int16] Tries to broadcast incorrectly XFAIL pandas/tests/arithmetic/test_timedelta64.py::TestTimedeltaArraylikeAddSubOps::()::test_td64arr_add_sub_numeric_arr_invalid[DataFrame-Int64Index-uint32] Tries to broadcast incorrectly XFAIL pandas/tests/arithmetic/test_timedelta64.py::TestTimedeltaArraylikeAddSubOps::()::test_td64arr_add_sub_numeric_arr_invalid[DataFrame-Int64Index-uint8] Tries to broadcast incorrectly XFAIL pandas/tests/arithmetic/test_timedelta64.py::TestTimedeltaArraylikeAddSubOps::()::test_td64arr_add_sub_numeric_arr_invalid[DataFrame-Int64Index-float32] Tries to broadcast incorrectly XFAIL pandas/tests/arithmetic/test_timedelta64.py::TestTimedeltaArraylikeAddSubOps::()::test_td64arr_add_sub_numeric_arr_invalid[DataFrame-Series-int64] Tries to broadcast incorrectly XFAIL pandas/tests/arithmetic/test_timedelta64.py::TestTimedeltaArraylikeAddSubOps::()::test_td64arr_add_sub_numeric_arr_invalid[DataFrame-Series-int16] Tries to broadcast incorrectly XFAIL pandas/tests/arithmetic/test_datetime64.py::TestDatetimeIndexArithmetic::()::test_dti_sub_pi[DataFrame-None-D-radd] Tries to broadcast incorrectly XFAIL pandas/tests/arithmetic/test_datetime64.py::TestDatetimeIndexArithmetic::()::test_dti_sub_pi[DataFrame-None-D-rsub] Tries to broadcast incorrectly XFAIL pandas/tests/arithmetic/test_timedelta64.py::TestTimedeltaArraylikeAddSubOps::()::test_td64arr_add_sub_numeric_arr_invalid[DataFrame-Series-uint32] Tries to broadcast incorrectly XFAIL pandas/tests/arithmetic/test_datetime64.py::TestDatetimeIndexArithmetic::()::test_dti_sub_pi[DataFrame-None-W-radd] Tries to broadcast incorrectly XFAIL pandas/tests/arithmetic/test_datetime64.py::TestDatetimeIndexArithmetic::()::test_dti_sub_pi[DataFrame-None-W-rsub] Tries to broadcast incorrectly XFAIL pandas/tests/arithmetic/test_timedelta64.py::TestTimedeltaArraylikeAddSubOps::()::test_td64arr_add_sub_numeric_arr_invalid[DataFrame-Series-uint8] Tries to broadcast incorrectly XFAIL pandas/tests/arithmetic/test_datetime64.py::TestDatetimeIndexArithmetic::()::test_dti_sub_pi[DataFrame-None-Q-radd] Tries to broadcast incorrectly XFAIL pandas/tests/arithmetic/test_datetime64.py::TestDatetimeIndexArithmetic::()::test_dti_sub_pi[DataFrame-None-Q-rsub] Tries to broadcast incorrectly XFAIL pandas/tests/arithmetic/test_datetime64.py::TestDatetimeIndexArithmetic::()::test_dti_sub_pi[DataFrame-None-H-radd] Tries to broadcast incorrectly XFAIL pandas/tests/arithmetic/test_datetime64.py::TestDatetimeIndexArithmetic::()::test_dti_sub_pi[DataFrame-None-H-rsub] Tries to broadcast incorrectly XFAIL pandas/tests/arithmetic/test_timedelta64.py::TestTimedeltaArraylikeAddSubOps::()::test_td64arr_add_sub_numeric_arr_invalid[DataFrame-Series-float32] Tries to broadcast incorrectly XFAIL pandas/tests/arithmetic/test_datetime64.py::TestDatetimeIndexArithmetic::()::test_dti_sub_pi[DataFrame-D-D-radd] Tries to broadcast incorrectly XFAIL pandas/tests/arithmetic/test_timedelta64.py::TestTimedeltaArraylikeAddSubOps::()::test_td64arr_add_td64_array[DataFrame] Tries to broadcast incorrectly XFAIL pandas/tests/arithmetic/test_datetime64.py::TestDatetimeIndexArithmetic::()::test_dti_sub_pi[DataFrame-D-D-rsub] Tries to broadcast incorrectly XFAIL pandas/tests/arithmetic/test_timedelta64.py::TestTimedeltaArraylikeAddSubOps::()::test_td64arr_add_sub_tdi[names0-DataFrame] Tries to broadcast incorrectly leading to alignment error XFAIL pandas/tests/arithmetic/test_timedelta64.py::TestTimedeltaArraylikeAddSubOps::()::test_td64arr_add_sub_tdi[names2-DataFrame] Tries to broadcast incorrectly leading to alignment error XFAIL pandas/tests/arithmetic/test_datetime64.py::TestDatetimeIndexArithmetic::()::test_dti_sub_pi[DataFrame-D-W-radd] Tries to broadcast incorrectly XFAIL pandas/tests/arithmetic/test_datetime64.py::TestDatetimeIndexArithmetic::()::test_dti_sub_pi[DataFrame-D-W-rsub] Tries to broadcast incorrectly XFAIL pandas/tests/arithmetic/test_timedelta64.py::TestTimedeltaArraylikeAddSubOps::()::test_td64arr_add_offset_index[names1-DataFrame] Tries to broadcast incorrectly XFAIL pandas/tests/arithmetic/test_datetime64.py::TestDatetimeIndexArithmetic::()::test_dti_sub_pi[DataFrame-D-Q-radd] Tries to broadcast incorrectly XFAIL pandas/tests/arithmetic/test_timedelta64.py::TestTimedeltaArraylikeAddSubOps::()::test_td64arr_add_offset_array[DataFrame] Tries to broadcast incorrectly XFAIL pandas/tests/arithmetic/test_datetime64.py::TestDatetimeIndexArithmetic::()::test_dti_sub_pi[DataFrame-D-Q-rsub] Tries to broadcast incorrectly XFAIL pandas/tests/arithmetic/test_timedelta64.py::TestTimedeltaArraylikeAddSubOps::()::test_td64arr_sub_offset_index[DataFrame-names1] Tries to broadcast incorrectly XFAIL pandas/tests/arithmetic/test_datetime64.py::TestDatetimeIndexArithmetic::()::test_dti_sub_pi[DataFrame-D-H-radd] Tries to broadcast incorrectly XFAIL pandas/tests/arithmetic/test_timedelta64.py::TestTimedeltaArraylikeAddSubOps::()::test_td64arr_sub_offset_array[DataFrame] Tries to broadcast incorrectly XFAIL pandas/tests/arithmetic/test_datetime64.py::TestDatetimeIndexArithmetic::()::test_dti_sub_pi[DataFrame-D-H-rsub] Tries to broadcast incorrectly XFAIL pandas/tests/arithmetic/test_timedelta64.py::TestTimedeltaArraylikeAddSubOps::()::test_td64arr_with_offset_series[DataFrame-names1] Tries to broadcast incorrectly XFAIL pandas/tests/arithmetic/test_timedelta64.py::TestTimedeltaArraylikeAddSubOps::()::test_td64arr_addsub_anchored_offset_arraylike[DataFrame-obox0] Tries to broadcast incorrectly XFAIL pandas/tests/arithmetic/test_timedelta64.py::TestTimedeltaArraylikeAddSubOps::()::test_td64arr_addsub_anchored_offset_arraylike[DataFrame-Series] Tries to broadcast incorrectly XFAIL pandas/tests/arithmetic/test_timedelta64.py::TestTimedeltaArraylikeMulDivOps::()::test_tdi_mul_int_array[DataFrame] Tries to broadcast incorrectly XFAIL pandas/tests/arithmetic/test_timedelta64.py::TestTimedeltaArraylikeMulDivOps::()::test_tdi_mul_float_series[DataFrame] XFAIL pandas/tests/arithmetic/test_timedelta64.py::TestTimedeltaArraylikeMulDivOps::()::test_tdi_rmul_arraylike[DataFrame-Int64Index] XFAIL pandas/tests/arithmetic/test_timedelta64.py::TestTimedeltaArraylikeMulDivOps::()::test_tdi_rmul_arraylike[DataFrame-Float64Index] XFAIL pandas/tests/arithmetic/test_numeric.py::TestNumericArraylikeArithmeticWithTimedeltaLike::()::test_numeric_arr_rdiv_tdscalar[three_days0-Float64Index-Series] reason: timedelta64 not converted to nanos; Tick division not imlpemented XFAIL pandas/tests/arithmetic/test_numeric.py::TestNumericArraylikeArithmeticWithTimedeltaLike::()::test_numeric_arr_rdiv_tdscalar[three_days0-Int64Index-DataFrame] reason: timedelta64 not converted to nanos; Tick division not imlpemented XFAIL pandas/tests/arithmetic/test_numeric.py::TestNumericArraylikeArithmeticWithTimedeltaLike::()::test_numeric_arr_rdiv_tdscalar[three_days0-UInt64Index-Series] reason: timedelta64 not converted to nanos; Tick division not imlpemented XFAIL pandas/tests/arithmetic/test_numeric.py::TestNumericArraylikeArithmeticWithTimedeltaLike::()::test_numeric_arr_rdiv_tdscalar[three_days0-RangeIndex-DataFrame] reason: timedelta64 not converted to nanos; Tick division not imlpemented XFAIL pandas/tests/arithmetic/test_numeric.py::TestNumericArraylikeArithmeticWithTimedeltaLike::()::test_numeric_arr_rdiv_tdscalar[three_days1-Float64Index-Series] reason: timedelta64 not converted to nanos; Tick division not imlpemented XFAIL pandas/tests/arithmetic/test_numeric.py::TestNumericArraylikeArithmeticWithTimedeltaLike::()::test_numeric_arr_rdiv_tdscalar[three_days1-Int64Index-DataFrame] reason: timedelta64 not converted to nanos; Tick division not imlpemented XFAIL pandas/tests/arithmetic/test_numeric.py::TestNumericArraylikeArithmeticWithTimedeltaLike::()::test_numeric_arr_rdiv_tdscalar[three_days1-UInt64Index-Series] reason: timedelta64 not converted to nanos; Tick division not imlpemented XFAIL pandas/tests/arithmetic/test_numeric.py::TestNumericArraylikeArithmeticWithTimedeltaLike::()::test_numeric_arr_rdiv_tdscalar[three_days1-RangeIndex-DataFrame] reason: timedelta64 not converted to nanos; Tick division not imlpemented XFAIL pandas/tests/arithmetic/test_numeric.py::TestNumericArraylikeArithmeticWithTimedeltaLike::()::test_numeric_arr_rdiv_tdscalar[three_days4-Float64Index-Series] reason: timedelta64 not converted to nanos; Tick division not imlpemented XFAIL pandas/tests/arithmetic/test_numeric.py::TestNumericArraylikeArithmeticWithTimedeltaLike::()::test_numeric_arr_rdiv_tdscalar[three_days4-Int64Index-DataFrame] reason: timedelta64 not converted to nanos; Tick division not imlpemented XFAIL pandas/tests/arithmetic/test_numeric.py::TestNumericArraylikeArithmeticWithTimedeltaLike::()::test_numeric_arr_rdiv_tdscalar[three_days4-UInt64Index-Series] reason: timedelta64 not converted to nanos; Tick division not imlpemented XFAIL pandas/tests/arithmetic/test_numeric.py::TestNumericArraylikeArithmeticWithTimedeltaLike::()::test_numeric_arr_rdiv_tdscalar[three_days4-RangeIndex-DataFrame] reason: timedelta64 not converted to nanos; Tick division not imlpemented XFAIL pandas/tests/arithmetic/test_numeric.py::TestNumericArraylikeArithmeticWithTimedeltaLike::()::test_numeric_arr_rdiv_tdscalar[three_days5-Float64Index-Series] reason: timedelta64 not converted to nanos; Tick division not imlpemented XFAIL pandas/tests/arithmetic/test_numeric.py::TestNumericArraylikeArithmeticWithTimedeltaLike::()::test_numeric_arr_rdiv_tdscalar[three_days5-Int64Index-DataFrame] reason: timedelta64 not converted to nanos; Tick division not imlpemented XFAIL pandas/tests/arithmetic/test_numeric.py::TestNumericArraylikeArithmeticWithTimedeltaLike::()::test_numeric_arr_rdiv_tdscalar[three_days5-UInt64Index-Series] reason: timedelta64 not converted to nanos; Tick division not imlpemented XFAIL pandas/tests/arithmetic/test_numeric.py::TestNumericArraylikeArithmeticWithTimedeltaLike::()::test_numeric_arr_rdiv_tdscalar[three_days5-RangeIndex-DataFrame] reason: timedelta64 not converted to nanos; Tick division not imlpemented XFAIL pandas/tests/arithmetic/test_timedelta64.py::TestTimedeltaArraylikeMulDivOps::()::test_td64arr_rmul_numeric_array[DataFrame-op0-ndarray-int64] XFAIL pandas/tests/arithmetic/test_numeric.py::TestMultiplicationDivision::()::test_divide_decimal[Index] Index.__div__ always raises XFAIL pandas/tests/arithmetic/test_timedelta64.py::TestTimedeltaArraylikeMulDivOps::()::test_td64arr_rmul_numeric_array[DataFrame-op0-ndarray-int16] XFAIL pandas/tests/arithmetic/test_numeric.py::TestMultiplicationDivision::()::test_divmod_series[Float64Index] GH#19252 Series has no __rdivmod__ XFAIL pandas/tests/arithmetic/test_numeric.py::TestMultiplicationDivision::()::test_divmod_series[UInt64Index] GH#19252 Series has no __rdivmod__ XFAIL pandas/tests/arithmetic/test_object.py::TestArithmetic::()::test_objarr_add_str[Index] Does not mask nulls XFAIL pandas/tests/arithmetic/test_timedelta64.py::TestTimedeltaArraylikeMulDivOps::()::test_td64arr_rmul_numeric_array[DataFrame-op0-ndarray-uint32] XFAIL pandas/tests/arithmetic/test_period.py::TestPeriodIndexArithmetic::()::test_parr_sub_pi_mismatched_freq[DataFrame] Tries to broadcast incorrectly XFAIL pandas/tests/arithmetic/test_timedelta64.py::TestTimedeltaArraylikeMulDivOps::()::test_td64arr_rmul_numeric_array[DataFrame-op0-ndarray-uint8] XFAIL pandas/tests/arithmetic/test_timedelta64.py::TestTimedeltaArraylikeAddSubOps::()::test_td64arr_add_sub_float[DataFrame-add-other1] reason: Tries to align incorrectly, raises ValueError XFAIL pandas/tests/arithmetic/test_timedelta64.py::TestTimedeltaArraylikeAddSubOps::()::test_td64arr_add_sub_float[DataFrame-sub-other1] reason: Tries to align incorrectly, raises ValueError XFAIL pandas/tests/arithmetic/test_timedelta64.py::TestTimedeltaArraylikeAddSubOps::()::test_td64arr_sub_pi[None-W-DataFrame] broadcasts along wrong axis XFAIL pandas/tests/arithmetic/test_timedelta64.py::TestTimedeltaArraylikeAddSubOps::()::test_td64arr_sub_pi[None-H-DataFrame] broadcasts along wrong axis XFAIL pandas/tests/arithmetic/test_timedelta64.py::TestTimedeltaArraylikeMulDivOps::()::test_td64arr_rmul_numeric_array[DataFrame-op0-ndarray-float32] XFAIL pandas/tests/arithmetic/test_timedelta64.py::TestTimedeltaArraylikeMulDivOps::()::test_td64arr_rmul_numeric_array[DataFrame-op0-Int64Index-int64] XFAIL pandas/tests/arithmetic/test_timedelta64.py::TestTimedeltaArraylikeAddSubOps::()::test_td64arr_sub_pi[H-W-DataFrame] broadcasts along wrong axis XFAIL pandas/tests/arithmetic/test_timedelta64.py::TestTimedeltaArraylikeMulDivOps::()::test_td64arr_rmul_numeric_array[DataFrame-op0-Int64Index-int16] XFAIL pandas/tests/arithmetic/test_timedelta64.py::TestTimedeltaArraylikeMulDivOps::()::test_td64arr_rmul_numeric_array[DataFrame-op0-Int64Index-uint32] XFAIL pandas/tests/arithmetic/test_timedelta64.py::TestTimedeltaArraylikeMulDivOps::()::test_td64arr_rmul_numeric_array[DataFrame-op0-Int64Index-uint8] XFAIL pandas/tests/arithmetic/test_timedelta64.py::TestTimedeltaArraylikeAddSubOps::()::test_td64arr_sub_pi[H-H-DataFrame] broadcasts along wrong axis XFAIL pandas/tests/arithmetic/test_timedelta64.py::TestTimedeltaArraylikeMulDivOps::()::test_td64arr_rmul_numeric_array[DataFrame-op0-Int64Index-float32] XFAIL pandas/tests/arithmetic/test_timedelta64.py::TestTimedeltaArraylikeAddSubOps::()::test_tdi_add_dt64_array[DataFrame] Tries to broadcast incorrectly XFAIL pandas/tests/arithmetic/test_timedelta64.py::TestTimedeltaArraylikeMulDivOps::()::test_td64arr_rmul_numeric_array[DataFrame-op0-Series-int64] XFAIL pandas/tests/arithmetic/test_timedelta64.py::TestTimedeltaArraylikeMulDivOps::()::test_td64arr_rmul_numeric_array[DataFrame-op0-Series-int16] XFAIL pandas/tests/arithmetic/test_timedelta64.py::TestTimedeltaArraylikeMulDivOps::()::test_td64arr_rmul_numeric_array[DataFrame-op0-Series-uint32] XFAIL pandas/tests/arithmetic/test_timedelta64.py::TestTimedeltaArraylikeAddSubOps::()::test_td64arr_radd_int_series_invalid[DataFrame] Tries to broadcast incorrectly XFAIL pandas/tests/arithmetic/test_timedelta64.py::TestTimedeltaArraylikeMulDivOps::()::test_td64arr_rmul_numeric_array[DataFrame-op0-Series-uint8] XFAIL pandas/tests/arithmetic/test_timedelta64.py::TestTimedeltaArraylikeMulDivOps::()::test_td64arr_rmul_numeric_array[DataFrame-op0-Series-float32] XFAIL pandas/tests/arithmetic/test_timedelta64.py::TestTimedeltaArraylikeMulDivOps::()::test_td64arr_rmul_numeric_array[DataFrame-rmul-ndarray-int64] XFAIL pandas/tests/arithmetic/test_timedelta64.py::TestTimedeltaArraylikeMulDivOps::()::test_td64arr_rmul_numeric_array[DataFrame-rmul-ndarray-int16] XFAIL pandas/tests/arithmetic/test_timedelta64.py::TestTimedeltaArraylikeAddSubOps::()::test_td64arr_rsub_int_series_invalid[DataFrame] Tries to broadcast incorrectly XFAIL pandas/tests/arithmetic/test_timedelta64.py::TestTimedeltaArraylikeMulDivOps::()::test_td64arr_rmul_numeric_array[DataFrame-rmul-ndarray-uint32] XFAIL pandas/tests/arithmetic/test_timedelta64.py::TestTimedeltaArraylikeMulDivOps::()::test_td64arr_rmul_numeric_array[DataFrame-rmul-ndarray-uint8] XFAIL pandas/tests/arithmetic/test_timedelta64.py::TestTimedeltaArraylikeMulDivOps::()::test_td64arr_rmul_numeric_array[DataFrame-rmul-ndarray-float32] XFAIL pandas/tests/arithmetic/test_timedelta64.py::TestTimedeltaArraylikeAddSubOps::()::test_td64arr_add_sub_numeric_scalar_invalid[DataFrame-scalar2] reason: reversed ops return incorrect answers instead of raising. XFAIL pandas/tests/arithmetic/test_timedelta64.py::TestTimedeltaArraylikeMulDivOps::()::test_td64arr_rmul_numeric_array[DataFrame-rmul-Int64Index-int64] XFAIL pandas/tests/arithmetic/test_timedelta64.py::TestTimedeltaArraylikeAddSubOps::()::test_td64arr_add_sub_numeric_arr_invalid[DataFrame-ndarray-int32] Tries to broadcast incorrectly XFAIL pandas/tests/arithmetic/test_timedelta64.py::TestTimedeltaArraylikeAddSubOps::()::test_td64arr_add_sub_numeric_arr_invalid[DataFrame-ndarray-uint64] Tries to broadcast incorrectly XFAIL pandas/tests/arithmetic/test_timedelta64.py::TestTimedeltaArraylikeMulDivOps::()::test_td64arr_rmul_numeric_array[DataFrame-rmul-Int64Index-int16] XFAIL pandas/tests/arithmetic/test_timedelta64.py::TestTimedeltaArraylikeAddSubOps::()::test_td64arr_add_sub_numeric_arr_invalid[DataFrame-ndarray-uint16] Tries to broadcast incorrectly XFAIL pandas/tests/arithmetic/test_timedelta64.py::TestTimedeltaArraylikeAddSubOps::()::test_td64arr_add_sub_numeric_arr_invalid[DataFrame-ndarray-float64] Tries to broadcast incorrectly XFAIL pandas/tests/arithmetic/test_timedelta64.py::TestTimedeltaArraylikeMulDivOps::()::test_td64arr_rmul_numeric_array[DataFrame-rmul-Int64Index-uint32] XFAIL pandas/tests/arithmetic/test_timedelta64.py::TestTimedeltaArraylikeAddSubOps::()::test_td64arr_add_sub_numeric_arr_invalid[DataFrame-ndarray-float16] Tries to broadcast incorrectly XFAIL pandas/tests/arithmetic/test_timedelta64.py::TestTimedeltaArraylikeMulDivOps::()::test_td64arr_rmul_numeric_array[DataFrame-rmul-Int64Index-uint8] XFAIL pandas/tests/arithmetic/test_timedelta64.py::TestTimedeltaArraylikeAddSubOps::()::test_td64arr_add_sub_numeric_arr_invalid[DataFrame-Int64Index-int32] Tries to broadcast incorrectly XFAIL pandas/tests/arithmetic/test_timedelta64.py::TestTimedeltaArraylikeMulDivOps::()::test_td64arr_rmul_numeric_array[DataFrame-rmul-Int64Index-float32] XFAIL pandas/tests/arithmetic/test_timedelta64.py::TestTimedeltaArraylikeAddSubOps::()::test_td64arr_add_sub_numeric_arr_invalid[DataFrame-Int64Index-uint64] Tries to broadcast incorrectly XFAIL pandas/tests/arithmetic/test_timedelta64.py::TestTimedeltaArraylikeAddSubOps::()::test_td64arr_add_sub_numeric_arr_invalid[DataFrame-Int64Index-uint16] Tries to broadcast incorrectly XFAIL pandas/tests/arithmetic/test_timedelta64.py::TestTimedeltaArraylikeMulDivOps::()::test_td64arr_rmul_numeric_array[DataFrame-rmul-Series-int64] XFAIL pandas/tests/arithmetic/test_timedelta64.py::TestTimedeltaArraylikeAddSubOps::()::test_td64arr_add_sub_numeric_arr_invalid[DataFrame-Int64Index-float64] Tries to broadcast incorrectly XFAIL pandas/tests/arithmetic/test_timedelta64.py::TestTimedeltaArraylikeMulDivOps::()::test_td64arr_rmul_numeric_array[DataFrame-rmul-Series-int16] XFAIL pandas/tests/arithmetic/test_timedelta64.py::TestTimedeltaArraylikeMulDivOps::()::test_td64arr_rmul_numeric_array[DataFrame-rmul-Series-uint32] XFAIL pandas/tests/arithmetic/test_timedelta64.py::TestTimedeltaArraylikeMulDivOps::()::test_td64arr_rmul_numeric_array[DataFrame-rmul-Series-uint8] XFAIL pandas/tests/arithmetic/test_timedelta64.py::TestTimedeltaArraylikeAddSubOps::()::test_td64arr_add_sub_numeric_arr_invalid[DataFrame-Int64Index-float16] Tries to broadcast incorrectly XFAIL pandas/tests/arithmetic/test_timedelta64.py::TestTimedeltaArraylikeMulDivOps::()::test_td64arr_rmul_numeric_array[DataFrame-rmul-Series-float32] XFAIL pandas/tests/arithmetic/test_timedelta64.py::TestTimedeltaArraylikeMulDivOps::()::test_td64arr_div_numeric_array[ndarray-int64-DataFrame] broadcasts along wrong axis XFAIL pandas/tests/arithmetic/test_timedelta64.py::TestTimedeltaArraylikeAddSubOps::()::test_td64arr_add_sub_numeric_arr_invalid[DataFrame-Series-int32] Tries to broadcast incorrectly XFAIL pandas/tests/arithmetic/test_timedelta64.py::TestTimedeltaArraylikeMulDivOps::()::test_td64arr_div_numeric_array[ndarray-int16-DataFrame] broadcasts along wrong axis XFAIL pandas/tests/arithmetic/test_timedelta64.py::TestTimedeltaArraylikeMulDivOps::()::test_td64arr_div_numeric_array[ndarray-uint32-DataFrame] broadcasts along wrong axis XFAIL pandas/tests/arithmetic/test_timedelta64.py::TestTimedeltaArraylikeMulDivOps::()::test_td64arr_div_numeric_array[ndarray-uint8-DataFrame] broadcasts along wrong axis XFAIL pandas/tests/arithmetic/test_timedelta64.py::TestTimedeltaArraylikeAddSubOps::()::test_td64arr_add_sub_numeric_arr_invalid[DataFrame-Series-uint64] Tries to broadcast incorrectly XFAIL pandas/tests/arithmetic/test_timedelta64.py::TestTimedeltaArraylikeMulDivOps::()::test_td64arr_div_numeric_array[ndarray-float32-DataFrame] broadcasts along wrong axis XFAIL pandas/tests/arithmetic/test_timedelta64.py::TestTimedeltaArraylikeMulDivOps::()::test_td64arr_div_numeric_array[Int64Index-int64-DataFrame] broadcasts along wrong axis XFAIL pandas/tests/arithmetic/test_timedelta64.py::TestTimedeltaArraylikeMulDivOps::()::test_td64arr_div_numeric_array[Int64Index-int16-DataFrame] broadcasts along wrong axis XFAIL pandas/tests/arithmetic/test_timedelta64.py::TestTimedeltaArraylikeMulDivOps::()::test_td64arr_div_numeric_array[Int64Index-uint32-DataFrame] broadcasts along wrong axis XFAIL pandas/tests/arithmetic/test_timedelta64.py::TestTimedeltaArraylikeMulDivOps::()::test_td64arr_div_numeric_array[Int64Index-uint8-DataFrame] broadcasts along wrong axis XFAIL pandas/tests/arithmetic/test_timedelta64.py::TestTimedeltaArraylikeMulDivOps::()::test_td64arr_div_numeric_array[Int64Index-float32-DataFrame] broadcasts along wrong axis XFAIL pandas/tests/arithmetic/test_timedelta64.py::TestTimedeltaArraylikeAddSubOps::()::test_td64arr_add_sub_numeric_arr_invalid[DataFrame-Series-uint16] Tries to broadcast incorrectly XFAIL pandas/tests/arithmetic/test_timedelta64.py::TestTimedeltaArraylikeMulDivOps::()::test_td64arr_div_numeric_array[Series-int64-DataFrame] broadcasts along wrong axis XFAIL pandas/tests/arithmetic/test_timedelta64.py::TestTimedeltaArraylikeAddSubOps::()::test_td64arr_add_sub_numeric_arr_invalid[DataFrame-Series-float64] Tries to broadcast incorrectly XFAIL pandas/tests/arithmetic/test_timedelta64.py::TestTimedeltaArraylikeMulDivOps::()::test_td64arr_div_numeric_array[Series-int16-DataFrame] broadcasts along wrong axis XFAIL pandas/tests/arithmetic/test_timedelta64.py::TestTimedeltaArraylikeMulDivOps::()::test_td64arr_div_numeric_array[Series-uint32-DataFrame] broadcasts along wrong axis XFAIL pandas/tests/arithmetic/test_timedelta64.py::TestTimedeltaArraylikeMulDivOps::()::test_td64arr_div_numeric_array[Series-uint8-DataFrame] broadcasts along wrong axis XFAIL pandas/tests/arithmetic/test_timedelta64.py::TestTimedeltaArraylikeMulDivOps::()::test_td64arr_div_numeric_array[Series-float32-DataFrame] broadcasts along wrong axis XFAIL pandas/tests/arithmetic/test_timedelta64.py::TestTimedeltaArraylikeMulDivOps::()::test_td64arr_mul_int_series[DataFrame-names0] XFAIL pandas/tests/arithmetic/test_timedelta64.py::TestTimedeltaArraylikeAddSubOps::()::test_td64arr_add_sub_numeric_arr_invalid[DataFrame-Series-float16] Tries to broadcast incorrectly XFAIL pandas/tests/arithmetic/test_timedelta64.py::TestTimedeltaArraylikeMulDivOps::()::test_td64arr_mul_int_series[DataFrame-names2] XFAIL pandas/tests/arithmetic/test_timedelta64.py::TestTimedeltaArraylikeAddSubOps::()::test_td64arr_sub_td64_array[DataFrame] Tries to broadcast incorrectly XFAIL pandas/tests/arithmetic/test_timedelta64.py::TestTimedeltaArraylikeAddSubOps::()::test_td64arr_add_sub_tdi[names1-DataFrame] Tries to broadcast incorrectly leading to alignment error XFAIL pandas/tests/arithmetic/test_timedelta64.py::TestTimedeltaArraylikeAddSubOps::()::test_td64arr_add_offset_index[names0-DataFrame] Tries to broadcast incorrectly XFAIL pandas/tests/arithmetic/test_timedelta64.py::TestTimedeltaArraylikeAddSubOps::()::test_td64arr_add_offset_index[names2-DataFrame] Tries to broadcast incorrectly XFAIL pandas/tests/arithmetic/test_timedelta64.py::TestTimedeltaArraylikeAddSubOps::()::test_td64arr_sub_offset_index[DataFrame-names0] Tries to broadcast incorrectly XFAIL pandas/tests/arithmetic/test_timedelta64.py::TestTimedeltaArraylikeAddSubOps::()::test_td64arr_sub_offset_index[DataFrame-names2] Tries to broadcast incorrectly XFAIL pandas/tests/arrays/test_integer.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__add__-Int16Dtype] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/arrays/test_integer.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__add__-Int64Dtype] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/arrays/test_integer.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__add__-UInt16Dtype] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/arrays/test_integer.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__add__-UInt64Dtype] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/arrays/test_integer.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__radd__-Int16Dtype] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/arrays/test_integer.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__radd__-Int64Dtype] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/arithmetic/test_timedelta64.py::TestTimedeltaArraylikeAddSubOps::()::test_td64arr_with_offset_series[DataFrame-names0] Tries to broadcast incorrectly XFAIL pandas/tests/arrays/test_integer.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__radd__-UInt16Dtype] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/arrays/test_integer.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__radd__-UInt64Dtype] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/arrays/test_integer.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__sub__-Int16Dtype] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/arrays/test_integer.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__sub__-Int64Dtype] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/arrays/test_integer.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__sub__-UInt16Dtype] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/arithmetic/test_timedelta64.py::TestTimedeltaArraylikeAddSubOps::()::test_td64arr_with_offset_series[DataFrame-names2] Tries to broadcast incorrectly XFAIL pandas/tests/arrays/test_integer.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__sub__-UInt64Dtype] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/arrays/test_integer.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__rsub__-Int16Dtype] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/arithmetic/test_timedelta64.py::TestTimedeltaArraylikeAddSubOps::()::test_td64arr_addsub_anchored_offset_arraylike[DataFrame-Index] Tries to broadcast incorrectly XFAIL pandas/tests/arrays/test_integer.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__rsub__-Int64Dtype] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/arrays/test_integer.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__rsub__-UInt16Dtype] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/arrays/test_integer.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__rsub__-UInt64Dtype] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/arrays/test_integer.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__mul__-Int16Dtype] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/arrays/test_integer.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__mul__-Int64Dtype] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/arithmetic/test_timedelta64.py::TestTimedeltaArraylikeMulDivOps::()::test_tdi_mul_int_series[DataFrame] XFAIL pandas/tests/arrays/test_integer.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__mul__-UInt16Dtype] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/arrays/test_integer.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__mul__-UInt64Dtype] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/arrays/test_integer.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__rmul__-Int16Dtype] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/arrays/test_integer.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__rmul__-Int64Dtype] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/arrays/test_integer.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__rmul__-UInt16Dtype] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/arrays/test_integer.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__rmul__-UInt64Dtype] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/arrays/test_integer.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__floordiv__-Int16Dtype] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/arrays/test_integer.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__floordiv__-Int64Dtype] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/arrays/test_integer.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__floordiv__-UInt16Dtype] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/arrays/test_integer.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__floordiv__-UInt64Dtype] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/arrays/test_integer.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__rfloordiv__-Int16Dtype] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/arrays/test_integer.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__rfloordiv__-Int64Dtype] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/arrays/test_integer.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__rfloordiv__-UInt16Dtype] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/arrays/test_integer.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__rfloordiv__-UInt64Dtype] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/arrays/test_integer.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__truediv__-Int16Dtype] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/arrays/test_integer.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__truediv__-Int64Dtype] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/arrays/test_integer.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__truediv__-UInt16Dtype] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/arithmetic/test_timedelta64.py::TestTimedeltaArraylikeMulDivOps::()::test_tdi_rmul_arraylike[DataFrame-ndarray] XFAIL pandas/tests/arrays/test_integer.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__truediv__-UInt64Dtype] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/arrays/test_integer.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__rtruediv__-Int16Dtype] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/arithmetic/test_timedelta64.py::TestTimedeltaArraylikeMulDivOps::()::test_tdi_rmul_arraylike[DataFrame-UInt64Index] XFAIL pandas/tests/arrays/test_integer.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__rtruediv__-Int64Dtype] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/arrays/test_integer.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__rtruediv__-UInt16Dtype] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/arrays/test_integer.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__rtruediv__-UInt64Dtype] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/arithmetic/test_timedelta64.py::TestTimedeltaArraylikeMulDivOps::()::test_tdi_rmul_arraylike[DataFrame-RangeIndex] XFAIL pandas/tests/arrays/test_integer.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__pow__-Int16Dtype] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/arrays/test_integer.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__pow__-Int64Dtype] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/arrays/test_integer.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__pow__-UInt16Dtype] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/arithmetic/test_timedelta64.py::TestTimedeltaArraylikeMulDivOps::()::test_td64arr_rfloordiv_tdscalar[DataFrame-timedelta64] reason: raises TypeError, not sure why XFAIL pandas/tests/arrays/test_integer.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__pow__-UInt64Dtype] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/arrays/test_integer.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__rpow__-Int16Dtype] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/arrays/test_integer.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__rpow__-Int64Dtype] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/arrays/test_integer.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__rpow__-UInt16Dtype] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/arrays/test_integer.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__rpow__-UInt64Dtype] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/arrays/test_integer.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__mod__-Int16Dtype] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/arrays/test_integer.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__mod__-Int64Dtype] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/arrays/test_integer.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__mod__-UInt16Dtype] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/arrays/test_integer.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__mod__-UInt64Dtype] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/arrays/test_integer.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__rmod__-Int16Dtype] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/arrays/test_integer.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__rmod__-Int64Dtype] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/arrays/test_integer.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__rmod__-UInt16Dtype] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/arrays/test_integer.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__rmod__-UInt64Dtype] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/arithmetic/test_timedelta64.py::TestTimedeltaArraylikeMulDivOps::()::test_td64arr_rmul_numeric_array[DataFrame-op0-ndarray-int32] XFAIL pandas/tests/arithmetic/test_timedelta64.py::TestTimedeltaArraylikeMulDivOps::()::test_td64arr_rmul_numeric_array[DataFrame-op0-ndarray-uint64] XFAIL pandas/tests/arithmetic/test_timedelta64.py::TestTimedeltaArraylikeMulDivOps::()::test_td64arr_rmul_numeric_array[DataFrame-op0-ndarray-uint16] XFAIL pandas/tests/arithmetic/test_timedelta64.py::TestTimedeltaArraylikeMulDivOps::()::test_td64arr_rmul_numeric_array[DataFrame-op0-ndarray-float64] XFAIL pandas/tests/arithmetic/test_timedelta64.py::TestTimedeltaArraylikeMulDivOps::()::test_td64arr_rmul_numeric_array[DataFrame-op0-ndarray-float16] XFAIL pandas/tests/arithmetic/test_timedelta64.py::TestTimedeltaArraylikeMulDivOps::()::test_td64arr_rmul_numeric_array[DataFrame-op0-Int64Index-int32] XFAIL pandas/tests/arrays/categorical/test_constructors.py::TestCategoricalConstructors::()::test_constructor_imaginary Imaginary values not supported in Categorical XFAIL pandas/tests/arithmetic/test_timedelta64.py::TestTimedeltaArraylikeMulDivOps::()::test_td64arr_rmul_numeric_array[DataFrame-op0-Int64Index-uint64] XFAIL pandas/tests/arithmetic/test_timedelta64.py::TestTimedeltaArraylikeMulDivOps::()::test_td64arr_rmul_numeric_array[DataFrame-op0-Int64Index-uint16] XFAIL pandas/tests/arithmetic/test_timedelta64.py::TestTimedeltaArraylikeMulDivOps::()::test_td64arr_rmul_numeric_array[DataFrame-op0-Int64Index-float64] XFAIL pandas/tests/arithmetic/test_timedelta64.py::TestTimedeltaArraylikeMulDivOps::()::test_td64arr_rmul_numeric_array[DataFrame-op0-Int64Index-float16] XFAIL pandas/tests/arithmetic/test_timedelta64.py::TestTimedeltaArraylikeMulDivOps::()::test_td64arr_rmul_numeric_array[DataFrame-op0-Series-int32] XFAIL pandas/tests/arithmetic/test_timedelta64.py::TestTimedeltaArraylikeMulDivOps::()::test_td64arr_rmul_numeric_array[DataFrame-op0-Series-uint64] XFAIL pandas/tests/arithmetic/test_timedelta64.py::TestTimedeltaArraylikeMulDivOps::()::test_td64arr_rmul_numeric_array[DataFrame-op0-Series-uint16] XFAIL pandas/tests/arithmetic/test_timedelta64.py::TestTimedeltaArraylikeMulDivOps::()::test_td64arr_rmul_numeric_array[DataFrame-op0-Series-float64] XFAIL pandas/tests/arithmetic/test_timedelta64.py::TestTimedeltaArraylikeMulDivOps::()::test_td64arr_rmul_numeric_array[DataFrame-op0-Series-float16] XFAIL pandas/tests/arithmetic/test_timedelta64.py::TestTimedeltaArraylikeMulDivOps::()::test_td64arr_rmul_numeric_array[DataFrame-rmul-ndarray-int32] XFAIL pandas/tests/arithmetic/test_timedelta64.py::TestTimedeltaArraylikeMulDivOps::()::test_td64arr_rmul_numeric_array[DataFrame-rmul-ndarray-uint64] XFAIL pandas/tests/arithmetic/test_timedelta64.py::TestTimedeltaArraylikeMulDivOps::()::test_td64arr_rmul_numeric_array[DataFrame-rmul-ndarray-uint16] XFAIL pandas/tests/arithmetic/test_timedelta64.py::TestTimedeltaArraylikeMulDivOps::()::test_td64arr_rmul_numeric_array[DataFrame-rmul-ndarray-float64] XFAIL pandas/tests/arithmetic/test_timedelta64.py::TestTimedeltaArraylikeMulDivOps::()::test_td64arr_rmul_numeric_array[DataFrame-rmul-ndarray-float16] XFAIL pandas/tests/arithmetic/test_timedelta64.py::TestTimedeltaArraylikeMulDivOps::()::test_td64arr_rmul_numeric_array[DataFrame-rmul-Int64Index-int32] XFAIL pandas/tests/arithmetic/test_timedelta64.py::TestTimedeltaArraylikeMulDivOps::()::test_td64arr_rmul_numeric_array[DataFrame-rmul-Int64Index-uint64] XFAIL pandas/tests/arithmetic/test_timedelta64.py::TestTimedeltaArraylikeMulDivOps::()::test_td64arr_rmul_numeric_array[DataFrame-rmul-Int64Index-uint16] XFAIL pandas/tests/arithmetic/test_timedelta64.py::TestTimedeltaArraylikeMulDivOps::()::test_td64arr_rmul_numeric_array[DataFrame-rmul-Int64Index-float64] XFAIL pandas/tests/arithmetic/test_timedelta64.py::TestTimedeltaArraylikeMulDivOps::()::test_td64arr_rmul_numeric_array[DataFrame-rmul-Int64Index-float16] XFAIL pandas/tests/arithmetic/test_timedelta64.py::TestTimedeltaArraylikeMulDivOps::()::test_td64arr_rmul_numeric_array[DataFrame-rmul-Series-int32] XFAIL pandas/tests/arithmetic/test_timedelta64.py::TestTimedeltaArraylikeMulDivOps::()::test_td64arr_rmul_numeric_array[DataFrame-rmul-Series-uint64] XFAIL pandas/tests/arithmetic/test_timedelta64.py::TestTimedeltaArraylikeMulDivOps::()::test_td64arr_rmul_numeric_array[DataFrame-rmul-Series-uint16] XFAIL pandas/tests/arithmetic/test_timedelta64.py::TestTimedeltaArraylikeMulDivOps::()::test_td64arr_rmul_numeric_array[DataFrame-rmul-Series-float64] XFAIL pandas/tests/arithmetic/test_timedelta64.py::TestTimedeltaArraylikeMulDivOps::()::test_td64arr_rmul_numeric_array[DataFrame-rmul-Series-float16] XFAIL pandas/tests/arithmetic/test_timedelta64.py::TestTimedeltaArraylikeMulDivOps::()::test_td64arr_div_numeric_array[ndarray-int32-DataFrame] broadcasts along wrong axis XFAIL pandas/tests/arithmetic/test_timedelta64.py::TestTimedeltaArraylikeMulDivOps::()::test_td64arr_div_numeric_array[ndarray-uint64-DataFrame] broadcasts along wrong axis XFAIL pandas/tests/arithmetic/test_timedelta64.py::TestTimedeltaArraylikeMulDivOps::()::test_td64arr_div_numeric_array[ndarray-uint16-DataFrame] broadcasts along wrong axis XFAIL pandas/tests/arithmetic/test_timedelta64.py::TestTimedeltaArraylikeMulDivOps::()::test_td64arr_div_numeric_array[ndarray-float64-DataFrame] broadcasts along wrong axis XFAIL pandas/tests/arithmetic/test_timedelta64.py::TestTimedeltaArraylikeMulDivOps::()::test_td64arr_div_numeric_array[ndarray-float16-DataFrame] broadcasts along wrong axis XFAIL pandas/tests/arithmetic/test_timedelta64.py::TestTimedeltaArraylikeMulDivOps::()::test_td64arr_div_numeric_array[Int64Index-int32-DataFrame] broadcasts along wrong axis XFAIL pandas/tests/arithmetic/test_timedelta64.py::TestTimedeltaArraylikeMulDivOps::()::test_td64arr_div_numeric_array[Int64Index-uint64-DataFrame] broadcasts along wrong axis XFAIL pandas/tests/arithmetic/test_timedelta64.py::TestTimedeltaArraylikeMulDivOps::()::test_td64arr_div_numeric_array[Int64Index-uint16-DataFrame] broadcasts along wrong axis XFAIL pandas/tests/extension/test_categorical.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__add__] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/extension/test_categorical.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__sub__] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/extension/test_categorical.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__mul__] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/arithmetic/test_timedelta64.py::TestTimedeltaArraylikeMulDivOps::()::test_td64arr_div_numeric_array[Int64Index-float64-DataFrame] broadcasts along wrong axis XFAIL pandas/tests/extension/test_categorical.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__floordiv__] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/extension/test_categorical.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__truediv__] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/extension/test_categorical.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__pow__] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/arithmetic/test_timedelta64.py::TestTimedeltaArraylikeMulDivOps::()::test_td64arr_div_numeric_array[Int64Index-float16-DataFrame] broadcasts along wrong axis XFAIL pandas/tests/extension/test_categorical.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__mod__] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/arithmetic/test_timedelta64.py::TestTimedeltaArraylikeMulDivOps::()::test_td64arr_div_numeric_array[Series-int32-DataFrame] broadcasts along wrong axis XFAIL pandas/tests/arithmetic/test_timedelta64.py::TestTimedeltaArraylikeMulDivOps::()::test_td64arr_div_numeric_array[Series-uint64-DataFrame] broadcasts along wrong axis XFAIL pandas/tests/arithmetic/test_timedelta64.py::TestTimedeltaArraylikeMulDivOps::()::test_td64arr_div_numeric_array[Series-uint16-DataFrame] broadcasts along wrong axis XFAIL pandas/tests/extension/test_integer.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__add__-Int16Dtype] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/arithmetic/test_timedelta64.py::TestTimedeltaArraylikeMulDivOps::()::test_td64arr_div_numeric_array[Series-float64-DataFrame] broadcasts along wrong axis XFAIL pandas/tests/extension/test_integer.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__add__-Int64Dtype] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/extension/test_integer.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__add__-UInt16Dtype] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/extension/test_integer.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__add__-UInt64Dtype] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/extension/test_integer.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__radd__-Int16Dtype] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/extension/test_integer.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__radd__-Int64Dtype] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/extension/test_integer.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__radd__-UInt16Dtype] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/extension/test_integer.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__radd__-UInt64Dtype] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/extension/test_integer.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__sub__-Int16Dtype] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/extension/test_integer.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__sub__-Int64Dtype] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/arithmetic/test_timedelta64.py::TestTimedeltaArraylikeMulDivOps::()::test_td64arr_div_numeric_array[Series-float16-DataFrame] broadcasts along wrong axis XFAIL pandas/tests/extension/test_integer.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__sub__-UInt16Dtype] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/extension/test_integer.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__sub__-UInt64Dtype] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/extension/test_integer.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__rsub__-Int16Dtype] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/arithmetic/test_timedelta64.py::TestTimedeltaArraylikeMulDivOps::()::test_td64arr_mul_int_series[DataFrame-names1] XFAIL pandas/tests/extension/test_integer.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__rsub__-Int64Dtype] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/extension/test_integer.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__rsub__-UInt16Dtype] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/extension/test_integer.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__rsub__-UInt64Dtype] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/extension/test_integer.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__mul__-Int16Dtype] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/extension/test_integer.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__mul__-Int64Dtype] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/extension/test_integer.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__mul__-UInt16Dtype] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/extension/test_integer.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__mul__-UInt64Dtype] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/extension/test_integer.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__rmul__-Int16Dtype] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/extension/test_integer.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__rmul__-Int64Dtype] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/extension/test_integer.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__rmul__-UInt16Dtype] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/extension/test_integer.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__rmul__-UInt64Dtype] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/extension/test_integer.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__floordiv__-Int16Dtype] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/extension/test_integer.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__floordiv__-Int64Dtype] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/extension/test_integer.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__floordiv__-UInt16Dtype] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/extension/test_integer.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__floordiv__-UInt64Dtype] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/extension/test_integer.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__rfloordiv__-Int16Dtype] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/extension/test_integer.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__rfloordiv__-Int64Dtype] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/extension/test_integer.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__rfloordiv__-UInt16Dtype] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/extension/test_integer.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__rfloordiv__-UInt64Dtype] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/extension/test_integer.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__truediv__-Int16Dtype] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/extension/test_integer.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__truediv__-Int64Dtype] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/extension/test_integer.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__truediv__-UInt16Dtype] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/arrays/test_integer.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__add__-Int8Dtype] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/extension/test_integer.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__truediv__-UInt64Dtype] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/arrays/test_integer.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__add__-Int32Dtype] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/extension/test_integer.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__rtruediv__-Int16Dtype] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/arrays/test_integer.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__add__-UInt8Dtype] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/extension/test_integer.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__rtruediv__-Int64Dtype] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/arrays/test_integer.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__add__-UInt32Dtype] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/extension/test_integer.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__rtruediv__-UInt16Dtype] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/arrays/test_integer.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__radd__-Int8Dtype] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/extension/test_integer.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__rtruediv__-UInt64Dtype] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/arrays/test_integer.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__radd__-Int32Dtype] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/extension/test_integer.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__pow__-Int16Dtype] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/arrays/test_integer.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__radd__-UInt8Dtype] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/extension/test_integer.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__pow__-Int64Dtype] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/arrays/test_integer.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__radd__-UInt32Dtype] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/extension/test_integer.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__pow__-UInt16Dtype] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/arrays/test_integer.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__sub__-Int8Dtype] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/extension/test_integer.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__pow__-UInt64Dtype] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/arrays/test_integer.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__sub__-Int32Dtype] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/extension/test_integer.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__rpow__-Int16Dtype] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/arrays/test_integer.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__sub__-UInt8Dtype] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/extension/test_integer.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__rpow__-Int64Dtype] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/arrays/test_integer.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__sub__-UInt32Dtype] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/extension/test_integer.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__rpow__-UInt16Dtype] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/arrays/test_integer.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__rsub__-Int8Dtype] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/arrays/test_integer.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__rsub__-Int32Dtype] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/extension/test_integer.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__rpow__-UInt64Dtype] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/arrays/test_integer.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__rsub__-UInt8Dtype] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/extension/test_integer.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__mod__-Int16Dtype] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/arrays/test_integer.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__rsub__-UInt32Dtype] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/arrays/test_integer.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__mul__-Int8Dtype] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/arrays/test_integer.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__mul__-Int32Dtype] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/arrays/test_integer.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__mul__-UInt8Dtype] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/arrays/test_integer.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__mul__-UInt32Dtype] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/arrays/test_integer.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__rmul__-Int8Dtype] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/extension/test_integer.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__mod__-Int64Dtype] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/arrays/test_integer.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__rmul__-Int32Dtype] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/extension/test_integer.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__mod__-UInt16Dtype] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/arrays/test_integer.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__rmul__-UInt8Dtype] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/extension/test_integer.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__mod__-UInt64Dtype] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/extension/test_integer.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__rmod__-Int16Dtype] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/arrays/test_integer.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__rmul__-UInt32Dtype] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/extension/test_integer.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__rmod__-Int64Dtype] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/arrays/test_integer.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__floordiv__-Int8Dtype] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/extension/test_integer.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__rmod__-UInt16Dtype] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/arrays/test_integer.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__floordiv__-Int32Dtype] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/extension/test_integer.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__rmod__-UInt64Dtype] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/arrays/test_integer.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__floordiv__-UInt8Dtype] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/arrays/test_integer.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__floordiv__-UInt32Dtype] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/arrays/test_integer.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__rfloordiv__-Int8Dtype] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/arrays/test_integer.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__rfloordiv__-Int32Dtype] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/arrays/test_integer.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__rfloordiv__-UInt8Dtype] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/arrays/test_integer.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__rfloordiv__-UInt32Dtype] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/arrays/test_integer.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__truediv__-Int8Dtype] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/arrays/test_integer.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__truediv__-Int32Dtype] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/arrays/test_integer.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__truediv__-UInt8Dtype] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/arrays/test_integer.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__truediv__-UInt32Dtype] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/arrays/test_integer.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__rtruediv__-Int8Dtype] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/arrays/test_integer.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__rtruediv__-Int32Dtype] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/arrays/test_integer.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__rtruediv__-UInt8Dtype] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/arrays/test_integer.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__rtruediv__-UInt32Dtype] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/arrays/test_integer.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__pow__-Int8Dtype] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/arrays/test_integer.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__pow__-Int32Dtype] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/arrays/test_integer.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__pow__-UInt8Dtype] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/arrays/test_integer.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__pow__-UInt32Dtype] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/arrays/test_integer.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__rpow__-Int8Dtype] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/arrays/test_integer.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__rpow__-Int32Dtype] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/arrays/test_integer.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__rpow__-UInt8Dtype] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/arrays/test_integer.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__rpow__-UInt32Dtype] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/arrays/test_integer.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__mod__-Int8Dtype] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/arrays/test_integer.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__mod__-Int32Dtype] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/arrays/test_integer.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__mod__-UInt8Dtype] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/arrays/test_integer.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__mod__-UInt32Dtype] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/arrays/test_integer.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__rmod__-Int8Dtype] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/arrays/test_integer.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__rmod__-Int32Dtype] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/arrays/test_integer.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__rmod__-UInt8Dtype] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/arrays/test_integer.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__rmod__-UInt32Dtype] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/extension/test_integer.py::TestGroupby::()::test_groupby_extension_no_sort[Int8Dtype] groupby not working XFAIL pandas/tests/extension/test_integer.py::TestGroupby::()::test_groupby_extension_no_sort[Int16Dtype] groupby not working XFAIL pandas/tests/extension/test_integer.py::TestGroupby::()::test_groupby_extension_no_sort[Int32Dtype] groupby not working XFAIL pandas/tests/extension/test_integer.py::TestGroupby::()::test_groupby_extension_no_sort[Int64Dtype] groupby not working XFAIL pandas/tests/extension/test_integer.py::TestGroupby::()::test_groupby_extension_no_sort[UInt8Dtype] groupby not working XFAIL pandas/tests/extension/test_integer.py::TestGroupby::()::test_groupby_extension_no_sort[UInt16Dtype] groupby not working XFAIL pandas/tests/extension/test_integer.py::TestGroupby::()::test_groupby_extension_no_sort[UInt32Dtype] groupby not working XFAIL pandas/tests/extension/test_integer.py::TestGroupby::()::test_groupby_extension_no_sort[UInt64Dtype] groupby not working XFAIL pandas/tests/extension/test_integer.py::TestGroupby::()::test_groupby_extension_agg[Int8Dtype-True] groupby not working XFAIL pandas/tests/extension/test_integer.py::TestGroupby::()::test_groupby_extension_agg[Int16Dtype-True] groupby not working XFAIL pandas/tests/extension/test_integer.py::TestGroupby::()::test_groupby_extension_agg[Int32Dtype-True] groupby not working XFAIL pandas/tests/extension/test_integer.py::TestGroupby::()::test_groupby_extension_agg[Int64Dtype-True] groupby not working XFAIL pandas/tests/extension/test_integer.py::TestGroupby::()::test_groupby_extension_agg[UInt8Dtype-True] groupby not working XFAIL pandas/tests/extension/test_integer.py::TestGroupby::()::test_groupby_extension_agg[UInt16Dtype-True] groupby not working XFAIL pandas/tests/extension/test_integer.py::TestGroupby::()::test_groupby_extension_agg[UInt32Dtype-True] groupby not working XFAIL pandas/tests/extension/test_integer.py::TestGroupby::()::test_groupby_extension_agg[UInt64Dtype-True] groupby not working XFAIL pandas/tests/extension/test_categorical.py::TestSetitem::()::test_setitem_tuple_index GH#20441: setitem on extension types. XFAIL pandas/tests/extension/test_categorical.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__radd__] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/extension/test_categorical.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__rsub__] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/extension/test_categorical.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__rmul__] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/extension/test_categorical.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__rfloordiv__] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/extension/test_categorical.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__rtruediv__] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/extension/test_categorical.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__rpow__] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/extension/test_categorical.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__rmod__] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/extension/test_interval.py::TestSetitem::()::test_setitem_tuple_index GH#20441: setitem on extension types. XFAIL pandas/tests/extension/test_integer.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__add__-Int8Dtype] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/extension/test_integer.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__add__-Int32Dtype] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/extension/test_integer.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__add__-UInt8Dtype] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/extension/test_integer.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__add__-UInt32Dtype] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/extension/test_integer.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__radd__-Int8Dtype] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/extension/test_integer.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__radd__-Int32Dtype] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/extension/test_integer.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__radd__-UInt8Dtype] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/extension/test_integer.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__radd__-UInt32Dtype] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/extension/test_integer.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__sub__-Int8Dtype] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/extension/test_integer.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__sub__-Int32Dtype] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/extension/test_integer.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__sub__-UInt8Dtype] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/extension/test_integer.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__sub__-UInt32Dtype] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/extension/decimal/test_decimal.py::TestMethods::()::test_value_counts[data-True] value_counts not implemented yet. XFAIL pandas/tests/extension/test_integer.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__rsub__-Int8Dtype] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/extension/decimal/test_decimal.py::TestMethods::()::test_value_counts[data-False] value_counts not implemented yet. XFAIL pandas/tests/extension/test_integer.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__rsub__-Int32Dtype] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/extension/decimal/test_decimal.py::TestMethods::()::test_value_counts[data_missing-True] value_counts not implemented yet. XFAIL pandas/tests/extension/test_integer.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__rsub__-UInt8Dtype] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/extension/test_integer.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__rsub__-UInt32Dtype] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/extension/decimal/test_decimal.py::TestMethods::()::test_value_counts[data_missing-False] value_counts not implemented yet. XFAIL pandas/tests/extension/test_integer.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__mul__-Int8Dtype] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/extension/test_integer.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__mul__-Int32Dtype] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/extension/test_integer.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__mul__-UInt8Dtype] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/extension/test_integer.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__mul__-UInt32Dtype] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/extension/test_integer.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__rmul__-Int8Dtype] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/extension/test_integer.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__rmul__-Int32Dtype] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/extension/test_integer.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__rmul__-UInt8Dtype] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/extension/test_integer.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__rmul__-UInt32Dtype] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/extension/test_integer.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__floordiv__-Int8Dtype] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/extension/test_integer.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__floordiv__-Int32Dtype] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/extension/decimal/test_decimal.py::TestSetitem::()::test_setitem_tuple_index GH#20441: setitem on extension types. XFAIL pandas/tests/extension/test_integer.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__floordiv__-UInt8Dtype] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/extension/test_integer.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__floordiv__-UInt32Dtype] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/extension/test_integer.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__rfloordiv__-Int8Dtype] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/extension/decimal/test_decimal.py::test_series_constructor_coerce_data_to_extension_dtype_raises raising AssertionError as this is not implemented, though easy enough to do XFAIL pandas/tests/extension/test_integer.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__rfloordiv__-Int32Dtype] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/extension/test_integer.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__rfloordiv__-UInt8Dtype] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/extension/test_integer.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__rfloordiv__-UInt32Dtype] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/extension/test_integer.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__truediv__-Int8Dtype] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/extension/test_integer.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__truediv__-Int32Dtype] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/extension/test_integer.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__truediv__-UInt8Dtype] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/extension/decimal/test_decimal.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__add__] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/extension/test_integer.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__truediv__-UInt32Dtype] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/extension/decimal/test_decimal.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__radd__] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/extension/test_integer.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__rtruediv__-Int8Dtype] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/extension/decimal/test_decimal.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__sub__] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/extension/test_integer.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__rtruediv__-Int32Dtype] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/extension/decimal/test_decimal.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__rsub__] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/extension/test_integer.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__rtruediv__-UInt8Dtype] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/extension/decimal/test_decimal.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__mul__] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/extension/decimal/test_decimal.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__rmul__] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/extension/decimal/test_decimal.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__floordiv__] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/extension/decimal/test_decimal.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__rfloordiv__] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/extension/decimal/test_decimal.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__truediv__] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/extension/test_integer.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__rtruediv__-UInt32Dtype] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/extension/test_integer.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__pow__-Int8Dtype] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/extension/test_integer.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__pow__-Int32Dtype] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/extension/test_integer.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__pow__-UInt8Dtype] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/extension/test_integer.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__pow__-UInt32Dtype] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/extension/decimal/test_decimal.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__rtruediv__] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/extension/test_integer.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__rpow__-Int8Dtype] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/extension/decimal/test_decimal.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__pow__] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/extension/test_integer.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__rpow__-Int32Dtype] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/extension/decimal/test_decimal.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__rpow__] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/extension/test_integer.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__rpow__-UInt8Dtype] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/extension/test_integer.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__rpow__-UInt32Dtype] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/extension/decimal/test_decimal.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__mod__] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/extension/test_integer.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__mod__-Int8Dtype] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/extension/decimal/test_decimal.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__rmod__] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/extension/test_integer.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__mod__-Int32Dtype] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/extension/test_integer.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__mod__-UInt8Dtype] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/extension/test_integer.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__mod__-UInt32Dtype] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/extension/test_integer.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__rmod__-Int8Dtype] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/extension/test_integer.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__rmod__-Int32Dtype] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/extension/test_integer.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__rmod__-UInt8Dtype] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/extension/test_integer.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__rmod__-UInt32Dtype] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/extension/json/test_json.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__add__] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/extension/json/test_json.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__radd__] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/extension/json/test_json.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__sub__] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/extension/json/test_json.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__rsub__] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/extension/json/test_json.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__mul__] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/extension/json/test_json.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__rmul__] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/extension/json/test_json.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__floordiv__] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/extension/json/test_json.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__rfloordiv__] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/extension/json/test_json.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__truediv__] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/extension/json/test_json.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__rtruediv__] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/extension/json/test_json.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__pow__] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/extension/json/test_json.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__rpow__] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/extension/json/test_json.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__mod__] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/extension/json/test_json.py::TestArithmeticOps::()::test_arith_frame_with_scalar[__rmod__] reason: [NOTRUN] _reduce needs implementation XFAIL pandas/tests/frame/test_duplicates.py::test_duplicated_nan_none[first-expected0] GH#21720; nan/None falsely considered equal XFAIL pandas/tests/frame/test_duplicates.py::test_duplicated_nan_none[last-expected1] GH#21720; nan/None falsely considered equal XFAIL pandas/tests/frame/test_duplicates.py::test_duplicated_nan_none[False-expected2] GH#21720; nan/None falsely considered equal XFAIL pandas/tests/groupby/aggregate/test_other.py::test_agg_category_nansum[False] GH#18869: agg func not called on empty groups. XFAIL pandas/tests/groupby/aggregate/test_other.py::test_agg_category_nansum[None] GH#18869: agg func not called on empty groups. XFAIL pandas/tests/groupby/test_apply.py::test_apply_trivial_fail GH#20066; function passed into apply returns a DataFrame with the same index as the one to create GroupBy object. XFAIL pandas/tests/indexes/test_base.py::TestIndex::()::test_constructor_cast see GH#21311: Index doesn't enforce dtype argument XFAIL pandas/tests/indexes/test_base.py::TestIndex::()::test_slice_ints_with_floats_raises Assertions were not correct - see GH#20915 XFAIL pandas/tests/indexes/interval/test_astype.py::TestFloatSubtype::()::test_subtype_integer_errors GH#15832 XFAIL pandas/tests/indexes/multi/test_missing.py::test_hasnans_isnans XFAIL pandas/tests/groupby/test_transform.py::test_transform_numeric_ret[size-cols1-exp1-assert_frame_equal] reason: 'size' transformation not supported with NDFrameGroupy XFAIL pandas/tests/indexing/test_coercion.py::TestSetitemCoercion::()::test_setitem_series_int64[1.1-float64] reason: GH12747 The result must be float XFAIL pandas/tests/indexing/test_coercion.py::TestSetitemCoercion::()::test_setitem_series_int8[val1-int16] reason: BUG: it must be Series([1, 1, 3, 4], dtype=np.int16 XFAIL pandas/tests/indexing/test_coercion.py::TestSetitemCoercion::()::test_setitem_series_bool[1-int64] reason: TODO_GH12747 The result must be int XFAIL pandas/tests/indexing/test_coercion.py::TestSetitemCoercion::()::test_setitem_series_bool[3-int64] reason: TODO_GH12747 The result must be int XFAIL pandas/tests/indexing/test_coercion.py::TestSetitemCoercion::()::test_setitem_series_bool[1.1-float64] reason: TODO_GH12747 The result must be float XFAIL pandas/tests/indexing/test_coercion.py::TestSetitemCoercion::()::test_setitem_series_bool[val3-complex128] reason: TODO_GH12747 The result must be complex XFAIL pandas/tests/indexing/test_coercion.py::TestSetitemCoercion::()::test_setitem_index_float64[5-IndexError] reason: TODO_GH12747 The result must be float XFAIL pandas/tests/indexing/test_coercion.py::TestInsertIndexCoercion::()::test_insert_index_datetimes[datetime64] reason: ToDo: must coerce to object XFAIL pandas/tests/indexing/test_coercion.py::TestInsertIndexCoercion::()::test_insert_index_datetimes[datetime64tz] reason: ToDo: must coerce to object XFAIL pandas/tests/indexing/test_coercion.py::TestWhereCoercion::()::test_where_index_datetimetz GH 22839: do not ignore timezone, must be object XFAIL pandas/tests/indexes/interval/test_astype.py::TestIntSubtype::()::test_subtype_integer_errors GH#15832 XFAIL pandas/tests/indexing/test_coercion.py::TestReplaceSeriesCoercion::()::test_replace_series_datetime_tz GH #18376, tzawareness-compat bug in BlockManager.replace_list XFAIL pandas/tests/io/formats/test_to_csv.py::TestToCSV::()::test_to_csv_string_array_utf8 XFAIL pandas/tests/io/json/test_json_table_schema.py::TestTableOrientReader::()::test_read_json_table_orient[vals0-index] XFAIL pandas/tests/io/json/test_json_table_schema.py::TestTableOrientReader::()::test_read_json_table_orient[vals1-index] XFAIL pandas/tests/io/json/test_json_table_schema.py::TestTableOrientReader::()::test_read_json_table_orient[vals2-index] XFAIL pandas/tests/io/json/test_json_table_schema.py::TestTableOrientReader::()::test_read_json_table_orient[vals3-index] XFAIL pandas/tests/io/json/test_json_table_schema.py::TestTableOrientReader::()::test_read_json_table_orient[vals4-index] XFAIL pandas/tests/io/json/test_json_table_schema.py::TestTableOrientReader::()::test_read_json_table_orient[vals5-None] XFAIL pandas/tests/io/json/test_json_table_schema.py::TestTableOrientReader::()::test_read_json_table_orient[vals5-idx] XFAIL pandas/tests/io/json/test_json_table_schema.py::TestTableOrientReader::()::test_read_json_table_orient[vals5-index] XFAIL pandas/tests/io/json/test_json_table_schema.py::TestTableOrientReader::()::test_read_json_table_orient[vals5-level_0] XFAIL pandas/tests/io/json/test_json_table_schema.py::TestTableOrientReader::()::test_read_json_table_orient[vals6-index] XFAIL pandas/tests/io/json/test_json_table_schema.py::TestTableOrientReader::()::test_read_json_table_orient[vals7-index] XFAIL pandas/tests/io/json/test_json_table_schema.py::TestTableOrientReader::()::test_empty_frame_roundtrip[True] XFAIL pandas/tests/reshape/test_pivot.py::TestPivotTable::()::test_pivot_with_multiindex[True] MultiIndexed unstack with tuple names failswith KeyError GH#19966 XFAIL pandas/tests/reshape/test_pivot.py::TestPivotTable::()::test_pivot_with_multiindex[False] MultiIndexed unstack with tuple names failswith KeyError GH#19966 XFAIL pandas/tests/reshape/test_pivot.py::TestPivotTable::()::test_margins_dtype_len GH#17035 (len of floats is casted back to floats) XFAIL pandas/tests/reshape/test_pivot.py::TestPivotTable::()::test_categorical_margins[True] GH#17035 (np.mean of ints is casted back to ints) XFAIL pandas/tests/reshape/test_pivot.py::TestPivotTable::()::test_categorical_margins[False] GH#17035 (np.mean of ints is casted back to ints) XFAIL pandas/tests/reshape/test_pivot.py::TestPivotTable::()::test_categorical_margins[None] GH#17035 (np.mean of ints is casted back to ints) XFAIL pandas/tests/reshape/test_pivot.py::TestPivotTable::()::test_categorical_margins_category[True] GH#17035 (np.mean of ints is casted back to ints) XFAIL pandas/tests/reshape/test_pivot.py::TestPivotTable::()::test_categorical_margins_category[False] GH#17035 (np.mean of ints is casted back to ints) XFAIL pandas/tests/reshape/test_pivot.py::TestPivotTable::()::test_categorical_margins_category[None] GH#17035 (np.mean of ints is casted back to ints) XFAIL pandas/tests/reshape/test_reshape.py::TestGetDummies::()::test_include_na[sparse-uint8] reason: nan in index is problematic (GH 16894) XFAIL pandas/tests/reshape/test_reshape.py::TestGetDummies::()::test_include_na[sparse-i8] reason: nan in index is problematic (GH 16894) XFAIL pandas/tests/reshape/test_reshape.py::TestGetDummies::()::test_include_na[sparse-float64] reason: nan in index is problematic (GH 16894) XFAIL pandas/tests/reshape/test_reshape.py::TestGetDummies::()::test_include_na[sparse-bool] reason: nan in index is problematic (GH 16894) XFAIL pandas/tests/reshape/test_reshape.py::TestGetDummies::()::test_include_na[sparse-None] reason: nan in index is problematic (GH 16894) XFAIL pandas/tests/series/test_analytics.py::TestCategoricalSeriesAnalytics::()::test_drop_duplicates_categorical_non_bool[True-datetime64[D]] GH#7996 XFAIL pandas/tests/series/test_analytics.py::TestCategoricalSeriesAnalytics::()::test_drop_duplicates_categorical_non_bool[False-datetime64[D]] GH#7996 XFAIL pandas/tests/series/test_operators.py::TestSeriesOperators::()::test_bool_ops_with_index[rand_] GH#22092 Index implementation returns Index XFAIL pandas/tests/series/test_operators.py::TestSeriesOperators::()::test_bool_ops_with_index[ror_] GH#22092 Index implementation raises XFAIL pandas/tests/series/test_operators.py::TestSeriesOperators::()::test_bool_ops_with_index[rxor] GH#22092 Index implementation raises XFAIL pandas/tests/series/test_period.py::TestSeriesPeriod::()::test_NaT_scalar PeriodDtype Series not supported yet XFAIL pandas/tests/series/test_period.py::TestSeriesPeriod::()::test_NaT_cast PeriodDtype Series not supported yet XFAIL pandas/tests/series/test_rank.py::TestSeriesRank::()::test_rank_inf[contents3-int64] iNaT is equivalent to minimum value of dtypeint64 pending issue GH#16674 XFAIL pandas/tests/sparse/frame/test_analytics.py::test_quantile Wrong SparseBlock initialization (GH#17386) XFAIL pandas/tests/sparse/frame/test_analytics.py::test_quantile_multi Wrong SparseBlock initialization (GH#17386) XFAIL pandas/tests/sparse/frame/test_frame.py::TestSparseDataFrame::()::test_iterrows_iso8601 reason: SparseBlock datetime type not implemented. XFAIL pandas/tests/sparse/frame/test_frame.py::TestSparseDataFrame::()::test_nan_columnname nan column names in _init_dict problematic (GH#16894) XFAIL pandas/tests/sparse/frame/test_frame.py::TestSparseDataFrameAnalytics::()::test_quantile Wrong SparseBlock initialization (GH 17386) XFAIL pandas/tests/sparse/frame/test_frame.py::TestSparseDataFrameAnalytics::()::test_quantile_multi Wrong SparseBlock initialization (GH 17386) XFAIL pandas/tests/scalar/period/test_asfreq.py::TestFreqConversion::()::test_to_timestamp_out_of_bounds GH#19643 period_helper asfreq functions fail to check for overflows XFAIL pandas/tests/tseries/offsets/test_offsets_properties.py::test_on_offset_implementations inconsistent between OSs, Pythons XFAIL pandas/tests/tseries/offsets/test_offsets_properties.py::test_apply_index_implementations XFAIL pandas/tests/tseries/offsets/test_offsets_properties.py::test_shift_across_dst XPASS pandas/tests/extension/test_categorical.py::TestGetitem::()::test_take_empty Categorical.take buggy XPASS pandas/tests/extension/test_categorical.py::TestGetitem::()::test_reindex test not written correctly for categorical XPASS pandas/tests/extension/decimal/test_decimal.py::TestConstructors::()::test_from_dtype not implemented constructor from dtype XPASS pandas/tests/extension/json/test_json.py::TestConstructors::()::test_from_dtype not implemented constructor from dtype XPASS pandas/tests/extension/json/test_json.py::TestMissing::()::test_fillna_series Setting a dict as a scalar XPASS pandas/tests/extension/json/test_json.py::TestMissing::()::test_fillna_frame Setting a dict as a scalar XPASS pandas/tests/extension/json/test_json.py::TestCasting::()::test_astype_str failing on np.array(self, dtype=str) XPASS pandas/tests/groupby/test_categorical.py::test_apply[True] flaky on 3.7, xref gh-21636 XPASS pandas/tests/groupby/test_categorical.py::test_apply[False] flaky on 3.7, xref gh-21636 XPASS pandas/tests/indexing/test_coercion.py::TestReplaceSeriesCoercion::()::test_replace_series_datetime_datetime different tz, currently mask_missing raises SystemError XPASS pandas/tests/scalar/period/test_period.py::test_small_year_parsing Parses as Jan 1, 0007 on some systems ```

is the useful part we should be looking at? Do you regularly check that? Personally, I don't find that huge block of output useful. It slows down the loading of the page and makes it harder to get to the section of failures, since it's show by default. I'd rather open issues for skips / xfails (which I think we typically do), since those can actually be tracked.

@jreback
Copy link
Contributor

jreback commented Oct 2, 2018

your have proven the point. If its not there, NO-ONE will care about it. We had this issue a few years ago. started not printing skips and they got out of control . They already are out of control. Sure opening issues slightly helps. But when you look at a build you are constantly reminded that, hey maybe this should be fixed. so -1 on changing this as I said above. Hiding is about the worst thing you can do.

@TomAugspurger
Copy link
Contributor Author

How about we test this out for a bit, to see if things get more out of control. I suspect they won't, and in the meantime it will be more pleasant to look at.

@jreback
Copy link
Contributor

jreback commented Oct 2, 2018

@TomAugspurger I guess. As I said, these are likely to simply be forgotten, until a bug pops up. We have out of control issues and 1 or 10 more doesn't actually help things, with limited time to do things.

In an ideal world these would actually be in another output section, but not sure if that is easy / possible.

@TomAugspurger
Copy link
Contributor Author

In an ideal world these would actually be in another output section, but not sure if that is easy / possible.

What do you mean by another output section? On travis, I think the best we can do is another "script" section, so that it's there, but hidden by default.

On azure, there's https://dev.azure.com/pandas-dev/pandas/_build/results?buildId=531&view=ms.vss-test-web.test-result-details If that link doesn't work then go to "tests" in the second navbar from the top and change the filter to "others". I think that other is skip, xfail, and xpass.

@jreback
Copy link
Contributor

jreback commented Oct 7, 2018

i guess this is ok, rebase and let's see everything pass.

@codecov
Copy link

codecov bot commented Oct 8, 2018

Codecov Report

Merging #22950 into master will not change coverage.
The diff coverage is n/a.

Impacted file tree graph

@@           Coverage Diff           @@
##           master   #22950   +/-   ##
=======================================
  Coverage   92.19%   92.19%           
=======================================
  Files         169      169           
  Lines       50873    50873           
=======================================
  Hits        46904    46904           
  Misses       3969     3969
Flag Coverage Δ
#multiple 90.61% <ø> (ø) ⬆️
#single 42.32% <ø> (ø) ⬆️

Continue to review full report at Codecov.

Legend - Click here to learn more
Δ = absolute <relative> (impact), ø = not affected, ? = missing data
Powered by Codecov. Last update ce1f81f...f433352. Read the comment docs.

@TomAugspurger
Copy link
Contributor Author

All green.

@TomAugspurger TomAugspurger merged commit a389a53 into pandas-dev:master Oct 8, 2018
@TomAugspurger TomAugspurger deleted the print-skipped branch October 8, 2018 13:42
tm9k1 pushed a commit to tm9k1/pandas that referenced this pull request Nov 19, 2018
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
CI Continuous Integration
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants