From 15f34be5100010f9e3afe65ba91ee835685221c5 Mon Sep 17 00:00:00 2001 From: Jonathan Shi Date: Wed, 10 Sep 2025 14:12:56 -0700 Subject: [PATCH 1/4] disable backend switching for series/df constructors --- .../snowpark/modin/plugin/_internal/utils.py | 27 +++++++++++++++++++ .../compiler/snowflake_query_compiler.py | 20 +++++++------- .../plugin/extensions/indexing_overrides.py | 11 ++++---- .../modin/hybrid/test_switch_operations.py | 17 ++++++++++++ 4 files changed, 59 insertions(+), 16 deletions(-) diff --git a/src/snowflake/snowpark/modin/plugin/_internal/utils.py b/src/snowflake/snowpark/modin/plugin/_internal/utils.py index 00c90a35c3..e0c2a5067b 100644 --- a/src/snowflake/snowpark/modin/plugin/_internal/utils.py +++ b/src/snowflake/snowpark/modin/plugin/_internal/utils.py @@ -12,6 +12,7 @@ from packaging import version # noqa: E402,F401 import modin.pandas as pd +from modin.config import context as config_context import numpy as np import pandas as native_pd from pandas._typing import AnyArrayLike, Scalar @@ -2259,3 +2260,29 @@ def add_extra_columns_and_select_required_columns( # explicitly drop the unwanted columns. This also ensures that the columns in the resultant DataFrame are in the # same order as the columns in the `columns` parameter. return query_compiler.take_2d_labels(slice(None), columns) + + +def new_snow_series(*args: Any, **kwargs: Any) -> pd.Series: + """ + Create a new modin Series, guaranteed to use the Snowpark pandas backend. + + This is necessary to prevent accidental backend switching when a modin Series is created in an + internal helper function, which may otherwise incorrectly produce a NativeQueryCompiler. + + See SNOW-2084670 and SNOW-2331021 for examples of such failures. + """ + with config_context(AutoSwitchBackend=False): + return pd.Series(*args, **kwargs) + + +def new_snow_df(*args: Any, **kwargs: Any) -> pd.DataFrame: + """ + Create a new modin DataFrame, guaranteed to use the Snowpark pandas backend. + + This is necessary to prevent accidental backend switching when modin a DataFrame is created in an + internal helper function, which may otherwise incorrectly produce a NativeQueryCompiler. + + See SNOW-2084670 and SNOW-2331021 for examples of such failures. + """ + with config_context(AutoSwitchBackend=False): + return pd.DataFrame(*args, **kwargs) diff --git a/src/snowflake/snowpark/modin/plugin/compiler/snowflake_query_compiler.py b/src/snowflake/snowpark/modin/plugin/compiler/snowflake_query_compiler.py index fde971f271..82cb154609 100644 --- a/src/snowflake/snowpark/modin/plugin/compiler/snowflake_query_compiler.py +++ b/src/snowflake/snowpark/modin/plugin/compiler/snowflake_query_compiler.py @@ -351,6 +351,7 @@ unpivot_empty_df, ) from snowflake.snowpark.modin.plugin._internal.utils import ( + new_snow_series, INDEX_LABEL, ROW_COUNT_COLUMN_LABEL, ROW_POSITION_COLUMN_LABEL, @@ -1205,7 +1206,7 @@ def from_date_range( delta = end.value * 1.0 - start.value # type: ignore[union-attr] if div == 0: # Only 1 period, just return the start value - ns_values = pd.Series([start.value])._query_compiler # type: ignore[union-attr] + ns_values = new_snow_series([start.value])._query_compiler # type: ignore[union-attr] else: stride = delta / div # Make sure end is included in this case @@ -1213,7 +1214,7 @@ def from_date_range( ns_values = generator_utils.generate_range(start.value, e, stride) # type: ignore[union-attr] dt_values = ns_values.series_to_datetime() - dt_series = pd.Series(query_compiler=dt_values) + dt_series = new_snow_series(query_compiler=dt_values) if remove_non_business_days: dt_series = dt_series[dt_series.dt.dayofweek < 5] if not left_inclusive or not right_inclusive: @@ -3266,7 +3267,7 @@ def _reindex_axis_0( if isinstance(labels, pd.Index): new_index_qc = labels.to_series()._query_compiler else: - new_index_qc = pd.Series(labels)._query_compiler + new_index_qc = new_snow_series(labels)._query_compiler new_index_modin_frame = new_index_qc._modin_frame modin_frame = self._modin_frame @@ -6857,7 +6858,7 @@ def agg( ) if len(query_compiler.columns) == 0: - return pd.Series()._query_compiler + return new_snow_series()._query_compiler internal_frame = query_compiler._modin_frame @@ -10663,13 +10664,10 @@ def _take_2d_labels_internal( if is_scalar(index): index = (index,) elif is_scalar(index): - # SNOW-2084670 - # Force this query compiler to be an SFQC, since with auto-switch behavior - # it may become a NativeQueryCompiler. - index = pd.Series([index]).set_backend("Snowflake")._query_compiler + index = new_snow_series([index])._query_compiler # convert list like to series elif is_list_like(index): - index = pd.Series(index).set_backend("Snowflake") + index = new_snow_series(index) if index.dtype == "bool": # boolean list like indexer is always select rows by row position return SnowflakeQueryCompiler( @@ -12070,7 +12068,7 @@ def _fillna_with_masking( not self_is_series and isinstance(value, pd.DataFrame) ): if isinstance(value, dict): - value = pd.Series(value) + value = new_snow_series(value) return self.where(cond=self.notna(), other=value._query_compiler) # case 2: fillna with a method @@ -12370,7 +12368,7 @@ def setitem( ) # create series out of key and insert - value = pd.Series(value)._query_compiler + value = new_snow_series(value)._query_compiler return self.insert(loc, key, value, True, replace=True) diff --git a/src/snowflake/snowpark/modin/plugin/extensions/indexing_overrides.py b/src/snowflake/snowpark/modin/plugin/extensions/indexing_overrides.py index 9195fdf81b..e645dcc34a 100644 --- a/src/snowflake/snowpark/modin/plugin/extensions/indexing_overrides.py +++ b/src/snowflake/snowpark/modin/plugin/extensions/indexing_overrides.py @@ -61,6 +61,7 @@ from pandas.core.indexing import IndexingError import snowflake.snowpark.modin.plugin.extensions.utils as frontend_utils +from snowflake.snowpark.modin.plugin._internal.utils import new_snow_series, new_snow_df from snowflake.snowpark.modin.plugin._internal.indexing_utils import ( MULTIPLE_ELLIPSIS_INDEXING_ERROR_MESSAGE, TOO_FEW_INDEXERS_INDEXING_ERROR_MESSAGE, @@ -1015,7 +1016,7 @@ def __setitem__( # If the row key is list-like (Index, list, np.ndarray, etc.), convert it to Series. if not isinstance(row_loc, pd.Series) and is_list_like(row_loc): - row_loc = pd.Series(row_loc) + row_loc = new_snow_series(row_loc) matching_item_columns_by_label = self._loc_set_matching_item_columns_by_label( key, item @@ -1040,7 +1041,7 @@ def __setitem__( else col_loc ) if item_is_2d_array: - item = pd.DataFrame(item) + item = new_snow_df(item) frame_is_df_and_item_is_series = isinstance(item, pd.Series) and isinstance( self.df, pd.DataFrame ) @@ -1209,7 +1210,7 @@ def __getitem__( dtype = float else: dtype = None - row_loc = pd.Series(row_loc, dtype=dtype) + row_loc = new_snow_series(row_loc, dtype=dtype) # Check whether the row and column input is of numeric dtype. self._validate_numeric_get_key_values(row_loc, original_row_loc) @@ -1331,10 +1332,10 @@ def __setitem__( item = item.flatten()[0] else: if item.ndim == 1: - item = pd.Series(item) + item = new_snow_series(item) is_item_series = True else: - item = pd.DataFrame(item) + item = new_snow_df(item) is_row_key_df = isinstance(row_loc, pd.DataFrame) is_col_key_df = isinstance(col_loc, pd.DataFrame) diff --git a/tests/integ/modin/hybrid/test_switch_operations.py b/tests/integ/modin/hybrid/test_switch_operations.py index 78fa9e8cfe..1c56966845 100644 --- a/tests/integ/modin/hybrid/test_switch_operations.py +++ b/tests/integ/modin/hybrid/test_switch_operations.py @@ -33,6 +33,7 @@ from snowflake.snowpark.modin.plugin.utils.warning_message import WarningMessage from snowflake.snowpark.modin.plugin.extensions.datetime_index import DatetimeIndex from tests.integ.utils.sql_counter import sql_count_checker +from tests.integ.modin.utils import assert_snowpark_pandas_equal_to_pandas # snowflake-ml-python, which provides snowflake.cortex, may not be available in # the test environment. If it's not available, skip all tests in this module. @@ -591,3 +592,19 @@ def test_applying_cortex_function_causes_backend_switch(self, data_class, method sentiment = method(pandas_backend_data, Sentiment) assert sentiment.get_backend() == "Snowflake" sentiment.to_pandas() + + +@sql_count_checker(query_count=1, join_count=2) +def test_switch_then_iloc(): + # Switching backends then calling iloc should be valid. + # Prior to fixing SNOW-2331021, discrepancies with the index class caused an AssertionError. + df = pd.DataFrame([[0] * 10] * 10) + assert df.get_backend() == "Pandas" + # Should not error + assert_snowpark_pandas_equal_to_pandas( + df.move_to("Snowflake").iloc[[1, 3, 9], 1], + df.iloc[[1, 3, 9], 1].to_pandas(), + ) + # Setting should similarly not error + df.iloc[1, 1] = 100 + assert df.iloc[1, 1] == 100 From d1a28501d31d7553e5ee2fc1a0b78c68e50619d9 Mon Sep 17 00:00:00 2001 From: Jonathan Shi Date: Wed, 10 Sep 2025 17:22:49 -0700 Subject: [PATCH 2/4] update hybrid test csv --- tests/integ/modin/conftest.py | 2 + .../modin/modin_hybrid_integ_results.csv | 33631 ++++++++-------- 2 files changed, 16560 insertions(+), 17073 deletions(-) diff --git a/tests/integ/modin/conftest.py b/tests/integ/modin/conftest.py index a50927543f..81d9a40d23 100644 --- a/tests/integ/modin/conftest.py +++ b/tests/integ/modin/conftest.py @@ -65,6 +65,8 @@ def read_hybrid_known_failures(): ] filtered.to_csv("tests/integ/modin/modin_hybrid_integ_results.csv") """ + if not os.path.exists("../modin/modin_hybrid_integ_results.csv"): + return pandas.DataFrame([], columns=["module", "name", "message", "status"]) HYBRID_RESULTS_PATH = os.path.normpath( os.path.join( os.path.dirname(__file__), "../modin/modin_hybrid_integ_results.csv" diff --git a/tests/integ/modin/modin_hybrid_integ_results.csv b/tests/integ/modin/modin_hybrid_integ_results.csv index c214000e98..88596345fe 100644 --- a/tests/integ/modin/modin_hybrid_integ_results.csv +++ b/tests/integ/modin/modin_hybrid_integ_results.csv @@ -1,6455 +1,5207 @@ ,module,name,message,status -17,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_0[ndarray1-truediv],"ValueError: Unable to coerce to Series, length must be 3: given 4",failed -30,tests.integ.modin.frame.test_dtypes,test_nullable_extension[dataframe_input5-Int16-snowpark_dtype5-logical_dtype5],"AssertionError: assert Int16Dtype() == dtype('int64') +22,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[False--6--9028751],IndexError: index -9028751 is out of bounds for axis 0 with size 7,failed +35,tests.integ.modin.frame.test_dtypes,test_nullable_extension[dataframe_input0-None-snowpark_dtype0-logical_dtype0],AttributeError: 'DataFrame' object has no attribute 'get_snowflake_type',failed +39,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[False--8-0],IndexError: index -8 is out of bounds for axis 0 with size 7,failed +40,tests.integ.modin.frame.test_dtypes,test_nullable_extension[dataframe_input1-Int64-snowpark_dtype1-logical_dtype1],"AssertionError: assert Int64Dtype() == dtype('int64') + + where Int64Dtype() = 0 1\n1 2\n2 \ndtype: Int64.dtype",failed +46,tests.integ.modin.frame.test_dtypes,test_nullable_extension[dataframe_input2-UInt64-snowpark_dtype2-logical_dtype2],"AssertionError: assert UInt64Dtype() == dtype('int64') + + where UInt64Dtype() = 0 1\n1 2\n2 \ndtype: UInt64.dtype",failed +51,tests.integ.modin.frame.test_dtypes,test_nullable_extension[dataframe_input3-Int32-snowpark_dtype3-logical_dtype3],"AssertionError: assert Int32Dtype() == dtype('int64') + + where Int32Dtype() = 0 1\n1 2\n2 \ndtype: Int32.dtype",failed +57,tests.integ.modin.frame.test_dtypes,test_nullable_extension[dataframe_input4-UInt32-snowpark_dtype4-logical_dtype4],"AssertionError: assert UInt32Dtype() == dtype('int64') + + where UInt32Dtype() = 0 1\n1 2\n2 \ndtype: UInt32.dtype",failed +62,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_0[list1-rmod],"ValueError: Unable to coerce to Series, length must be 3: given 4",failed +64,tests.integ.modin.binary.test_timedelta,test_timestamp_dataframe_plus_timedelta_series[add],numpy._core._exceptions._UFuncBinaryResolutionError: ufunc 'add' cannot use operands with types dtype('float64') and dtype('\ndtype: Int16.dtype",failed -32,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_0[ndarray1-rtruediv],"ValueError: Unable to coerce to Series, length must be 3: given 4",failed -35,tests.integ.modin.frame.test_dtypes,test_nullable_extension[dataframe_input6-UInt16-snowpark_dtype6-logical_dtype6],"AssertionError: assert UInt16Dtype() == dtype('int64') +69,tests.integ.modin.frame.test_dtypes,test_nullable_extension[dataframe_input6-UInt16-snowpark_dtype6-logical_dtype6],"AssertionError: assert UInt16Dtype() == dtype('int64') + where UInt16Dtype() = 0 1\n1 2\n2 \ndtype: UInt16.dtype",failed -40,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[False--8-52879115],IndexError: index -8 is out of bounds for axis 0 with size 7,failed -42,tests.integ.modin.frame.test_dtypes,test_nullable_extension[dataframe_input7-Int8-snowpark_dtype7-logical_dtype7],"AssertionError: assert Int8Dtype() == dtype('int64') +75,tests.integ.modin.frame.test_dtypes,test_nullable_extension[dataframe_input7-Int8-snowpark_dtype7-logical_dtype7],"AssertionError: assert Int8Dtype() == dtype('int64') + where Int8Dtype() = 0 1\n1 2\n2 \ndtype: Int8.dtype",failed -48,tests.integ.modin.frame.test_dtypes,test_nullable_extension[dataframe_input8-UInt8-snowpark_dtype8-logical_dtype8],"AssertionError: assert UInt8Dtype() == dtype('int64') +80,tests.integ.modin.frame.test_dtypes,test_nullable_extension[dataframe_input8-UInt8-snowpark_dtype8-logical_dtype8],"AssertionError: assert UInt8Dtype() == dtype('int64') + where UInt8Dtype() = 0 1\n1 2\n2 \ndtype: UInt8.dtype",failed -53,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_0[ndarray1-floordiv],"ValueError: Unable to coerce to Series, length must be 3: given 4",failed -55,tests.integ.modin.frame.test_dtypes,test_nullable_extension[dataframe_input9-Float32-snowpark_dtype9-logical_dtype9],"AssertionError: assert Float32Dtype() == dtype('float64') +84,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_0[list1-pow],"ValueError: Unable to coerce to Series, length must be 3: given 4",failed +87,tests.integ.modin.frame.test_dtypes,test_nullable_extension[dataframe_input9-Float32-snowpark_dtype9-logical_dtype9],"AssertionError: assert Float32Dtype() == dtype('float64') + where Float32Dtype() = 0 1.0\n1 2.0\n2 \ndtype: Float32.dtype",failed -63,tests.integ.modin.frame.test_dtypes,test_nullable_extension[dataframe_input10-Float64-snowpark_dtype10-logical_dtype10],"AssertionError: assert Float64Dtype() == dtype('float64') +92,tests.integ.modin.frame.test_dtypes,test_nullable_extension[dataframe_input10-Float64-snowpark_dtype10-logical_dtype10],"AssertionError: assert Float64Dtype() == dtype('float64') + where Float64Dtype() = 0 1.0\n1 2.0\n2 \ndtype: Float64.dtype",failed -64,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[False--8--9028751],IndexError: index -9028751 is out of bounds for axis 0 with size 7,failed -69,tests.integ.modin.frame.test_dtypes,test_nullable_extension[dataframe_input11-Int64-snowpark_dtype11-logical_dtype11],"AssertionError: assert Int64Dtype() == dtype('int64') +96,tests.integ.modin.frame.test_dtypes,test_nullable_extension[dataframe_input11-Int64-snowpark_dtype11-logical_dtype11],"AssertionError: assert Int64Dtype() == dtype('int64') + where Int64Dtype() = 0 1\n1 2\n2 \n3 \n4 \ndtype: Int64.dtype",failed -74,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_0[ndarray1-rfloordiv],"ValueError: Unable to coerce to Series, length must be 3: given 4",failed -76,tests.integ.modin.frame.test_dtypes,test_nullable_extension[dataframe_input12-Float64-snowpark_dtype12-logical_dtype12],"AssertionError: assert Float64Dtype() == dtype('float64') +100,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[False--8--3],IndexError: index -8 is out of bounds for axis 0 with size 7,failed +101,tests.integ.modin.frame.test_dtypes,test_nullable_extension[dataframe_input12-Float64-snowpark_dtype12-logical_dtype12],"AssertionError: assert Float64Dtype() == dtype('float64') + where Float64Dtype() = 0 1.0\n1 2.0\n2 \n3 \n4 NaN\n5 \ndtype: Float64.dtype",failed -88,tests.integ.modin.frame.test_dtypes,test_extended_float64_with_nan,AttributeError: 'DataFrame' object has no attribute 'ordered_dataframe',failed -91,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[False-7-0],IndexError: positional indexers are out-of-bounds,failed -94,tests.integ.modin.frame.test_dtypes,test_float[dataframe_input0-input_dtype0-expected_dtype0-logical_dtype0],"AssertionError: assert dtype('float16') == dtype('float64') +108,tests.integ.modin.frame.test_dtypes,test_extended_float64_with_nan,AttributeError: 'DataFrame' object has no attribute 'ordered_dataframe',failed +113,tests.integ.modin.frame.test_dtypes,test_float[dataframe_input0-input_dtype0-expected_dtype0-logical_dtype0],"AssertionError: assert dtype('float16') == dtype('float64') + where dtype('float16') = 0 1.099609\n1 2.199219\n2 3.300781\ndtype: float16.dtype",failed -101,tests.integ.modin.frame.test_dtypes,test_float[dataframe_input1-input_dtype1-expected_dtype1-logical_dtype1],"AssertionError: assert dtype('float32') == dtype('float64') +117,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[False--8-4],IndexError: index -8 is out of bounds for axis 0 with size 7,failed +120,tests.integ.modin.frame.test_dtypes,test_float[dataframe_input1-input_dtype1-expected_dtype1-logical_dtype1],"AssertionError: assert dtype('float32') == dtype('float64') + where dtype('float32') = 0 1.1\n1 2.2\n2 3.3\ndtype: float32.dtype",failed -118,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[False-7--3],IndexError: positional indexers are out-of-bounds,failed -124,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_0[ndarray1-mod],"ValueError: Unable to coerce to Series, length must be 3: given 4",failed -135,tests.integ.modin.frame.test_dtypes,test_string_explicit[dataframe_input0-string-index0],"AssertionError: assert string[python] == +135,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[False--8--7],IndexError: index -8 is out of bounds for axis 0 with size 7,failed +137,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_0[list1-rpow],"ValueError: Unable to coerce to Series, length must be 3: given 4",failed +145,tests.integ.modin.frame.test_dtypes,test_string_explicit[dataframe_input0-string-index0],"AssertionError: assert string[python] == + where string[python] = 0 a\n1 b\n2 c\ndtype: string.dtype + and = np.object_",failed -142,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_0[ndarray1-rmod],"ValueError: Unable to coerce to Series, length must be 3: given 4",failed -160,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_0[ndarray1-pow],"ValueError: Unable to coerce to Series, length must be 3: given 4",failed -164,tests.integ.modin.frame.test_dtypes,"test_time[dataframe_input2-datetime64[ns, America/Los_Angeles]-datetime64[ns, UTC-08:00]-datetime64[ns, UTC-08:00]]","AssertionError: assert datetime64[ns, America/Los_Angeles] == 'datetime64[ns, UTC-08:00]' +150,tests.integ.modin.binary.test_timedelta,test_timestamp_dataframe_plus_timedelta_series[radd],numpy._core._exceptions._UFuncBinaryResolutionError: ufunc 'add' cannot use operands with types dtype('.dummy() got an unexpected keyword argument 'snowflake_udf_params',failed -254,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_0[index1-sub],"ValueError: Unable to coerce to Series, length must be 3: given 4",failed -255,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[False-7--8],IndexError: index -8 is out of bounds for axis 0 with size 7,failed -267,tests.integ.modin.test_apply_persist,test_apply_or_map_permanent_def[apply],TypeError: test_apply_or_map_permanent_def..double() got an unexpected keyword argument 'snowflake_udf_params',failed -269,tests.integ.modin.frame.test_dtypes,test_empty[input_dtype2-expected_dtype2-snowpark_dtype2-to_pandas_dtype2],AttributeError: 'DataFrame' object has no attribute 'get_snowflake_type',failed -271,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_0[index1-rsub],"ValueError: Unable to coerce to Series, length must be 3: given 4",failed -276,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[False-7-7],IndexError: positional indexers are out-of-bounds,failed -280,tests.integ.modin.frame.test_dtypes,test_empty[None-expected_dtype3-snowpark_dtype3-to_pandas_dtype3],AttributeError: 'DataFrame' object has no attribute 'get_snowflake_type',failed -286,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_0[index1-mul],"ValueError: Unable to coerce to Series, length must be 3: given 4",failed -295,tests.integ.modin.test_apply_persist,test_apply_or_map_permanent_def[map],TypeError: test_apply_or_map_permanent_def..double() got an unexpected keyword argument 'snowflake_udf_params',failed -298,tests.integ.modin.frame.test_dtypes,test_unsupported_dtype_raises[input_data0-category-category],Failed: DID NOT RAISE ,failed -303,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_0[index1-rmul],"ValueError: Unable to coerce to Series, length must be 3: given 4",failed -304,tests.integ.modin.frame.test_dtypes,test_unsupported_dtype_raises[input_data1-category-category],Failed: DID NOT RAISE ,failed -309,tests.integ.modin.frame.test_dtypes,test_unsupported_dtype_raises[input_data2-None-period\\[s\\]],Failed: DID NOT RAISE ,failed -317,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_0[index1-truediv],"ValueError: Unable to coerce to Series, length must be 3: given 4",failed -319,tests.integ.modin.frame.test_dtypes,test_str_float_type_with_nan[input_data0-None-expected_dtype0-snowpark_dtype0-to_pandas_dtype0],AttributeError: 'DataFrame' object has no attribute 'get_snowflake_type',failed -322,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[False-7-52879115],IndexError: positional indexers are out-of-bounds,failed -327,tests.integ.modin.frame.test_dtypes,test_str_float_type_with_nan[input_data1-input_dtype1-expected_dtype1-snowpark_dtype1-to_pandas_dtype1],AttributeError: 'DataFrame' object has no attribute 'get_snowflake_type',failed -331,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_0[index1-rtruediv],"ValueError: Unable to coerce to Series, length must be 3: given 4",failed -335,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[False-7--9028751],IndexError: index -9028751 is out of bounds for axis 0 with size 7,failed -338,tests.integ.modin.frame.test_dtypes,test_str_float_type_with_nan[input_data2-input_dtype2-expected_dtype2-snowpark_dtype2-to_pandas_dtype2],AttributeError: 'DataFrame' object has no attribute 'get_snowflake_type',failed -340,tests.integ.modin.test_apply_persist,test_apply_permanent_lambda,TypeError: test_apply_permanent_lambda..() got an unexpected keyword argument 'snowflake_udf_params',failed -355,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[False-52879115-0],IndexError: positional indexers are out-of-bounds,failed -365,tests.integ.modin.test_apply_persist,test_apply_named_udf_negative,TypeError: test_apply_named_udf_negative..identity() got an unexpected keyword argument 'snowflake_udf_params',failed -372,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_0[index1-floordiv],"ValueError: Unable to coerce to Series, length must be 3: given 4",failed -378,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[False-52879115--3],IndexError: positional indexers are out-of-bounds,failed -382,tests.integ.modin.test_to_numpy,test_variant_data_to_numpy[DataFrame],"AssertionError: -Arrays are not equal - -Mismatched elements: 4 / 10 (40%) - x: array([[1], - [1.1], - ['snow'],... - y: array([[1], - [1.1], - ['snow'],...",failed -386,tests.integ.modin.test_to_numpy,test_variant_data_to_numpy[Series],"AssertionError: -Arrays are not equal - -Mismatched elements: 4 / 10 (40%) - x: array([1, 1.1, 'snow', b'snow', datetime.date(2023, 1, 1), - datetime.time(1, 2, 3, 1), datetime.datetime(2023, 1, 1, 0, 0), - list([1, 2]), {'snow': 'flake'}, None], dtype=object) - y: array([1, 1.1, 'snow', '736e6f77', '2023-01-01', '01:02:03.000001', - '2023-01-01T00:00:00', list([1, 2]), {'snow': 'flake'}, None], - dtype=object)",failed -387,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_0[index1-rfloordiv],"ValueError: Unable to coerce to Series, length must be 3: given 4",failed -391,tests.integ.modin.test_apply_persist,test_grouby_apply_permanent,TypeError: test_grouby_apply_permanent..sum_plus_one() got an unexpected keyword argument 'snowflake_udf_params',failed -398,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[False-52879115-4],IndexError: positional indexers are out-of-bounds,failed -400,tests.integ.modin.test_to_numpy,test_to_numpy_copy_true_series,"AssertionError: assert 'has been ignored by Snowpark pandas' in '' - + where '' = <_pytest.logging.LogCaptureFixture object at 0x33ac1d960>.text",failed -404,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_0[index1-mod],"ValueError: Unable to coerce to Series, length must be 3: given 4",failed -412,tests.integ.modin.test_to_numpy,test_to_numpy_warning,"AssertionError: assert 'The current operation leads to materialization and can be slow if the data is large!' in '' - + where '' = <_pytest.logging.LogCaptureFixture object at 0x33abf9d50>.text",failed -417,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_0[index1-rmod],"ValueError: Unable to coerce to Series, length must be 3: given 4",failed -429,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_0[index1-pow],"ValueError: Unable to coerce to Series, length must be 3: given 4",failed -437,tests.integ.modin.test_apply_persist,test_apply_immutable,TypeError: test_apply_immutable..immutable_f() got an unexpected keyword argument 'snowflake_udf_params',failed -441,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[False-52879115--7],IndexError: positional indexers are out-of-bounds,failed -446,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_0[index1-rpow],"ValueError: Unable to coerce to Series, length must be 3: given 4",failed -462,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[False-52879115-6],IndexError: positional indexers are out-of-bounds,failed -479,tests.integ.modin.test_unimplemented,test_unsupported_dataframe_methods[-cumprod0],Failed: DID NOT RAISE ,failed -483,tests.integ.modin.test_unimplemented,test_unsupported_dataframe_methods[-cumprod1],Failed: DID NOT RAISE ,failed -486,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[False-52879115--6],IndexError: positional indexers are out-of-bounds,failed -487,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_0[index_with_name1-add],"ValueError: Unable to coerce to Series, length must be 3: given 4",failed -496,tests.integ.modin.test_unimplemented,test_unsupported_series_methods[-transform],Failed: DID NOT RAISE ,failed -499,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[False-52879115--8],IndexError: index -8 is out of bounds for axis 0 with size 7,failed -500,tests.integ.modin.test_unimplemented,test_unsupported_series_methods[-cumprod],Failed: DID NOT RAISE ,failed -502,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_0[index_with_name1-radd],"ValueError: Unable to coerce to Series, length must be 3: given 4",failed -509,tests.integ.modin.test_unimplemented,test_unsupported_dataframe_binary_methods[-update],Failed: DID NOT RAISE ,failed -514,tests.integ.modin.test_unimplemented,test_unsupported_series_binary_methods[-update],Failed: DID NOT RAISE ,failed -517,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_0[index_with_name1-sub],"ValueError: Unable to coerce to Series, length must be 3: given 4",failed -520,tests.integ.modin.test_unimplemented,test_unsupported_str_methods[-Series.rfind],Failed: DID NOT RAISE ,failed -526,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[False-52879115-7],IndexError: positional indexers are out-of-bounds,failed -554,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_0[index_with_name1-rsub],"ValueError: Unable to coerce to Series, length must be 3: given 4",failed -570,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[False-52879115-52879115],IndexError: positional indexers are out-of-bounds,failed -585,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_0[index_with_name1-mul],"ValueError: Unable to coerce to Series, length must be 3: given 4",failed -597,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_0[index_with_name1-rmul],"ValueError: Unable to coerce to Series, length must be 3: given 4",failed -609,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[False-52879115--9028751],IndexError: index -9028751 is out of bounds for axis 0 with size 7,failed -623,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[False--9028751-0],IndexError: index -9028751 is out of bounds for axis 0 with size 7,failed -630,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_0[index_with_name1-truediv],"ValueError: Unable to coerce to Series, length must be 3: given 4",failed -635,tests.integ.modin.test_unique,test_unique_series[native_series0],TypeError: assert_array_equal() got an unexpected keyword argument 'strict',failed -637,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[False--9028751--3],IndexError: index -9028751 is out of bounds for axis 0 with size 7,failed -641,tests.integ.modin.test_unique,test_unique_series[native_series1],TypeError: assert_array_equal() got an unexpected keyword argument 'strict',failed -644,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_0[index_with_name1-rtruediv],"ValueError: Unable to coerce to Series, length must be 3: given 4",failed -646,tests.integ.modin.test_unique,test_unique_series[native_series2],TypeError: assert_array_equal() got an unexpected keyword argument 'strict',failed -652,tests.integ.modin.test_unique,test_unique_series[native_series3],TypeError: assert_array_equal() got an unexpected keyword argument 'strict',failed -655,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[False--9028751-4],IndexError: index -9028751 is out of bounds for axis 0 with size 7,failed -656,tests.integ.modin.test_unique,test_unique_series[native_series4],TypeError: assert_array_equal() got an unexpected keyword argument 'strict',failed -659,tests.integ.modin.test_unique,test_unique_series[native_series5],TypeError: assert_array_equal() got an unexpected keyword argument 'strict',failed -660,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_0[index_with_name1-floordiv],"ValueError: Unable to coerce to Series, length must be 3: given 4",failed -663,tests.integ.modin.test_unique,test_unique_series[native_series6],TypeError: assert_array_equal() got an unexpected keyword argument 'strict',failed -668,tests.integ.modin.test_unique,test_unique_series[native_series7],TypeError: assert_array_equal() got an unexpected keyword argument 'strict',failed -671,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[False--9028751--7],IndexError: index -9028751 is out of bounds for axis 0 with size 7,failed -675,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_0[index_with_name1-rfloordiv],"ValueError: Unable to coerce to Series, length must be 3: given 4",failed -678,tests.integ.modin.test_unique,test_unique_series[native_series8],TypeError: assert_array_equal() got an unexpected keyword argument 'strict',failed -683,tests.integ.modin.test_unique,test_unique_series_reordered[native_series0],TypeError: assert_array_equal() got an unexpected keyword argument 'strict',failed -686,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[False--9028751-6],IndexError: index -9028751 is out of bounds for axis 0 with size 7,failed -688,tests.integ.modin.test_unique,test_unique_series_reordered[native_series1],TypeError: assert_array_equal() got an unexpected keyword argument 'strict',failed -691,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_0[index_with_name1-mod],"ValueError: Unable to coerce to Series, length must be 3: given 4",failed -694,tests.integ.modin.test_unique,test_unique_series_reordered[native_series2],TypeError: assert_array_equal() got an unexpected keyword argument 'strict',failed -699,tests.integ.modin.test_unique,test_unique_series_reordered[native_series3],TypeError: assert_array_equal() got an unexpected keyword argument 'strict',failed -701,tests.integ.modin.crosstab.test_crosstab,test_basic_crosstab_with_numpy_arrays[True],AttributeError: can't set attribute,failed -704,tests.integ.modin.test_unique,test_unique_series_reordered[native_series4],TypeError: assert_array_equal() got an unexpected keyword argument 'strict',failed -707,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_0[index_with_name1-rmod],"ValueError: Unable to coerce to Series, length must be 3: given 4",failed -715,tests.integ.modin.crosstab.test_crosstab,test_basic_crosstab_with_numpy_arrays[False],AttributeError: can't set attribute,failed -724,tests.integ.modin.frame.test_align,test_align_basic_with_nulls_axis0[outer],AssertionError,failed -726,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[False--9028751--6],IndexError: index -9028751 is out of bounds for axis 0 with size 7,failed -731,tests.integ.modin.test_unique,test_unique_series_reordered[native_series5],TypeError: assert_array_equal() got an unexpected keyword argument 'strict',failed -733,tests.integ.modin.frame.test_align,test_align_basic_with_nulls_axis0[inner],AssertionError,failed -737,tests.integ.modin.test_unique,test_unique_series_reordered[native_series6],TypeError: assert_array_equal() got an unexpected keyword argument 'strict',failed -740,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_0[index_with_name1-pow],"ValueError: Unable to coerce to Series, length must be 3: given 4",failed -741,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[False--9028751--8],IndexError: index -8 is out of bounds for axis 0 with size 7,failed -743,tests.integ.modin.test_unique,test_unique_series_reordered[native_series7],TypeError: assert_array_equal() got an unexpected keyword argument 'strict',failed -745,tests.integ.modin.frame.test_align,test_align_basic_with_nulls_axis0[left],AssertionError,failed -749,tests.integ.modin.test_unique,test_unique_series_reordered[native_series8],TypeError: assert_array_equal() got an unexpected keyword argument 'strict',failed -753,tests.integ.modin.test_unique,test_unique_index[index0],TypeError: assert_array_equal() got an unexpected keyword argument 'strict',failed -757,tests.integ.modin.frame.test_align,test_align_basic_with_nulls_axis0[right],AssertionError,failed -758,tests.integ.modin.crosstab.test_crosstab,test_basic_crosstab_with_series_objs_some_overlap[True],ValueError: All arrays must be of the same length,failed -759,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_0[index_with_name1-rpow],"ValueError: Unable to coerce to Series, length must be 3: given 4",failed -762,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[False--9028751-7],IndexError: index -9028751 is out of bounds for axis 0 with size 7,failed -765,tests.integ.modin.test_unique,test_unique_index[index1],TypeError: assert_array_equal() got an unexpected keyword argument 'strict',failed -769,tests.integ.modin.frame.test_align,test_align_frame_with_series_axis_negative[outer],Failed: DID NOT RAISE ,failed -770,tests.integ.modin.test_unique,test_unique_index[index2],TypeError: assert_array_equal() got an unexpected keyword argument 'strict',failed -774,tests.integ.modin.test_unique,test_unique_index[index3],TypeError: assert_array_equal() got an unexpected keyword argument 'strict',failed -775,tests.integ.modin.frame.test_align,test_align_frame_with_series_axis_negative[inner],Failed: DID NOT RAISE ,failed -777,tests.integ.modin.crosstab.test_crosstab,test_basic_crosstab_with_series_objs_some_overlap[False],ValueError: All arrays must be of the same length,failed -780,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[False--9028751-52879115],IndexError: index -9028751 is out of bounds for axis 0 with size 7,failed -782,tests.integ.modin.test_unique,test_unique_index[index4],TypeError: assert_array_equal() got an unexpected keyword argument 'strict',failed -786,tests.integ.modin.frame.test_align,test_align_frame_with_series_axis_negative[left],Failed: DID NOT RAISE ,failed -788,tests.integ.modin.test_unique,test_unique_index[index5],TypeError: assert_array_equal() got an unexpected keyword argument 'strict',failed -791,tests.integ.modin.crosstab.test_crosstab,test_basic_crosstab_with_series_objs_some_overlap_error[True],Failed: DID NOT RAISE ,failed -793,tests.integ.modin.test_unique,test_unique_index[index6],TypeError: assert_array_equal() got an unexpected keyword argument 'strict',failed -797,tests.integ.modin.frame.test_align,test_align_frame_with_series_axis_negative[right],Failed: DID NOT RAISE ,failed -801,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[False--9028751--9028751],IndexError: index -9028751 is out of bounds for axis 0 with size 7,failed -803,tests.integ.modin.test_unique,test_unique_index[index7],TypeError: assert_array_equal() got an unexpected keyword argument 'strict',failed -804,tests.integ.modin.crosstab.test_crosstab,test_basic_crosstab_with_series_objs_some_overlap_error[False],Failed: DID NOT RAISE ,failed -808,tests.integ.modin.test_unique,test_unique_ndarray[input_data0],TypeError: assert_array_equal() got an unexpected keyword argument 'strict',failed -809,tests.integ.modin.frame.test_align,test_align_frame_fill_value_negative,Failed: DID NOT RAISE ,failed -813,tests.integ.modin.test_unique,test_unique_ndarray[input_data1],TypeError: assert_array_equal() got an unexpected keyword argument 'strict',failed -818,tests.integ.modin.crosstab.test_crosstab,test_basic_crosstab_with_series_objs_no_overlap_error[True],Failed: DID NOT RAISE ,failed -819,tests.integ.modin.test_unique,test_unique_ndarray[input_data2],TypeError: assert_array_equal() got an unexpected keyword argument 'strict',failed -820,tests.integ.modin.test_unique,test_unique_timestamp_index[timestamp_index0],AssertionError,failed -825,tests.integ.modin.frame.test_align,test_level_negative[0-0],Failed: DID NOT RAISE ,failed -826,tests.integ.modin.frame.test_iloc,test_df_iloc_set_ffill_na_values_negative,"ValueError: could not broadcast input array from shape (2, 2) into shape (3, 2)",failed -831,tests.integ.modin.test_unique,test_unique_list[input_data0],TypeError: assert_array_equal() got an unexpected keyword argument 'strict',failed -832,tests.integ.modin.frame.test_align,test_level_negative[0-1],Failed: DID NOT RAISE ,failed -838,tests.integ.modin.test_unique,test_unique_list[input_data1],TypeError: assert_array_equal() got an unexpected keyword argument 'strict',failed -843,tests.integ.modin.test_unique,test_unique_list[input_data2],TypeError: assert_array_equal() got an unexpected keyword argument 'strict',failed -844,tests.integ.modin.frame.test_align,test_level_negative[1-0],Failed: DID NOT RAISE ,failed -850,tests.integ.modin.test_unique,test_unique_list[input_data3],TypeError: assert_array_equal() got an unexpected keyword argument 'strict',failed -853,tests.integ.modin.frame.test_align,test_level_negative[1-1],Failed: DID NOT RAISE ,failed -856,tests.integ.modin.crosstab.test_crosstab,test_basic_crosstab_with_series_objs_no_overlap_error[False],Failed: DID NOT RAISE ,failed -860,tests.integ.modin.test_unique,test_unique_list[input_data4],TypeError: assert_array_equal() got an unexpected keyword argument 'strict',failed -864,tests.integ.modin.frame.test_iloc,test_raise_set_cell_with_list_like_value_error,"ValueError: could not broadcast input array from shape (2,) into shape (1, 1)",failed -866,tests.integ.modin.frame.test_align,test_level_negative[None-0],Failed: DID NOT RAISE ,failed -867,tests.integ.modin.test_unique,test_unique_list[input_data5],TypeError: assert_array_equal() got an unexpected keyword argument 'strict',failed -874,tests.integ.modin.test_unique,test_unique_list[input_data6],TypeError: assert_array_equal() got an unexpected keyword argument 'strict',failed -876,tests.integ.modin.crosstab.test_crosstab,test_basic_crosstab_with_df_and_series_objs_pandas_errors_columns[True],AssertionError: arrays and names must have the same length,failed -880,tests.integ.modin.frame.test_align,test_level_negative[None-1],Failed: DID NOT RAISE ,failed -882,tests.integ.modin.test_unique,test_unique_tuple[input_data0],TypeError: assert_array_equal() got an unexpected keyword argument 'strict',failed -889,tests.integ.modin.test_unique,test_unique_tuple[input_data1],TypeError: assert_array_equal() got an unexpected keyword argument 'strict',failed -890,tests.integ.modin.frame.test_iloc,test_df_iloc_set_row_from_series[index1],"AssertionError: DataFrame.iloc[:, 0] (column name=""A"") are different +178,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_0[ndarray1-radd],"ValueError: Unable to coerce to Series, length must be 3: given 4",failed +183,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[False--8--6],IndexError: index -8 is out of bounds for axis 0 with size 7,failed +197,tests.integ.modin.frame.test_dtypes,test_object[dataframe_input0-snowpark_dtype0],AttributeError: 'DataFrame' object has no attribute 'get_snowflake_type',failed +198,tests.integ.modin.binary.test_timedelta,test_timestamp_dataframe_minus_timedelta_series,numpy._core._exceptions._UFuncBinaryResolutionError: ufunc 'add' cannot use operands with types dtype(',failed +307,tests.integ.modin.frame.test_dtypes,test_unsupported_dtype_raises[input_data1-category-category],Failed: DID NOT RAISE ,failed +311,tests.integ.modin.binary.test_timedelta,test_timedelta_dataframe_plus_timestamp_series[radd],numpy._core._exceptions._UFuncBinaryResolutionError: ufunc 'add' cannot use operands with types dtype(',failed +316,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[False-7-0],IndexError: positional indexers are out-of-bounds,failed +318,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_0[ndarray1-rtruediv],"ValueError: Unable to coerce to Series, length must be 3: given 4",failed +323,tests.integ.modin.frame.test_dtypes,test_str_float_type_with_nan[input_data0-None-expected_dtype0-snowpark_dtype0-to_pandas_dtype0],AttributeError: 'DataFrame' object has no attribute 'get_snowflake_type',failed +334,tests.integ.modin.frame.test_dtypes,test_str_float_type_with_nan[input_data1-input_dtype1-expected_dtype1-snowpark_dtype1-to_pandas_dtype1],AttributeError: 'DataFrame' object has no attribute 'get_snowflake_type',failed +336,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_0[ndarray1-floordiv],"ValueError: Unable to coerce to Series, length must be 3: given 4",failed +341,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[False-7--3],IndexError: positional indexers are out-of-bounds,failed +343,tests.integ.modin.frame.test_dtypes,test_str_float_type_with_nan[input_data2-input_dtype2-expected_dtype2-snowpark_dtype2-to_pandas_dtype2],AttributeError: 'DataFrame' object has no attribute 'get_snowflake_type',failed +355,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_0[ndarray1-rfloordiv],"ValueError: Unable to coerce to Series, length must be 3: given 4",failed +368,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[False-7-4],IndexError: positional indexers are out-of-bounds,failed +377,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_0[ndarray1-mod],"ValueError: Unable to coerce to Series, length must be 3: given 4",failed +391,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[False-7--7],IndexError: positional indexers are out-of-bounds,failed +392,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_0[ndarray1-rmod],"ValueError: Unable to coerce to Series, length must be 3: given 4",failed +434,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_0[ndarray1-pow],"ValueError: Unable to coerce to Series, length must be 3: given 4",failed +439,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[False-7-6],IndexError: positional indexers are out-of-bounds,failed +450,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_0[ndarray1-rpow],"ValueError: Unable to coerce to Series, length must be 3: given 4",failed +460,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[False-7--6],IndexError: positional indexers are out-of-bounds,failed +466,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_0[index1-add],"ValueError: Unable to coerce to Series, length must be 3: given 4",failed +475,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[False-7--8],IndexError: index -8 is out of bounds for axis 0 with size 7,failed +480,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_0[index1-radd],"ValueError: Unable to coerce to Series, length must be 3: given 4",failed +499,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[False-7-7],IndexError: positional indexers are out-of-bounds,failed +500,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_0[index1-sub],"ValueError: Unable to coerce to Series, length must be 3: given 4",failed +517,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_0[index1-rsub],"ValueError: Unable to coerce to Series, length must be 3: given 4",failed +524,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[False-7-52879115],IndexError: positional indexers are out-of-bounds,failed +537,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_0[index1-mul],"ValueError: Unable to coerce to Series, length must be 3: given 4",failed +544,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[False-7--9028751],IndexError: index -9028751 is out of bounds for axis 0 with size 7,failed +581,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_0[index1-rmul],"ValueError: Unable to coerce to Series, length must be 3: given 4",failed +592,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[False-52879115-0],IndexError: positional indexers are out-of-bounds,failed +595,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_0[index1-truediv],"ValueError: Unable to coerce to Series, length must be 3: given 4",failed +608,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_0[index1-rtruediv],"ValueError: Unable to coerce to Series, length must be 3: given 4",failed +611,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[False-52879115--3],IndexError: positional indexers are out-of-bounds,failed +624,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_0[index1-floordiv],"ValueError: Unable to coerce to Series, length must be 3: given 4",failed +631,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[False-52879115-4],IndexError: positional indexers are out-of-bounds,failed +638,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_0[index1-rfloordiv],"ValueError: Unable to coerce to Series, length must be 3: given 4",failed +649,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[False-52879115--7],IndexError: positional indexers are out-of-bounds,failed +653,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_0[index1-mod],"ValueError: Unable to coerce to Series, length must be 3: given 4",failed +669,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[False-52879115-6],IndexError: positional indexers are out-of-bounds,failed +686,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[False-52879115--6],IndexError: positional indexers are out-of-bounds,failed +696,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_0[index1-rmod],"ValueError: Unable to coerce to Series, length must be 3: given 4",failed +709,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_0[index1-pow],"ValueError: Unable to coerce to Series, length must be 3: given 4",failed +724,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_0[index1-rpow],"ValueError: Unable to coerce to Series, length must be 3: given 4",failed +730,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[False-52879115--8],IndexError: index -8 is out of bounds for axis 0 with size 7,failed +738,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_0[index_with_name1-add],"ValueError: Unable to coerce to Series, length must be 3: given 4",failed +751,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[False-52879115-7],IndexError: positional indexers are out-of-bounds,failed +753,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_0[index_with_name1-radd],"ValueError: Unable to coerce to Series, length must be 3: given 4",failed +768,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_0[index_with_name1-sub],"ValueError: Unable to coerce to Series, length must be 3: given 4",failed +771,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[False-52879115-52879115],IndexError: positional indexers are out-of-bounds,failed +781,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_0[index_with_name1-rsub],"ValueError: Unable to coerce to Series, length must be 3: given 4",failed +787,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[False-52879115--9028751],IndexError: index -9028751 is out of bounds for axis 0 with size 7,failed +797,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[False--9028751-0],IndexError: index -9028751 is out of bounds for axis 0 with size 7,failed +809,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[False--9028751--3],IndexError: index -9028751 is out of bounds for axis 0 with size 7,failed +816,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_0[index_with_name1-mul],"ValueError: Unable to coerce to Series, length must be 3: given 4",failed +827,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_0[index_with_name1-rmul],"ValueError: Unable to coerce to Series, length must be 3: given 4",failed +838,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_0[index_with_name1-truediv],"ValueError: Unable to coerce to Series, length must be 3: given 4",failed +845,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[False--9028751-4],IndexError: index -9028751 is out of bounds for axis 0 with size 7,failed +851,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_0[index_with_name1-rtruediv],"ValueError: Unable to coerce to Series, length must be 3: given 4",failed +859,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[False--9028751--7],IndexError: index -9028751 is out of bounds for axis 0 with size 7,failed +864,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_0[index_with_name1-floordiv],"ValueError: Unable to coerce to Series, length must be 3: given 4",failed +872,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[False--9028751-6],IndexError: index -9028751 is out of bounds for axis 0 with size 7,failed +876,tests.integ.modin.crosstab.test_crosstab,test_basic_crosstab_with_numpy_arrays[True],AttributeError: can't set attribute,failed +877,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_0[index_with_name1-rfloordiv],"ValueError: Unable to coerce to Series, length must be 3: given 4",failed +886,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[False--9028751--6],IndexError: index -9028751 is out of bounds for axis 0 with size 7,failed +888,tests.integ.modin.crosstab.test_crosstab,test_basic_crosstab_with_numpy_arrays[False],AttributeError: can't set attribute,failed +891,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_0[index_with_name1-mod],"ValueError: Unable to coerce to Series, length must be 3: given 4",failed +903,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[False--9028751--8],IndexError: index -8 is out of bounds for axis 0 with size 7,failed +916,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[False--9028751-7],IndexError: index -9028751 is out of bounds for axis 0 with size 7,failed +919,tests.integ.modin.crosstab.test_crosstab,test_basic_crosstab_with_series_objs_some_overlap[True],ValueError: All arrays must be of the same length,failed +929,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_0[index_with_name1-rmod],"ValueError: Unable to coerce to Series, length must be 3: given 4",failed +933,tests.integ.modin.crosstab.test_crosstab,test_basic_crosstab_with_series_objs_some_overlap[False],ValueError: All arrays must be of the same length,failed +940,tests.integ.modin.crosstab.test_crosstab,test_basic_crosstab_with_series_objs_some_overlap_error[True],Failed: DID NOT RAISE ,failed +944,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_0[index_with_name1-pow],"ValueError: Unable to coerce to Series, length must be 3: given 4",failed +948,tests.integ.modin.crosstab.test_crosstab,test_basic_crosstab_with_series_objs_some_overlap_error[False],Failed: DID NOT RAISE ,failed +960,tests.integ.modin.crosstab.test_crosstab,test_basic_crosstab_with_series_objs_no_overlap_error[True],Failed: DID NOT RAISE ,failed +961,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_0[index_with_name1-rpow],"ValueError: Unable to coerce to Series, length must be 3: given 4",failed +962,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[False--9028751-52879115],IndexError: index -9028751 is out of bounds for axis 0 with size 7,failed +969,tests.integ.modin.crosstab.test_crosstab,test_basic_crosstab_with_series_objs_no_overlap_error[False],Failed: DID NOT RAISE ,failed +979,tests.integ.modin.crosstab.test_crosstab,test_basic_crosstab_with_df_and_series_objs_pandas_errors_columns[True],AssertionError: arrays and names must have the same length,failed +980,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[False--9028751--9028751],IndexError: index -9028751 is out of bounds for axis 0 with size 7,failed +991,tests.integ.modin.crosstab.test_crosstab,test_basic_crosstab_with_df_and_series_objs_pandas_errors_columns[False],AssertionError: arrays and names must have the same length,failed +995,tests.integ.modin.frame.test_iloc,test_df_iloc_set_ffill_na_values_negative,"ValueError: could not broadcast input array from shape (2, 2) into shape (3, 2)",failed +1003,tests.integ.modin.crosstab.test_crosstab,test_basic_crosstab_with_df_and_series_objs_pandas_errors_index[True],AssertionError: arrays and names must have the same length,failed +1009,tests.integ.modin.frame.test_iloc,test_raise_set_cell_with_list_like_value_error,"ValueError: could not broadcast input array from shape (2,) into shape (1, 1)",failed +1027,tests.integ.modin.frame.test_iloc,test_df_iloc_set_row_from_series[index1],"AssertionError: DataFrame.iloc[:, 0] (column name=""A"") are different DataFrame.iloc[:, 0] (column name=""A"") values are different (50.0 %) [index]: [0, 1] [left]: [1.0, nan] [right]: [1, 1]",failed -892,tests.integ.modin.crosstab.test_crosstab,test_basic_crosstab_with_df_and_series_objs_pandas_errors_columns[False],AssertionError: arrays and names must have the same length,failed -897,tests.integ.modin.test_unique,test_unique_tuple[input_data2],TypeError: assert_array_equal() got an unexpected keyword argument 'strict',failed -904,tests.integ.modin.test_unique,test_unique_tuple[input_data3],TypeError: assert_array_equal() got an unexpected keyword argument 'strict',failed -907,tests.integ.modin.crosstab.test_crosstab,test_basic_crosstab_with_df_and_series_objs_pandas_errors_index[True],AssertionError: arrays and names must have the same length,failed -910,tests.integ.modin.test_unique,test_unique_tuple[input_data4],TypeError: assert_array_equal() got an unexpected keyword argument 'strict',failed -915,tests.integ.modin.frame.test_iloc,test_df_iloc_full_set_row_from_series[None-index0],"ValueError: could not broadcast input array from shape (2,) into shape (2, 3)",failed -917,tests.integ.modin.test_unique,test_unique_byte_array[input_data0],TypeError: assert_array_equal() got an unexpected keyword argument 'strict',failed -918,tests.integ.modin.frame.test_align,test_multiindex_negative[0],ValueError: cannot join with no overlapping index names,failed -923,tests.integ.modin.crosstab.test_crosstab,test_basic_crosstab_with_df_and_series_objs_pandas_errors_index[False],AssertionError: arrays and names must have the same length,failed -925,tests.integ.modin.test_unique,test_unique_byte_array[input_data1],TypeError: assert_array_equal() got an unexpected keyword argument 'strict',failed -927,tests.integ.modin.test_unique,test_unique_list_of_tuples,TypeError: assert_array_equal() got an unexpected keyword argument 'strict',failed -931,tests.integ.modin.frame.test_align,test_multiindex_negative[1],Failed: DID NOT RAISE ,failed -932,tests.integ.modin.test_unique,test_unique_list_of_lists,TypeError: assert_array_equal() got an unexpected keyword argument 'strict',failed -946,tests.integ.modin.frame.test_iloc,test_df_iloc_full_set_row_from_series[None-index1],"ValueError: could not broadcast input array from shape (2,) into shape (2, 3)",failed -947,tests.integ.modin.test_unique,test_unique_list_of_invalid_objects_negative[input_data0-TestUniqueUserDefinedClass],AssertionError,failed -950,tests.integ.modin.crosstab.test_crosstab,test_margins[True],AttributeError: can't set attribute,failed -953,tests.integ.modin.test_unique,test_unique_list_of_invalid_objects_negative[input_data1-set],AssertionError,failed -957,tests.integ.modin.frame.test_equals,test_equals_numeric_variants[int8-int16-True],"AssertionError: assert False == True - + where False = ( col1\n0 1\n1 3) +1044,tests.integ.modin.frame.test_iloc,test_df_iloc_full_set_row_from_series[None-index0],"ValueError: could not broadcast input array from shape (2,) into shape (2, 3)",failed +1048,tests.integ.modin.crosstab.test_crosstab,test_basic_crosstab_with_df_and_series_objs_pandas_errors_index[False],AssertionError: arrays and names must have the same length,failed +1062,tests.integ.modin.frame.test_iloc,test_df_iloc_full_set_row_from_series[None-index1],"ValueError: could not broadcast input array from shape (2,) into shape (2, 3)",failed +1064,tests.integ.modin.crosstab.test_crosstab,test_margins[True],AttributeError: can't set attribute,failed +1075,tests.integ.modin.crosstab.test_crosstab,test_margins[False],AttributeError: can't set attribute,failed +1076,tests.integ.modin.frame.test_iloc,test_df_iloc_full_set_row_from_series[None-index2],"ValueError: could not broadcast input array from shape (2,) into shape (2, 3)",failed +1086,tests.integ.modin.crosstab.test_crosstab,test_normalize[0-True],AttributeError: can't set attribute,failed +1100,tests.integ.modin.crosstab.test_crosstab,test_normalize[0-False],AttributeError: can't set attribute,failed +1115,tests.integ.modin.crosstab.test_crosstab,test_normalize[1-True],AttributeError: can't set attribute,failed +1122,tests.integ.modin.frame.test_iloc,test_df_iloc_full_set_row_from_series[columns1-index0],"ValueError: could not broadcast input array from shape (2,) into shape (2, 3)",failed +1132,tests.integ.modin.crosstab.test_crosstab,test_normalize[1-False],AttributeError: can't set attribute,failed +1144,tests.integ.modin.frame.test_iloc,test_df_iloc_full_set_row_from_series[columns1-index1],"ValueError: could not broadcast input array from shape (2,) into shape (2, 3)",failed +1161,tests.integ.modin.frame.test_iloc,test_df_iloc_full_set_row_from_series[columns1-index2],"ValueError: could not broadcast input array from shape (2,) into shape (2, 3)",failed +1174,tests.integ.modin.frame.test_iloc,test_df_iloc_efficient_sql[0],IndexError: list index out of range,failed +1183,tests.integ.modin.frame.test_iloc,test_df_iloc_efficient_sql[1],IndexError: list index out of range,failed +1191,tests.integ.modin.crosstab.test_crosstab,test_normalize[True-True],AttributeError: can't set attribute,failed +1193,tests.integ.modin.frame.test_iloc,test_df_iloc_efficient_sql[2],IndexError: list index out of range,failed +1197,tests.integ.modin.frame.test_equals,test_equals_numeric_variants[int8-int16-True],"AssertionError: assert np.False_ == True + + where np.False_ = ( col1\n0 1\n1 3) + where = col1\n0 1\n1 3.equals + where col1\n0 1\n1 3 = ( col1\n0 1\n1 3) + where = pd.DataFrame + and col1\n0 1\n1 3 = ( col1\n0 1\n1 3) + where = pd.DataFrame",failed -959,tests.integ.modin.test_unique,test_unique_list_of_invalid_objects_negative[input_data2-ndarray],AssertionError,failed -964,tests.integ.modin.crosstab.test_crosstab,test_margins[False],AttributeError: can't set attribute,failed -966,tests.integ.modin.frame.test_equals,test_equals_numeric_variants[int32-int16-True],"AssertionError: assert False == True - + where False = ( col1\n0 1\n1 3) +1205,tests.integ.modin.frame.test_iloc,test_df_iloc_scalar_efficient_sql[0],IndexError: list index out of range,failed +1206,tests.integ.modin.frame.test_equals,test_equals_numeric_variants[int32-int16-True],"AssertionError: assert np.False_ == True + + where np.False_ = ( col1\n0 1\n1 3) + where = col1\n0 1\n1 3.equals + where col1\n0 1\n1 3 = ( col1\n0 1\n1 3) + where = pd.DataFrame + and col1\n0 1\n1 3 = ( col1\n0 1\n1 3) + where = pd.DataFrame",failed -967,tests.integ.modin.frame.test_iloc,test_df_iloc_full_set_row_from_series[None-index2],"ValueError: could not broadcast input array from shape (2,) into shape (2, 3)",failed -977,tests.integ.modin.frame.test_equals,test_equals_numeric_variants[float16-float32-True],"AssertionError: assert False == True - + where False = ( col1\n0 1.0\n1 3.0) +1210,tests.integ.modin.crosstab.test_crosstab,test_normalize[True-False],AttributeError: can't set attribute,failed +1215,tests.integ.modin.frame.test_iloc,test_df_iloc_scalar_efficient_sql[1],IndexError: list index out of range,failed +1218,tests.integ.modin.frame.test_equals,test_equals_numeric_variants[float16-float32-True],"AssertionError: assert np.False_ == True + + where np.False_ = ( col1\n0 1.0\n1 3.0) + where = col1\n0 1.0\n1 3.0.equals + where col1\n0 1.0\n1 3.0 = ( col1\n0 1.0\n1 3.0) + where = pd.DataFrame + and col1\n0 1.0\n1 3.0 = ( col1\n0 1.0\n1 3.0) + where = pd.DataFrame",failed -980,tests.integ.modin.crosstab.test_crosstab,test_normalize[0-True],AttributeError: can't set attribute,failed -986,tests.integ.modin.frame.test_equals,test_equals_numeric_variants[float64-float32-True],"AssertionError: assert False == True - + where False = ( col1\n0 1.0\n1 3.0) +1226,tests.integ.modin.crosstab.test_crosstab,test_normalize[all-True],AttributeError: can't set attribute,failed +1227,tests.integ.modin.frame.test_equals,test_equals_numeric_variants[float64-float32-True],"AssertionError: assert np.False_ == True + + where np.False_ = ( col1\n0 1.0\n1 3.0) + where = col1\n0 1.0\n1 3.0.equals + where col1\n0 1.0\n1 3.0 = ( col1\n0 1.0\n1 3.0) + where = pd.DataFrame + and col1\n0 1.0\n1 3.0 = ( col1\n0 1.0\n1 3.0) + where = pd.DataFrame",failed -988,tests.integ.modin.frame.test_iloc,test_df_iloc_full_set_row_from_series[columns1-index0],"ValueError: could not broadcast input array from shape (2,) into shape (2, 3)",failed -994,tests.integ.modin.crosstab.test_crosstab,test_normalize[0-False],AttributeError: can't set attribute,failed -997,tests.integ.modin.frame.test_align,test_multiindex_negative[None],ValueError: cannot join with no overlapping index names,failed -1005,tests.integ.modin.frame.test_iloc,test_df_iloc_full_set_row_from_series[columns1-index1],"ValueError: could not broadcast input array from shape (2,) into shape (2, 3)",failed -1009,tests.integ.modin.frame.test_align,test_align_frame_copy_negative,Failed: DID NOT RAISE ,failed -1010,tests.integ.modin.crosstab.test_crosstab,test_normalize[1-True],AttributeError: can't set attribute,failed -1025,tests.integ.modin.frame.test_align,test_align_frame_deprecated_negative,Failed: DID NOT RAISE ,failed -1041,tests.integ.modin.frame.test_iloc,test_df_iloc_full_set_row_from_series[columns1-index2],"ValueError: could not broadcast input array from shape (2,) into shape (2, 3)",failed -1049,tests.integ.modin.crosstab.test_crosstab,test_normalize[1-False],AttributeError: can't set attribute,failed -1053,tests.integ.modin.frame.test_iloc,test_df_iloc_efficient_sql[0],IndexError: list index out of range,failed -1061,tests.integ.modin.frame.test_iloc,test_df_iloc_efficient_sql[1],IndexError: list index out of range,failed -1064,tests.integ.modin.crosstab.test_crosstab,test_normalize[True-True],AttributeError: can't set attribute,failed -1071,tests.integ.modin.frame.test_iloc,test_df_iloc_efficient_sql[2],IndexError: list index out of range,failed -1081,tests.integ.modin.crosstab.test_crosstab,test_normalize[True-False],AttributeError: can't set attribute,failed -1083,tests.integ.modin.frame.test_iloc,test_df_iloc_scalar_efficient_sql[0],IndexError: list index out of range,failed -1092,tests.integ.modin.frame.test_iloc,test_df_iloc_scalar_efficient_sql[1],IndexError: list index out of range,failed -1099,tests.integ.modin.crosstab.test_crosstab,test_normalize[all-True],AttributeError: can't set attribute,failed -1106,tests.integ.modin.frame.test_fillna,test_value_scalar_diff_type,Failed: DID NOT RAISE ,failed -1116,tests.integ.modin.crosstab.test_crosstab,test_normalize[all-False],AttributeError: can't set attribute,failed -1134,tests.integ.modin.crosstab.test_crosstab,test_normalize[index-True],AttributeError: can't set attribute,failed -1148,tests.integ.modin.frame.test_info,test_info_verbose_true,"AssertionError: assert 'SnowflakeIndex' in 'RangeIndex: 3 entries, 0 to 2'",failed -1157,tests.integ.modin.frame.test_info,test_info_verbose_false,"AssertionError: assert 'SnowflakeIndex' in 'RangeIndex: 3 entries, 0 to 2'",failed -1166,tests.integ.modin.frame.test_info,test_info_counts_true,"AssertionError: assert 'SnowflakeIndex' in 'RangeIndex: 3 entries, 0 to 2'",failed -1177,tests.integ.modin.frame.test_info,test_info_counts_false,TypeError: got an unexpected keyword argument 'null_counts',failed -1186,tests.integ.modin.frame.test_info,test_info_SNOW_962607,"AssertionError: assert 'SnowflakeIndex' in 'RangeIndex: 3 entries, 0 to 2'",failed -1187,tests.integ.modin.crosstab.test_crosstab,test_normalize[index-False],AttributeError: can't set attribute,failed -1210,tests.integ.modin.crosstab.test_crosstab,test_normalize[columns-True],AttributeError: can't set attribute,failed -1233,tests.integ.modin.crosstab.test_crosstab,test_normalize[columns-False],AttributeError: can't set attribute,failed -1253,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_margins[0-True],AttributeError: can't set attribute,failed -1267,tests.integ.modin.frame.test_fillna,test_argument_negative,"AssertionError: Regex pattern did not match. - Regex: ""Must specify a fill 'value' or 'method'."" - Input: 'must specify a fill method or value'",failed -1274,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_margins[0-False],AttributeError: can't set attribute,failed -1298,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_margins[1-True],AttributeError: can't set attribute,failed -1319,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_margins[1-False],AttributeError: can't set attribute,failed -1358,tests.integ.modin.frame.test_insert,test_insert_one_to_many[native_value0],ValueError: cannot reindex on an axis with duplicate labels,failed -1371,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_margins[True-True],AttributeError: can't set attribute,failed -1389,tests.integ.modin.frame.test_all_any,test_all_float_not_implemented[True-data0-0],Failed: DID NOT RAISE ,failed -1395,tests.integ.modin.frame.test_all_any,test_all_float_not_implemented[True-data0-1],Failed: DID NOT RAISE ,failed -1396,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_margins[True-False],AttributeError: can't set attribute,failed -1401,tests.integ.modin.frame.test_all_any,test_all_float_not_implemented[True-data0-None],Failed: DID NOT RAISE ,failed -1406,tests.integ.modin.frame.test_all_any,test_all_float_not_implemented[True-data1-0],Failed: DID NOT RAISE ,failed -1412,tests.integ.modin.frame.test_all_any,test_all_float_not_implemented[True-data1-1],Failed: DID NOT RAISE ,failed -1419,tests.integ.modin.frame.test_all_any,test_all_float_not_implemented[True-data1-None],Failed: DID NOT RAISE ,failed -1420,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_margins[all-True],AttributeError: can't set attribute,failed -1425,tests.integ.modin.frame.test_all_any,test_all_float_not_implemented[False-data0-0],Failed: DID NOT RAISE ,failed -1432,tests.integ.modin.frame.test_all_any,test_all_float_not_implemented[False-data0-1],Failed: DID NOT RAISE ,failed -1435,tests.integ.modin.frame.test_all_any,test_all_float_not_implemented[False-data0-None],Failed: DID NOT RAISE ,failed -1439,tests.integ.modin.frame.test_insert,test_insert_one_to_many[native_value1],ValueError: cannot reindex on an axis with duplicate labels,failed -1443,tests.integ.modin.frame.test_all_any,test_all_float_not_implemented[False-data1-0],Failed: DID NOT RAISE ,failed -1444,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_margins[all-False],AttributeError: can't set attribute,failed -1448,tests.integ.modin.frame.test_all_any,test_all_float_not_implemented[False-data1-1],Failed: DID NOT RAISE ,failed -1452,tests.integ.modin.frame.test_all_any,test_all_float_not_implemented[False-data1-None],Failed: DID NOT RAISE ,failed -1456,tests.integ.modin.frame.test_all_any,test_any_float_not_implemented[True-data0-0],Failed: DID NOT RAISE ,failed -1461,tests.integ.modin.frame.test_all_any,test_any_float_not_implemented[True-data0-1],Failed: DID NOT RAISE ,failed -1465,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_margins[index-True],AttributeError: can't set attribute,failed -1467,tests.integ.modin.frame.test_all_any,test_any_float_not_implemented[True-data0-None],Failed: DID NOT RAISE ,failed -1471,tests.integ.modin.frame.test_all_any,test_any_float_not_implemented[True-data1-0],Failed: DID NOT RAISE ,failed -1477,tests.integ.modin.frame.test_all_any,test_any_float_not_implemented[True-data1-1],Failed: DID NOT RAISE ,failed -1481,tests.integ.modin.frame.test_all_any,test_any_float_not_implemented[True-data1-None],Failed: DID NOT RAISE ,failed -1484,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_margins[index-False],AttributeError: can't set attribute,failed -1487,tests.integ.modin.frame.test_insert,test_insert_one_to_many[native_value2],ValueError: cannot reindex on an axis with duplicate labels,failed -1488,tests.integ.modin.frame.test_all_any,test_any_float_not_implemented[False-data0-0],Failed: DID NOT RAISE ,failed -1492,tests.integ.modin.frame.test_all_any,test_any_float_not_implemented[False-data0-1],Failed: DID NOT RAISE ,failed -1498,tests.integ.modin.frame.test_all_any,test_any_float_not_implemented[False-data0-None],Failed: DID NOT RAISE ,failed -1502,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_margins[columns-True],AttributeError: can't set attribute,failed -1504,tests.integ.modin.frame.test_all_any,test_any_float_not_implemented[False-data1-0],Failed: DID NOT RAISE ,failed -1510,tests.integ.modin.frame.test_all_any,test_any_float_not_implemented[False-data1-1],Failed: DID NOT RAISE ,failed -1516,tests.integ.modin.frame.test_all_any,test_any_float_not_implemented[False-data1-None],Failed: DID NOT RAISE ,failed -1520,tests.integ.modin.frame.test_all_any,test_all_str_not_implemented[data0-0],Failed: DID NOT RAISE ,failed -1524,tests.integ.modin.frame.test_all_any,test_all_str_not_implemented[data0-1],Failed: DID NOT RAISE ,failed -1532,tests.integ.modin.frame.test_all_any,test_all_str_not_implemented[data0-None],Failed: DID NOT RAISE ,failed -1536,tests.integ.modin.frame.test_all_any,test_any_str_not_implemented[data0-0],Failed: DID NOT RAISE ,failed -1542,tests.integ.modin.frame.test_all_any,test_any_str_not_implemented[data0-1],Failed: DID NOT RAISE ,failed -1546,tests.integ.modin.frame.test_all_any,test_any_str_not_implemented[data0-None],Failed: DID NOT RAISE ,failed -1552,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_margins[columns-False],AttributeError: can't set attribute,failed -1567,tests.integ.modin.crosstab.test_crosstab,test_normalize_margins_and_values[median0-0-True],AttributeError: can't set attribute,failed -1568,tests.integ.modin.test_apply_snowflake_cortex_functions,test_apply_snowflake_cortex_negative[series_cortex_unsupported_function_complete],TypeError: complete() got multiple values for argument 'model',failed -1577,tests.integ.modin.frame.test_insert,test_insert_pandas_types_negative,Failed: DID NOT RAISE ,failed -1581,tests.integ.modin.crosstab.test_crosstab,test_normalize_margins_and_values[median0-0-False],AttributeError: can't set attribute,failed -1600,tests.integ.modin.test_apply_snowflake_cortex_functions,test_apply_snowflake_cortex_negative[df_cortex_unsupported_function_complete],TypeError: complete() got multiple values for argument 'model',failed -1601,tests.integ.modin.crosstab.test_crosstab,test_normalize_margins_and_values[median0-1-True],AttributeError: can't set attribute,failed -1615,tests.integ.modin.crosstab.test_crosstab,test_normalize_margins_and_values[median0-1-False],AttributeError: can't set attribute,failed -1624,tests.integ.modin.frame.test_apply,test_axis_1_basic_types_without_type_hints[return_timedelta_scalar],[XPASS(strict)] SNOW-1619940,failed -1629,tests.integ.modin.crosstab.test_crosstab,test_normalize_margins_and_values[median0-index-True],AttributeError: can't set attribute,failed -1644,tests.integ.modin.crosstab.test_crosstab,test_normalize_margins_and_values[median0-index-False],AttributeError: can't set attribute,failed -1646,tests.integ.modin.frame.test_insert,test_insert_duplicate_label,"ValueError: cannot insert col1, already exists",failed -1677,tests.integ.modin.frame.test_insert,test_insert_loc_negative[1],AssertionError: Snowpark pandas Exception '<=' not supported between instances of 'int' and 'str' doesn't match pandas Exception loc must be int,failed -1678,tests.integ.modin.binary.test_binary_op,test_arithmetic_binary_division_between_series[floordiv-rhs2-lhs0],AttributeError: 'bool' object has no attribute 'any',failed -1682,tests.integ.modin.frame.test_fillna,test_df_fillna_method_with_type_coercion_errors_for_variant_column_negative,TODO SNOW-1489309 investigate why it starts to work now on qa,xfailed -1685,tests.integ.modin.crosstab.test_crosstab,test_normalize_margins_and_values[median0-columns-True],AttributeError: can't set attribute,failed -1688,tests.integ.modin.frame.test_apply,test_axis_1_basic_types_without_type_hints[apply_on_frame_with_timedelta_data_columns_returns_int],[XPASS(strict)] ,failed -1689,tests.integ.modin.frame.test_fillna,test_df_fillna_method_with_type_coercion_casts_all_as_bool_negative,"AssertionError: DataFrame.iloc[:, 1] (column name=""D"") are different - -DataFrame.iloc[:, 1] (column name=""D"") values are different (25.0 %) -[index]: [0, 1, 2, 3] -[left]: [False, 4.0, True, ] -[right]: [False, True, True, None] -At positional index 1, first diff: 4.0 != True",failed -1697,tests.integ.modin.frame.test_fillna,test_df_fillna_timestamp_no_numeric_with_nans,"[XPASS(strict)] Pandas will replace the np.nan in a timestamp column with 0, and upcast the dtype",failed -1701,tests.integ.modin.crosstab.test_crosstab,test_normalize_margins_and_values[median0-columns-False],AttributeError: can't set attribute,failed -1702,tests.integ.modin.frame.test_apply,test_axis_1_basic_types_with_type_hints[return_timedelta_scalar],[XPASS(strict)] SNOW-1619940,failed -1703,tests.integ.modin.frame.test_insert,test_insert_multiindex_array_like_and_scalar[value4-1],ValueError: Length of values (1) does not match length of index (4),failed -1714,tests.integ.modin.binary.test_timedelta,test_datetime_timedelta_scalar_divide_by_numeric_dataframe,"AssertionError: Attributes of DataFrame.iloc[:, 0] (column name=""0"") are different +1243,tests.integ.modin.crosstab.test_crosstab,test_normalize[all-False],AttributeError: can't set attribute,failed +1258,tests.integ.modin.crosstab.test_crosstab,test_normalize[index-True],AttributeError: can't set attribute,failed +1268,tests.integ.modin.crosstab.test_crosstab,test_normalize[index-False],AttributeError: can't set attribute,failed +1285,tests.integ.modin.crosstab.test_crosstab,test_normalize[columns-True],AttributeError: can't set attribute,failed +1294,tests.integ.modin.crosstab.test_crosstab,test_normalize[columns-False],AttributeError: can't set attribute,failed +1306,tests.integ.modin.binary.test_timedelta,test_datetime_timedelta_scalar_divide_by_numeric_dataframe,"AssertionError: Attributes of DataFrame.iloc[:, 0] (column name=""0"") are different Attribute ""dtype"" are different [left]: timedelta64[us] [right]: timedelta64[ns]",failed -1715,tests.integ.modin.crosstab.test_crosstab,test_normalize_margins_and_values[median1-0-True],AttributeError: can't set attribute,failed -1723,tests.integ.modin.frame.test_insert,test_insert_empty_multiindex_frame[value0],"ValueError: Buffer dtype mismatch, expected 'Python object' but got 'long'",failed -1724,tests.integ.modin.crosstab.test_crosstab,test_normalize_margins_and_values[median1-0-False],AttributeError: can't set attribute,failed -1727,tests.integ.modin.binary.test_binary_op,test_arithmetic_binary_division_between_series[floordiv-rhs2-lhs1],AttributeError: 'bool' object has no attribute 'any',failed -1734,tests.integ.modin.crosstab.test_crosstab,test_normalize_margins_and_values[median1-1-True],AttributeError: can't set attribute,failed -1740,tests.integ.modin.frame.test_insert,test_insert_empty_multiindex_frame[value1],"ValueError: Buffer dtype mismatch, expected 'Python object' but got 'long'",failed -1742,tests.integ.modin.frame.test_apply,test_axis_1_basic_types_with_type_hints[apply_on_frame_with_timedelta_data_columns_returns_int],[XPASS(strict)] ,failed -1746,tests.integ.modin.crosstab.test_crosstab,test_normalize_margins_and_values[median1-1-False],AttributeError: can't set attribute,failed -1751,tests.integ.modin.binary.test_binary_op,test_arithmetic_binary_division_between_series[floordiv-rhs2-lhs2],AttributeError: 'bool' object has no attribute 'any',failed -1760,tests.integ.modin.frame.test_apply,test_frame_with_timedelta_index,[XPASS(strict)] ,failed -1761,tests.integ.modin.crosstab.test_crosstab,test_normalize_margins_and_values[median1-index-True],AttributeError: can't set attribute,failed -1773,tests.integ.modin.binary.test_binary_op,test_arithmetic_binary_division_between_series[floordiv-rhs2-lhs3],AttributeError: 'bool' object has no attribute 'any',failed -1776,tests.integ.modin.frame.test_insert,test_insert_empty_multiindex_frame[value2],"ValueError: Buffer dtype mismatch, expected 'Python object' but got 'long'",failed -1778,tests.integ.modin.frame.test_apply,test_axis_1_date_time_timestamp_type[data0--expected_result0],AttributeError: Can only use .dt accessor with datetimelike values,failed -1784,tests.integ.modin.frame.test_insert,test_insert_multiindex_dict_negative,"AssertionError: Regex pattern did not match. - Regex: 'Number of index levels of inserted column are different from frame index' - Input: 'Length of values (3) does not match length of index (4)'",failed -1786,tests.integ.modin.frame.test_apply,test_axis_1_date_time_timestamp_type[data1--expected_result1],"AssertionError: DataFrame.iloc[:, 1] (column name=""1"") are different +1325,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_margins[0-True],AttributeError: can't set attribute,failed +1337,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_margins[0-False],AttributeError: can't set attribute,failed +1339,tests.integ.modin.frame.test_info,test_info_verbose_true,"AssertionError: assert 'SnowflakeIndex' in 'RangeIndex: 3 entries, 0 to 2'",failed +1343,tests.integ.modin.frame.test_info,test_info_verbose_false,"AssertionError: assert 'SnowflakeIndex' in 'RangeIndex: 3 entries, 0 to 2'",failed +1347,tests.integ.modin.frame.test_info,test_info_counts_true,"AssertionError: assert 'SnowflakeIndex' in 'RangeIndex: 3 entries, 0 to 2'",failed +1352,tests.integ.modin.frame.test_info,test_info_counts_false,TypeError: got an unexpected keyword argument 'null_counts',failed +1353,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_margins[1-True],AttributeError: can't set attribute,failed +1358,tests.integ.modin.frame.test_info,test_info_SNOW_962607,"AssertionError: assert 'SnowflakeIndex' in 'RangeIndex: 3 entries, 0 to 2'",failed +1370,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_margins[1-False],AttributeError: can't set attribute,failed +1386,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_margins[True-True],AttributeError: can't set attribute,failed +1387,tests.integ.modin.frame.test_fillna,test_value_scalar_diff_type,Failed: DID NOT RAISE ,failed +1400,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_margins[True-False],AttributeError: can't set attribute,failed +1412,tests.integ.modin.test_to_numpy,test_variant_data_to_numpy[DataFrame],"AssertionError: +Arrays are not equal -DataFrame.iloc[:, 1] (column name=""1"") values are different (50.0 %) -[index]: [0, 1] -[left]: [None, 2021-01-09] -[right]: [NaT, 2021-01-09] -At positional index 0, first diff: None != NaT",failed -1790,tests.integ.modin.frame.test_filter,test_filtering_with_self_not_implemented[0],Failed: DID NOT RAISE ,failed -1791,tests.integ.modin.crosstab.test_crosstab,test_normalize_margins_and_values[median1-index-False],AttributeError: can't set attribute,failed -1793,tests.integ.modin.test_apply_snowpark_python_functions,test_apply_sin,"TypeError: 'SIN' expected Column or str, got: ",failed -1795,tests.integ.modin.frame.test_filter,test_filtering_with_self_not_implemented[1],Failed: DID NOT RAISE ,failed -1804,tests.integ.modin.crosstab.test_crosstab,test_normalize_margins_and_values[median1-columns-True],AttributeError: can't set attribute,failed -1810,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_row_tuple_key_list[item_values0-row_pos0-col_pos0],"AssertionError: DataFrame.iloc[:, 2] (column name=""C"") are different +Mismatched elements: 4 / 10 (40%) + ACTUAL: array([[1], + [1.1], + ['snow'],... + DESIRED: array([[1], + [1.1], + ['snow'],...",failed +1416,tests.integ.modin.test_to_numpy,test_variant_data_to_numpy[Series],"AssertionError: +Arrays are not equal + +Mismatched elements: 4 / 10 (40%) + ACTUAL: array([1, 1.1, 'snow', b'snow', datetime.date(2023, 1, 1), + datetime.time(1, 2, 3, 1), datetime.datetime(2023, 1, 1, 0, 0), + list([1, 2]), {'snow': 'flake'}, None], dtype=object) + DESIRED: array([1, 1.1, 'snow', '736e6f77', '2023-01-01', '01:02:03.000001', + '2023-01-01T00:00:00', list([1, 2]), {'snow': 'flake'}, None], + dtype=object)",failed +1443,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_margins[all-True],AttributeError: can't set attribute,failed +1458,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_margins[all-False],AttributeError: can't set attribute,failed +1467,tests.integ.modin.test_to_numpy,test_to_numpy_copy_true_series,"AssertionError: assert 'has been ignored by Snowpark pandas' in '' + + where '' = <_pytest.logging.LogCaptureFixture object at 0x331d960d0>.text",failed +1472,tests.integ.modin.frame.test_fillna,test_argument_negative,"AssertionError: Regex pattern did not match. + Regex: ""Must specify a fill 'value' or 'method'."" + Input: 'must specify a fill method or value'",failed +1473,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_margins[index-True],AttributeError: can't set attribute,failed +1485,tests.integ.modin.test_to_numpy,test_to_numpy_warning,"AssertionError: assert 'The current operation leads to materialization and can be slow if the data is large!' in '' + + where '' = <_pytest.logging.LogCaptureFixture object at 0x331e147f0>.text",failed +1488,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_margins[index-False],AttributeError: can't set attribute,failed +1501,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_margins[columns-True],AttributeError: can't set attribute,failed +1517,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_margins[columns-False],AttributeError: can't set attribute,failed +1532,tests.integ.modin.crosstab.test_crosstab,test_normalize_margins_and_values[median0-0-True],AttributeError: can't set attribute,failed +1546,tests.integ.modin.crosstab.test_crosstab,test_normalize_margins_and_values[median0-0-False],AttributeError: can't set attribute,failed +1578,tests.integ.modin.binary.test_binary_op,test_arithmetic_binary_division_between_series[floordiv-rhs2-lhs0],TypeError: boolean value of NA is ambiguous,failed +1583,tests.integ.modin.crosstab.test_crosstab,test_normalize_margins_and_values[median0-1-True],AttributeError: can't set attribute,failed +1586,tests.integ.modin.frame.test_insert,test_insert_one_to_many[native_value0],ValueError: cannot reindex on an axis with duplicate labels,failed +1592,tests.integ.modin.crosstab.test_crosstab,test_normalize_margins_and_values[median0-1-False],AttributeError: can't set attribute,failed +1599,tests.integ.modin.crosstab.test_crosstab,test_normalize_margins_and_values[median0-index-True],AttributeError: can't set attribute,failed +1603,tests.integ.modin.test_unimplemented,test_unsupported_dataframe_methods[-cumprod0],Failed: DID NOT RAISE ,failed +1605,tests.integ.modin.test_unimplemented,test_unsupported_dataframe_methods[-cumprod1],Failed: DID NOT RAISE ,failed +1606,tests.integ.modin.frame.test_insert,test_insert_one_to_many[native_value1],ValueError: cannot reindex on an axis with duplicate labels,failed +1610,tests.integ.modin.crosstab.test_crosstab,test_normalize_margins_and_values[median0-index-False],AttributeError: can't set attribute,failed +1612,tests.integ.modin.test_unimplemented,test_unsupported_series_methods[-transform],Failed: DID NOT RAISE ,failed +1614,tests.integ.modin.test_unimplemented,test_unsupported_series_methods[-cumprod],Failed: DID NOT RAISE ,failed +1618,tests.integ.modin.test_unimplemented,test_unsupported_dataframe_binary_methods[-update],Failed: DID NOT RAISE ,failed +1621,tests.integ.modin.crosstab.test_crosstab,test_normalize_margins_and_values[median0-columns-True],AttributeError: can't set attribute,failed +1622,tests.integ.modin.binary.test_binary_op,test_arithmetic_binary_division_between_series[floordiv-rhs2-lhs1],TypeError: boolean value of NA is ambiguous,failed +1624,tests.integ.modin.test_unimplemented,test_unsupported_series_binary_methods[-update],Failed: DID NOT RAISE ,failed +1627,tests.integ.modin.test_unimplemented,test_unsupported_str_methods[-Series.rfind],Failed: DID NOT RAISE ,failed +1645,tests.integ.modin.crosstab.test_crosstab,test_normalize_margins_and_values[median0-columns-False],AttributeError: can't set attribute,failed +1652,tests.integ.modin.frame.test_insert,test_insert_one_to_many[native_value2],ValueError: cannot reindex on an axis with duplicate labels,failed +1682,tests.integ.modin.crosstab.test_crosstab,test_normalize_margins_and_values[median1-0-True],AttributeError: can't set attribute,failed +1684,tests.integ.modin.binary.test_binary_op,test_arithmetic_binary_division_between_series[floordiv-rhs2-lhs2],TypeError: boolean value of NA is ambiguous,failed +1710,tests.integ.modin.binary.test_binary_op,test_arithmetic_binary_division_between_series[floordiv-rhs2-lhs3],TypeError: boolean value of NA is ambiguous,failed +1716,tests.integ.modin.crosstab.test_crosstab,test_normalize_margins_and_values[median1-0-False],AttributeError: can't set attribute,failed +1718,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_row_tuple_key_list[item_values0-row_pos0-col_pos0],"AssertionError: DataFrame.iloc[:, 2] (column name=""C"") are different DataFrame.iloc[:, 2] (column name=""C"") values are different (25.0 %) [index]: [0, 1, 2, 3] [left]: [7, 10, 100, 100] [right]: [7, 10, 100, 16]",failed -1816,tests.integ.modin.crosstab.test_crosstab,test_normalize_margins_and_values[median1-columns-False],AttributeError: can't set attribute,failed -1820,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_row_tuple_key_list[item_values0-row_pos1-col_pos1],"AssertionError: DataFrame.iloc[:, 1] (column name=""B"") are different +1724,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_row_tuple_key_list[item_values0-row_pos1-col_pos1],"AssertionError: DataFrame.iloc[:, 1] (column name=""B"") are different DataFrame.iloc[:, 1] (column name=""B"") values are different (50.0 %) [index]: [0, 1, 2, 3] [left]: [6, 99, 99, 99] [right]: [6, 99, 12, 15]",failed -1822,tests.integ.modin.binary.test_binary_op,test_arithmetic_binary_division_between_series[floordiv-rhs3-lhs0],AttributeError: 'bool' object has no attribute 'any',failed -1826,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_row_tuple_key_list[item_values0-row_pos2-col_pos2],"AssertionError: DataFrame.iloc[:, 0] (column name=""A"") are different +1726,tests.integ.modin.crosstab.test_crosstab,test_normalize_margins_and_values[median1-1-True],AttributeError: can't set attribute,failed +1728,tests.integ.modin.frame.test_insert,test_insert_pandas_types_negative,Failed: DID NOT RAISE ,failed +1729,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_row_tuple_key_list[item_values0-row_pos2-col_pos2],"AssertionError: DataFrame.iloc[:, 0] (column name=""A"") are different DataFrame.iloc[:, 0] (column name=""A"") values are different (50.0 %) [index]: [0, 1, 2, 3] [left]: [5, 101, 101, 101] [right]: [5, 101, 11, 14]",failed -1828,tests.integ.modin.frame.test_apply,test_axis_1_date_time_timestamp_type[data2--expected_result2],AttributeError: Can only use .dt accessor with datetimelike values,failed -1830,tests.integ.modin.crosstab.test_crosstab,test_normalize_margins_and_values[count-0-True],AttributeError: can't set attribute,failed -1833,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_row_tuple_key_list[item_values0-row_pos3-col_pos3],"AssertionError: DataFrame.iloc[:, 1] (column name=""B"") are different +1736,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_row_tuple_key_list[item_values0-row_pos3-col_pos3],"AssertionError: DataFrame.iloc[:, 1] (column name=""B"") are different DataFrame.iloc[:, 1] (column name=""B"") values are different (50.0 %) [index]: [0, 1, 2, 3] [left]: [6, 99, 99, 99] [right]: [6, 9, 12, 99]",failed -1834,tests.integ.modin.frame.test_insert,test_insert_index_num_levels_mismatch_negative[df_index0-value_index0],TypeError: incompatible index of inserted column with frame index,failed -1837,tests.integ.modin.frame.test_apply,test_axis_1_date_time_timestamp_type[data3--expected_result3],"AssertionError: DataFrame.iloc[:, 0] (column name=""0"") are different +1739,tests.integ.modin.crosstab.test_crosstab,test_normalize_margins_and_values[median1-1-False],AttributeError: can't set attribute,failed +1753,tests.integ.modin.crosstab.test_crosstab,test_normalize_margins_and_values[median1-index-True],AttributeError: can't set attribute,failed +1759,tests.integ.modin.binary.test_binary_op,test_arithmetic_binary_division_between_series[floordiv-rhs3-lhs0],TypeError: boolean value of NA is ambiguous,failed +1763,tests.integ.modin.crosstab.test_crosstab,test_normalize_margins_and_values[median1-index-False],AttributeError: can't set attribute,failed +1766,tests.integ.modin.frame.test_fillna,test_df_fillna_method_with_type_coercion_errors_for_variant_column_negative,TODO SNOW-1489309 investigate why it starts to work now on qa,xfailed +1769,tests.integ.modin.frame.test_fillna,test_df_fillna_method_with_type_coercion_casts_all_as_bool_negative,"AssertionError: DataFrame.iloc[:, 1] (column name=""D"") are different -DataFrame.iloc[:, 0] (column name=""0"") values are different (100.0 %) -[index]: [0, 1] -[left]: [01:02:03, 01:02:03.000001] -[right]: [0 days 01:02:03, 0 days 01:02:03.000001] -At positional index 0, first diff: 01:02:03 != 0 days 01:02:03",failed -1838,tests.integ.modin.frame.test_filter,test_filtering_df_with_other_df_unaligned_index,pandas.errors.IndexingError: Unalignable boolean Series provided as indexer (index of the boolean Series and of the indexed object do not match).,failed -1842,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_row_tuple_key_list[item_values0-row_pos4-col_pos4],"AssertionError: DataFrame.iloc[:, 0] (column name=""A"") are different +DataFrame.iloc[:, 1] (column name=""D"") values are different (25.0 %) +[index]: [0, 1, 2, 3] +[left]: [False, 4.0, True, ] +[right]: [False, True, True, None] +At positional index 1, first diff: 4.0 != True",failed +1770,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_row_tuple_key_list[item_values0-row_pos4-col_pos4],"AssertionError: DataFrame.iloc[:, 0] (column name=""A"") are different DataFrame.iloc[:, 0] (column name=""A"") values are different (50.0 %) [index]: [0, 1, 2, 3] [left]: [100, 8, 100, 100] [right]: [5, 8, 100, 14]",failed -1843,tests.integ.modin.crosstab.test_crosstab,test_normalize_margins_and_values[count-0-False],AttributeError: can't set attribute,failed -1846,tests.integ.modin.frame.test_apply,test_axis_1_date_time_timestamp_type[data4--expected_result4],"AssertionError: Series are different - -Series values are different (100.0 %) -[index]: [0, 1] -[left]: [UTC, UTC] -[right]: [UTC, UTC] -At positional index 0, first diff: UTC != UTC",failed -1848,tests.integ.modin.binary.test_binary_op,test_arithmetic_binary_division_between_series[floordiv-rhs3-lhs1],AttributeError: 'bool' object has no attribute 'any',failed -1851,tests.integ.modin.frame.test_apply,test_axis_1_date_time_timestamp_type[data5--expected_result5],"AssertionError: DataFrame.iloc[:, 1] (column name=""1"") are different - -DataFrame.iloc[:, 1] (column name=""1"") values are different (50.0 %) -[index]: [0, 1] -[left]: [NaT, 2023-01-01 01:02:03+00:00] -[right]: [None, 2023-01-01 01:02:03+00:00] -At positional index 0, first diff: NaT != None",failed -1853,tests.integ.modin.crosstab.test_crosstab,test_normalize_margins_and_values[count-1-True],AttributeError: can't set attribute,failed -1861,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_row_tuple_key_list[item_values0-row_pos5-col_pos5],"AssertionError: DataFrame.iloc[:, 1] (column name=""B"") are different +1773,tests.integ.modin.crosstab.test_crosstab,test_normalize_margins_and_values[median1-columns-True],AttributeError: can't set attribute,failed +1775,tests.integ.modin.frame.test_fillna,test_df_fillna_timestamp_no_numeric_with_nans,"[XPASS(strict)] Pandas will replace the np.nan in a timestamp column with 0, and upcast the dtype",failed +1778,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_row_tuple_key_list[item_values0-row_pos5-col_pos5],"AssertionError: DataFrame.iloc[:, 1] (column name=""B"") are different DataFrame.iloc[:, 1] (column name=""B"") values are different (50.0 %) [index]: [0, 1, 2, 3] [left]: [101, 9, 101, 101] [right]: [101, 9, 12, 15]",failed -1865,tests.integ.modin.binary.test_binary_op,test_arithmetic_binary_division_between_series[floordiv-rhs3-lhs2],AttributeError: 'bool' object has no attribute 'any',failed -1869,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_row_tuple_key_list[123-row_pos0-col_pos0],"AssertionError: DataFrame.iloc[:, 2] (column name=""C"") are different +1782,tests.integ.modin.frame.test_insert,test_insert_duplicate_label,"ValueError: cannot insert col1, already exists",failed +1783,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_row_tuple_key_list[123-row_pos0-col_pos0],"AssertionError: DataFrame.iloc[:, 2] (column name=""C"") are different DataFrame.iloc[:, 2] (column name=""C"") values are different (25.0 %) [index]: [0, 1, 2, 3] [left]: [7, 10, 123, 123] [right]: [7, 10, 123, 16]",failed -1877,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_row_tuple_key_list[123-row_pos1-col_pos1],"AssertionError: DataFrame.iloc[:, 1] (column name=""B"") are different +1789,tests.integ.modin.binary.test_binary_op,test_arithmetic_binary_division_between_series[floordiv-rhs3-lhs1],TypeError: boolean value of NA is ambiguous,failed +1794,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_row_tuple_key_list[123-row_pos1-col_pos1],"AssertionError: DataFrame.iloc[:, 1] (column name=""B"") are different DataFrame.iloc[:, 1] (column name=""B"") values are different (50.0 %) [index]: [0, 1, 2, 3] [left]: [6, 123, 123, 123] [right]: [6, 123, 12, 15]",failed -1881,tests.integ.modin.crosstab.test_crosstab,test_normalize_margins_and_values[count-1-False],AttributeError: can't set attribute,failed -1882,tests.integ.modin.frame.test_insert,test_insert_index_num_levels_mismatch_negative[df_index1-value_index1],AssertionError: Length of new_levels (3) must be <= self.nlevels (2),failed -1886,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_row_tuple_key_list[123-row_pos2-col_pos2],"AssertionError: DataFrame.iloc[:, 0] (column name=""A"") are different +1795,tests.integ.modin.crosstab.test_crosstab,test_normalize_margins_and_values[median1-columns-False],AttributeError: can't set attribute,failed +1805,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_row_tuple_key_list[123-row_pos2-col_pos2],"AssertionError: DataFrame.iloc[:, 0] (column name=""A"") are different DataFrame.iloc[:, 0] (column name=""A"") values are different (50.0 %) [index]: [0, 1, 2, 3] [left]: [5, 123, 123, 123] [right]: [5, 123, 11, 14]",failed -1887,tests.integ.modin.test_apply_snowpark_python_functions,test_apply_log10,"TypeError: 'LOG' expected Column or str, got: ",failed -1889,tests.integ.modin.frame.test_apply,test_axis_1_return_not_json_serializable_label,Failed: DID NOT RAISE ,failed -1895,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_row_tuple_key_list[123-row_pos3-col_pos3],"AssertionError: DataFrame.iloc[:, 1] (column name=""B"") are different +1811,tests.integ.modin.frame.test_insert,test_insert_loc_negative[1],AssertionError: Snowpark pandas Exception '<=' not supported between instances of 'int' and 'str' doesn't match pandas Exception loc must be int,failed +1814,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_row_tuple_key_list[123-row_pos3-col_pos3],"AssertionError: DataFrame.iloc[:, 1] (column name=""B"") are different DataFrame.iloc[:, 1] (column name=""B"") values are different (50.0 %) [index]: [0, 1, 2, 3] [left]: [6, 123, 123, 123] [right]: [6, 9, 12, 123]",failed -1896,tests.integ.modin.crosstab.test_crosstab,test_normalize_margins_and_values[count-index-True],AttributeError: can't set attribute,failed -1897,tests.integ.modin.frame.test_apply,test_axis_1_apply_args_kwargs,AssertionError: exception type does not match with expected type ,failed -1900,tests.integ.modin.frame.test_first_last_valid_index,test_first_and_last_valid_multiindex_dataframe[index0],"ValueError: The truth value of a Series is ambiguous. Use a.empty, a.bool(), a.item(), a.any() or a.all().",failed -1902,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_row_tuple_key_list[123-row_pos4-col_pos4],"AssertionError: DataFrame.iloc[:, 0] (column name=""A"") are different +1824,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_row_tuple_key_list[123-row_pos4-col_pos4],"AssertionError: DataFrame.iloc[:, 0] (column name=""A"") are different DataFrame.iloc[:, 0] (column name=""A"") values are different (50.0 %) [index]: [0, 1, 2, 3] [left]: [123, 8, 123, 123] [right]: [5, 8, 123, 14]",failed -1903,tests.integ.modin.frame.test_apply,test_result_type[reduce],Failed: DID NOT RAISE ,failed -1906,tests.integ.modin.frame.test_first_last_valid_index,test_first_and_last_valid_multiindex_dataframe[index1],"ValueError: The truth value of a Series is ambiguous. Use a.empty, a.bool(), a.item(), a.any() or a.all().",failed -1907,tests.integ.modin.crosstab.test_crosstab,test_normalize_margins_and_values[count-index-False],AttributeError: can't set attribute,failed -1909,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_row_tuple_key_list[123-row_pos5-col_pos5],"AssertionError: DataFrame.iloc[:, 1] (column name=""B"") are different +1829,tests.integ.modin.binary.test_binary_op,test_arithmetic_binary_division_between_series[floordiv-rhs3-lhs2],TypeError: boolean value of NA is ambiguous,failed +1834,tests.integ.modin.frame.test_insert,test_insert_multiindex_array_like_and_scalar[value4-1],ValueError: Length of values (1) does not match length of index (4),failed +1836,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_row_tuple_key_list[123-row_pos5-col_pos5],"AssertionError: DataFrame.iloc[:, 1] (column name=""B"") are different DataFrame.iloc[:, 1] (column name=""B"") values are different (50.0 %) [index]: [0, 1, 2, 3] [left]: [123, 9, 123, 123] [right]: [123, 9, 12, 15]",failed -1910,tests.integ.modin.frame.test_apply,test_result_type[expand],Failed: DID NOT RAISE ,failed -1913,tests.integ.modin.frame.test_first_last_valid_index,test_first_and_last_valid_multiindex_dataframe[index2],"ValueError: The truth value of a Series is ambiguous. Use a.empty, a.bool(), a.item(), a.any() or a.all().",failed -1915,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_row_tuple_key_list_different_behavior[row_pos0-col_pos0-91-native_item0],"AssertionError: DataFrame.iloc[:, 2] (column name=""C"") are different +1844,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_row_tuple_key_list_different_behavior[row_pos0-col_pos0-91-native_item0],"AssertionError: DataFrame.iloc[:, 2] (column name=""C"") are different DataFrame.iloc[:, 2] (column name=""C"") values are different (25.0 %) [index]: [0, 1, 2, 3] [left]: [7, 10, 13, 91] [right]: [7, 10, 13, 16]",failed -1916,tests.integ.modin.frame.test_apply,test_result_type[broadcast],Failed: DID NOT RAISE ,failed -1917,tests.integ.modin.binary.test_binary_op,test_arithmetic_binary_division_between_series[floordiv-rhs3-lhs3],AttributeError: 'bool' object has no attribute 'any',failed -1919,tests.integ.modin.frame.test_insert,test_insert_index_num_levels_mismatch_negative[df_index2-value_index2],TypeError: incompatible index of inserted column with frame index,failed -1920,tests.integ.modin.crosstab.test_crosstab,test_normalize_margins_and_values[count-columns-True],AttributeError: can't set attribute,failed -1922,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_row_tuple_key_list_different_behavior[row_pos1-col_pos1-item_values1-native_item1],"AssertionError: DataFrame.iloc[:, 2] (column name=""C"") are different +1848,tests.integ.modin.crosstab.test_crosstab,test_normalize_margins_and_values[count-0-True],AttributeError: can't set attribute,failed +1851,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_row_tuple_key_list_different_behavior[row_pos1-col_pos1-item_values1-native_item1],"AssertionError: DataFrame.iloc[:, 2] (column name=""C"") are different DataFrame.iloc[:, 2] (column name=""C"") values are different (25.0 %) [index]: [0, 1, 2, 3] [left]: [7, 10, 13, 92] [right]: [7, 10, 13, 16]",failed -1923,tests.integ.modin.frame.test_apply,test_axis_1_apply_args_kwargs_with_snowpandas_object,Failed: DID NOT RAISE ,failed -1926,tests.integ.modin.binary.test_binary_op,test_arithmetic_binary_division_between_series_div_by_zero_negative[truediv-rhs0-lhs0],Failed: DID NOT RAISE ,failed -1932,tests.integ.modin.binary.test_binary_op,test_arithmetic_binary_division_between_series_div_by_zero_negative[truediv-rhs0-lhs1],Failed: DID NOT RAISE ,failed -1933,tests.integ.modin.frame.test_first_last_valid_index,test_first_and_last_valid_multiindex_dataframe[index3],"ValueError: The truth value of a Series is ambiguous. Use a.empty, a.bool(), a.item(), a.any() or a.all().",failed -1934,tests.integ.modin.crosstab.test_crosstab,test_normalize_margins_and_values[count-columns-False],AttributeError: can't set attribute,failed -1938,tests.integ.modin.frame.test_first_last_valid_index,test_first_and_last_valid_none_float64_multiindex_dataframe[data0],"ValueError: The truth value of a Series is ambiguous. Use a.empty, a.bool(), a.item(), a.any() or a.all().",failed -1942,tests.integ.modin.crosstab.test_crosstab,test_normalize_margins_and_values[mean0-0-True],AttributeError: can't set attribute,failed -1943,tests.integ.modin.frame.test_first_last_valid_index,test_first_and_last_valid_none_float64_multiindex_dataframe[data1],"ValueError: The truth value of a Series is ambiguous. Use a.empty, a.bool(), a.item(), a.any() or a.all().",failed -1945,tests.integ.modin.frame.test_insert,test_insert_index_num_levels_mismatch_negative[df_index3-value_index3],AssertionError: Length of new_levels (3) must be <= self.nlevels (2),failed -1949,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_row_df_col_df_key_set_coordinates[row_pos0-df-col_pos0-df],"ValueError: Buffer has wrong number of dimensions (expected 1, got 2)",failed -1950,tests.integ.modin.frame.test_first_last_valid_index,test_first_and_last_valid_nested_multiindex_series,"ValueError: The truth value of a Series is ambiguous. Use a.empty, a.bool(), a.item(), a.any() or a.all().",failed -1951,tests.integ.modin.frame.test_insert,test_insert_index_num_levels_mismatch_negative[df_index4-value_index4],Failed: DID NOT RAISE ,failed -1955,tests.integ.modin.crosstab.test_crosstab,test_normalize_margins_and_values[mean0-0-False],AttributeError: can't set attribute,failed -1956,tests.integ.modin.frame.test_insert,test_insert_index_num_levels_mismatch_negative[df_index5-value_index5],Failed: DID NOT RAISE ,failed -1959,tests.integ.modin.binary.test_binary_op,test_arithmetic_binary_division_between_series_div_by_zero_negative[truediv-rhs0-lhs2],ZeroDivisionError: float division by zero,failed -1962,tests.integ.modin.frame.test_insert,test_insert_index_type_mismatch[df_index0-value_index0-expected_index0],"AssertionError: DataFrame.index are different +1859,tests.integ.modin.crosstab.test_crosstab,test_normalize_margins_and_values[count-0-False],AttributeError: can't set attribute,failed +1863,tests.integ.modin.frame.test_insert,test_insert_empty_multiindex_frame[value0],"ValueError: Buffer dtype mismatch, expected 'Python object' but got 'long'",failed +1870,tests.integ.modin.crosstab.test_crosstab,test_normalize_margins_and_values[count-1-True],AttributeError: can't set attribute,failed +1879,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_row_df_col_df_key_set_coordinates[row_pos0-df-col_pos0-df],"ValueError: Buffer has wrong number of dimensions (expected 1, got 2)",failed +1880,tests.integ.modin.frame.test_insert,test_insert_empty_multiindex_frame[value1],"ValueError: Buffer dtype mismatch, expected 'Python object' but got 'long'",failed +1882,tests.integ.modin.test_unique,test_unique_timestamp_index[timestamp_index0],AssertionError,failed +1883,tests.integ.modin.crosstab.test_crosstab,test_normalize_margins_and_values[count-1-False],AttributeError: can't set attribute,failed +1887,tests.integ.modin.binary.test_binary_op,test_arithmetic_binary_division_between_series[floordiv-rhs3-lhs3],TypeError: boolean value of NA is ambiguous,failed +1894,tests.integ.modin.binary.test_binary_op,test_arithmetic_binary_division_between_series_div_by_zero_negative[truediv-rhs0-lhs0],Failed: DID NOT RAISE ,failed +1898,tests.integ.modin.crosstab.test_crosstab,test_normalize_margins_and_values[count-index-True],AttributeError: can't set attribute,failed +1902,tests.integ.modin.binary.test_binary_op,test_arithmetic_binary_division_between_series_div_by_zero_negative[truediv-rhs0-lhs1],Failed: DID NOT RAISE ,failed +1910,tests.integ.modin.crosstab.test_crosstab,test_normalize_margins_and_values[count-index-False],AttributeError: can't set attribute,failed +1923,tests.integ.modin.test_unique,test_unique_list_of_tuples,"AssertionError: +Arrays are not equal -DataFrame.index values are different (100.0 %) -[left]: Index(['1', '2', '3'], dtype='object') -[right]: Index([1.0, 2.0, 3.0], dtype='float64') -At positional index 0, first diff: 1 != 1.0",failed -1968,tests.integ.modin.frame.test_insert,test_insert_index_type_mismatch[df_index1-value_index1-expected_index1],TypeError: boolean value of NA is ambiguous,failed -1971,tests.integ.modin.frame.test_apply,test_axis_1_multi_index_column_labels_different_levels_negative,AssertionError: exception type does not match with expected type ,failed -1973,tests.integ.modin.frame.test_insert,test_insert_index_type_mismatch[df_index2-value_index2-expected_index2],TypeError: boolean value of NA is ambiguous,failed -1976,tests.integ.modin.frame.test_apply,test_apply_variant_json_null,"assert [True, True, True, False] == [False, True, True, False] - At index 0 diff: True != False - Full diff: - - [False, True, True, False] - + [True, True, True, False]",failed -1978,tests.integ.modin.binary.test_binary_op,test_arithmetic_binary_division_between_series_div_by_zero_negative[truediv-rhs0-lhs3],ZeroDivisionError: float division by zero,failed -1980,tests.integ.modin.crosstab.test_crosstab,test_normalize_margins_and_values[mean0-1-True],AttributeError: can't set attribute,failed -1982,tests.integ.modin.frame.test_apply,test_apply_bug_1650918[data0-],[XPASS(strict)] SNOW-1650918: Apply on dataframe data columns containing NULL fails with invalid arguments to udtf function,failed -1985,tests.integ.modin.binary.test_binary_op,test_arithmetic_binary_division_between_series_div_by_zero_negative[truediv-rhs0-lhs4],Failed: DID NOT RAISE ,failed -1986,tests.integ.modin.frame.test_apply,test_apply_bug_1650918[data1-],[XPASS(strict)] SNOW-1650918: Apply on dataframe data columns containing NULL fails with invalid arguments to udtf function,failed -1989,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_row_df_col_df_key_set_coordinates[row_pos1-df-col_pos1-df],"ValueError: Buffer has wrong number of dimensions (expected 1, got 2)",failed -1990,tests.integ.modin.crosstab.test_crosstab,test_normalize_margins_and_values[mean0-1-False],AttributeError: can't set attribute,failed -1994,tests.integ.modin.binary.test_binary_op,test_arithmetic_binary_division_between_series_div_by_zero_negative[truediv-rhs1-lhs0],Failed: DID NOT RAISE ,failed -1997,tests.integ.modin.test_apply_snowpark_python_functions,test_apply_trunc_default_scale,"TypeError: 'TRUNC' expected Column or str, got: ",failed -2004,tests.integ.modin.crosstab.test_crosstab,test_normalize_margins_and_values[mean0-index-True],AttributeError: can't set attribute,failed -2005,tests.integ.modin.binary.test_binary_not_implemented,test_binary_op_xor[0],Failed: DID NOT RAISE ,failed -2006,tests.integ.modin.frame.test_apply,test_basic_dataframe_transform[data2-exp-None],Failed: DID NOT RAISE ,failed -2008,tests.integ.modin.binary.test_binary_not_implemented,test_binary_op_xor[1],Failed: DID NOT RAISE ,failed -2012,tests.integ.modin.binary.test_binary_not_implemented,test_binary_op_dot[-DataFrame0],Failed: DID NOT RAISE ,failed -2015,tests.integ.modin.crosstab.test_crosstab,test_normalize_margins_and_values[mean0-index-False],AttributeError: can't set attribute,failed -2016,tests.integ.modin.binary.test_binary_not_implemented,test_binary_op_dot[-Series0],Failed: DID NOT RAISE ,failed -2020,tests.integ.modin.binary.test_binary_not_implemented,test_binary_op_dot[-Series1],Failed: DID NOT RAISE ,failed -2021,tests.integ.modin.binary.test_binary_op,test_arithmetic_binary_division_between_series_div_by_zero_negative[truediv-rhs1-lhs1],Failed: DID NOT RAISE ,failed -2022,tests.integ.modin.frame.test_apply,test_basic_dataframe_transform[data5-sqrt-None],Failed: DID NOT RAISE ,failed -2023,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_row_df_col_df_key_set_coordinates[row_pos2-df-col_pos2-df],"ValueError: Buffer has wrong number of dimensions (expected 1, got 2)",failed -2025,tests.integ.modin.binary.test_binary_not_implemented,test_binary_op_dot[-DataFrame1],Failed: DID NOT RAISE ,failed -2026,tests.integ.modin.frame.test_insert,test_insert_multiple_null,ValueError: cannot reindex on an axis with duplicate labels,failed -2030,tests.integ.modin.crosstab.test_crosstab,test_normalize_margins_and_values[mean0-columns-True],AttributeError: can't set attribute,failed -2033,tests.integ.modin.frame.test_apply,test_basic_dataframe_transform[data7-log-None],Failed: DID NOT RAISE ,failed -2041,tests.integ.modin.frame.test_apply,test_basic_dataframe_transform[data9-square-None],Failed: DID NOT RAISE ,failed -2042,tests.integ.modin.crosstab.test_crosstab,test_normalize_margins_and_values[mean0-columns-False],AttributeError: can't set attribute,failed -2050,tests.integ.modin.binary.test_binary_op,test_arithmetic_binary_division_between_series_div_by_zero_negative[truediv-rhs1-lhs2],ZeroDivisionError: float division by zero,failed -2052,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_row_df_col_df_key_set_coordinates[row_pos3-df-col_pos3-tuple],"ValueError: Buffer has wrong number of dimensions (expected 1, got 2)",failed -2057,tests.integ.modin.crosstab.test_crosstab,test_normalize_margins_and_values[mean1-0-True],AttributeError: can't set attribute,failed -2075,tests.integ.modin.binary.test_binary_op,test_arithmetic_binary_division_between_series_div_by_zero_negative[truediv-rhs1-lhs3],ZeroDivisionError: float division by zero,failed -2082,tests.integ.modin.binary.test_binary_op,test_arithmetic_binary_division_between_series_div_by_zero_negative[truediv-rhs1-lhs4],Failed: DID NOT RAISE ,failed -2084,tests.integ.modin.crosstab.test_crosstab,test_normalize_margins_and_values[mean1-0-False],AttributeError: can't set attribute,failed -2091,tests.integ.modin.binary.test_binary_op,test_arithmetic_binary_division_between_series_div_by_zero_negative[truediv-rhs2-lhs0],Failed: DID NOT RAISE ,failed -2097,tests.integ.modin.test_apply_snowpark_python_functions,test_apply_trunc_scale[-1],"TypeError: 'TRUNC' expected Column or str, got: ",failed -2100,tests.integ.modin.crosstab.test_crosstab,test_normalize_margins_and_values[mean1-1-True],AttributeError: can't set attribute,failed -2101,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_row_df_col_df_key_set_coordinates[row_pos4-df-col_pos4-na],"ValueError: Buffer has wrong number of dimensions (expected 1, got 2)",failed -2102,tests.integ.modin.frame.test_apply,test_dataframe_transform_invalid_function_name_negative,AttributeError: 'mxyzptlk' is not a valid function for 'DataFrame' object,failed -2103,tests.integ.modin.binary.test_binary_op,test_arithmetic_binary_division_between_series_div_by_zero_negative[truediv-rhs2-lhs1],Failed: DID NOT RAISE ,failed -2113,tests.integ.modin.frame.test_apply,test_dataframe_transform_invalid_types_negative[1],"AssertionError: Regex pattern did not match. - Regex: 'object is not callable' - Input: ""One of the passed functions has an invalid type: : 1, only callable or string is acceptable.""",failed -2118,tests.integ.modin.crosstab.test_crosstab,test_normalize_margins_and_values[mean1-1-False],AttributeError: can't set attribute,failed -2126,tests.integ.modin.frame.test_apply,test_dataframe_transform_invalid_types_negative[2.5],"AssertionError: Regex pattern did not match. - Regex: 'object is not callable' - Input: ""One of the passed functions has an invalid type: : 2.5, only callable or string is acceptable.""",failed -2133,tests.integ.modin.crosstab.test_crosstab,test_normalize_margins_and_values[mean1-index-True],AttributeError: can't set attribute,failed -2135,tests.integ.modin.frame.test_apply,test_dataframe_transform_invalid_types_negative[True],"AssertionError: Regex pattern did not match. - Regex: 'object is not callable' - Input: ""One of the passed functions has an invalid type: : True, only callable or string is acceptable.""",failed -2137,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_row_df_col_df_key_set_coordinates[row_pos5-tuple-col_pos5-df],"ValueError: Buffer has wrong number of dimensions (expected 1, got 2)",failed -2144,tests.integ.modin.crosstab.test_crosstab,test_normalize_margins_and_values[mean1-index-False],AttributeError: can't set attribute,failed -2154,tests.integ.modin.binary.test_binary_op,test_arithmetic_binary_division_between_series_div_by_zero_negative[truediv-rhs2-lhs2],ZeroDivisionError: float division by zero,failed -2156,tests.integ.modin.crosstab.test_crosstab,test_normalize_margins_and_values[mean1-columns-True],AttributeError: can't set attribute,failed -2160,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_row_df_col_df_key_set_coordinates[row_pos6-na-col_pos6-df],"ValueError: Buffer has wrong number of dimensions (expected 1, got 2)",failed -2171,tests.integ.modin.crosstab.test_crosstab,test_normalize_margins_and_values[mean1-columns-False],AttributeError: can't set attribute,failed -2178,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_row_key_series_rhs_dataframe_mismatch_pandas[row_pos0-col_pos0-snow_item0-native_item0],"AssertionError: DataFrame.iloc[:, 0] (column name=""A"") are different +Mismatched elements: 3 / 3 (100%) + ACTUAL: array([('a', 'b'), ('b', 'a'), ('a', 'c')], dtype=object) + DESIRED: array([list(['a', 'b']), list(['b', 'a']), list(['a', 'c'])], dtype=object)",failed +1925,tests.integ.modin.crosstab.test_crosstab,test_normalize_margins_and_values[count-columns-True],AttributeError: can't set attribute,failed +1935,tests.integ.modin.binary.test_binary_op,test_arithmetic_binary_division_between_series_div_by_zero_negative[truediv-rhs0-lhs2],ZeroDivisionError: float division by zero,failed +1937,tests.integ.modin.test_unique,test_unique_list_of_invalid_objects_negative[input_data0-TestUniqueUserDefinedClass],AssertionError,failed +1938,tests.integ.modin.frame.test_insert,test_insert_empty_multiindex_frame[value2],"ValueError: Buffer dtype mismatch, expected 'Python object' but got 'long'",failed +1941,tests.integ.modin.test_unique,test_unique_list_of_invalid_objects_negative[input_data1-set],AssertionError,failed +1944,tests.integ.modin.crosstab.test_crosstab,test_normalize_margins_and_values[count-columns-False],AttributeError: can't set attribute,failed +1945,tests.integ.modin.frame.test_insert,test_insert_multiindex_dict_negative,"AssertionError: Regex pattern did not match. + Regex: 'Number of index levels of inserted column are different from frame index' + Input: 'Length of values (3) does not match length of index (4)'",failed +1946,tests.integ.modin.test_unique,test_unique_list_of_invalid_objects_negative[input_data2-ndarray],AssertionError,failed +1948,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_row_df_col_df_key_set_coordinates[row_pos1-df-col_pos1-df],"ValueError: Buffer has wrong number of dimensions (expected 1, got 2)",failed +1965,tests.integ.modin.binary.test_binary_op,test_arithmetic_binary_division_between_series_div_by_zero_negative[truediv-rhs0-lhs3],ZeroDivisionError: float division by zero,failed +1971,tests.integ.modin.binary.test_binary_op,test_arithmetic_binary_division_between_series_div_by_zero_negative[truediv-rhs0-lhs4],Failed: DID NOT RAISE ,failed +1973,tests.integ.modin.frame.test_filter,test_filtering_with_self_not_implemented[0],Failed: DID NOT RAISE ,failed +1975,tests.integ.modin.frame.test_filter,test_filtering_with_self_not_implemented[1],Failed: DID NOT RAISE ,failed +1976,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_row_df_col_df_key_set_coordinates[row_pos2-df-col_pos2-df],"ValueError: Buffer has wrong number of dimensions (expected 1, got 2)",failed +1978,tests.integ.modin.binary.test_binary_op,test_arithmetic_binary_division_between_series_div_by_zero_negative[truediv-rhs1-lhs0],Failed: DID NOT RAISE ,failed +1981,tests.integ.modin.crosstab.test_crosstab,test_normalize_margins_and_values[mean0-0-True],AttributeError: can't set attribute,failed +1991,tests.integ.modin.frame.test_insert,test_insert_index_num_levels_mismatch_negative[df_index0-value_index0],TypeError: incompatible index of inserted column with frame index,failed +1992,tests.integ.modin.crosstab.test_crosstab,test_normalize_margins_and_values[mean0-0-False],AttributeError: can't set attribute,failed +1998,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_row_df_col_df_key_set_coordinates[row_pos3-df-col_pos3-tuple],"ValueError: Buffer has wrong number of dimensions (expected 1, got 2)",failed +2000,tests.integ.modin.crosstab.test_crosstab,test_normalize_margins_and_values[mean0-1-True],AttributeError: can't set attribute,failed +2004,tests.integ.modin.binary.test_binary_op,test_arithmetic_binary_division_between_series_div_by_zero_negative[truediv-rhs1-lhs1],Failed: DID NOT RAISE ,failed +2010,tests.integ.modin.frame.test_filter,test_filtering_df_with_other_df_unaligned_index,pandas.errors.IndexingError: Unalignable boolean Series provided as indexer (index of the boolean Series and of the indexed object do not match).,failed +2012,tests.integ.modin.crosstab.test_crosstab,test_normalize_margins_and_values[mean0-1-False],AttributeError: can't set attribute,failed +2021,tests.integ.modin.crosstab.test_crosstab,test_normalize_margins_and_values[mean0-index-True],AttributeError: can't set attribute,failed +2026,tests.integ.modin.binary.test_binary_op,test_arithmetic_binary_division_between_series_div_by_zero_negative[truediv-rhs1-lhs2],ZeroDivisionError: float division by zero,failed +2032,tests.integ.modin.crosstab.test_crosstab,test_normalize_margins_and_values[mean0-index-False],AttributeError: can't set attribute,failed +2036,tests.integ.modin.frame.test_align,test_align_basic_with_nulls_axis0[outer],AssertionError,failed +2040,tests.integ.modin.frame.test_align,test_align_basic_with_nulls_axis0[inner],AssertionError,failed +2041,tests.integ.modin.crosstab.test_crosstab,test_normalize_margins_and_values[mean0-columns-True],AttributeError: can't set attribute,failed +2043,tests.integ.modin.frame.test_insert,test_insert_index_num_levels_mismatch_negative[df_index1-value_index1],AssertionError: Length of new_levels (3) must be <= self.nlevels (2),failed +2045,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_row_df_col_df_key_set_coordinates[row_pos4-df-col_pos4-na],"ValueError: Buffer has wrong number of dimensions (expected 1, got 2)",failed +2046,tests.integ.modin.frame.test_align,test_align_basic_with_nulls_axis0[left],AssertionError,failed +2047,tests.integ.modin.binary.test_binary_op,test_arithmetic_binary_division_between_series_div_by_zero_negative[truediv-rhs1-lhs3],ZeroDivisionError: float division by zero,failed +2051,tests.integ.modin.frame.test_align,test_align_basic_with_nulls_axis0[right],AssertionError,failed +2053,tests.integ.modin.binary.test_binary_op,test_arithmetic_binary_division_between_series_div_by_zero_negative[truediv-rhs1-lhs4],Failed: DID NOT RAISE ,failed +2055,tests.integ.modin.frame.test_align,test_align_frame_with_series_axis_negative[outer],Failed: DID NOT RAISE ,failed +2058,tests.integ.modin.binary.test_binary_op,test_arithmetic_binary_division_between_series_div_by_zero_negative[truediv-rhs2-lhs0],Failed: DID NOT RAISE ,failed +2060,tests.integ.modin.frame.test_align,test_align_frame_with_series_axis_negative[inner],Failed: DID NOT RAISE ,failed +2062,tests.integ.modin.frame.test_align,test_align_frame_with_series_axis_negative[left],Failed: DID NOT RAISE ,failed +2063,tests.integ.modin.binary.test_binary_op,test_arithmetic_binary_division_between_series_div_by_zero_negative[truediv-rhs2-lhs1],Failed: DID NOT RAISE ,failed +2067,tests.integ.modin.frame.test_align,test_align_frame_with_series_axis_negative[right],Failed: DID NOT RAISE ,failed +2068,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_row_df_col_df_key_set_coordinates[row_pos5-tuple-col_pos5-df],"ValueError: Buffer has wrong number of dimensions (expected 1, got 2)",failed +2071,tests.integ.modin.frame.test_align,test_align_frame_fill_value_negative,Failed: DID NOT RAISE ,failed +2072,tests.integ.modin.frame.test_insert,test_insert_index_num_levels_mismatch_negative[df_index2-value_index2],TypeError: incompatible index of inserted column with frame index,failed +2075,tests.integ.modin.crosstab.test_crosstab,test_normalize_margins_and_values[mean0-columns-False],AttributeError: can't set attribute,failed +2077,tests.integ.modin.frame.test_align,test_level_negative[0-0],Failed: DID NOT RAISE ,failed +2081,tests.integ.modin.frame.test_align,test_level_negative[0-1],Failed: DID NOT RAISE ,failed +2086,tests.integ.modin.crosstab.test_crosstab,test_normalize_margins_and_values[mean1-0-True],AttributeError: can't set attribute,failed +2087,tests.integ.modin.frame.test_align,test_level_negative[1-0],Failed: DID NOT RAISE ,failed +2092,tests.integ.modin.frame.test_align,test_level_negative[1-1],Failed: DID NOT RAISE ,failed +2095,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_row_df_col_df_key_set_coordinates[row_pos6-na-col_pos6-df],"ValueError: Buffer has wrong number of dimensions (expected 1, got 2)",failed +2099,tests.integ.modin.frame.test_align,test_level_negative[None-0],Failed: DID NOT RAISE ,failed +2101,tests.integ.modin.crosstab.test_crosstab,test_normalize_margins_and_values[mean1-0-False],AttributeError: can't set attribute,failed +2104,tests.integ.modin.frame.test_align,test_level_negative[None-1],Failed: DID NOT RAISE ,failed +2107,tests.integ.modin.frame.test_insert,test_insert_index_num_levels_mismatch_negative[df_index3-value_index3],AssertionError: Length of new_levels (3) must be <= self.nlevels (2),failed +2111,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_row_key_series_rhs_dataframe_mismatch_pandas[row_pos0-col_pos0-snow_item0-native_item0],"AssertionError: DataFrame.iloc[:, 0] (column name=""A"") are different DataFrame.iloc[:, 0] (column name=""A"") values are different (75.0 %) [index]: [0, 1, 2, 3] [left]: [nan, nan, 11.0, nan] [right]: [95, 92, 11, 98]",failed -2183,tests.integ.modin.binary.test_binary_op,test_arithmetic_binary_division_between_series_div_by_zero_negative[truediv-rhs2-lhs3],ZeroDivisionError: float division by zero,failed -2191,tests.integ.modin.frame.test_insert,test_insert_into_empty_dataframe_index_dtype_mismatch,Failed: DID NOT RAISE ,failed -2192,tests.integ.modin.binary.test_binary_op,test_arithmetic_binary_division_between_series_div_by_zero_negative[truediv-rhs2-lhs4],Failed: DID NOT RAISE ,failed -2197,tests.integ.modin.test_apply_snowpark_python_functions,test_apply_trunc_scale[0],"TypeError: 'TRUNC' expected Column or str, got: ",failed -2200,tests.integ.modin.binary.test_binary_op,test_arithmetic_binary_division_between_series_div_by_zero_negative[truediv-rhs3-lhs0],Failed: DID NOT RAISE ,failed -2203,tests.integ.modin.crosstab.test_crosstab,test_normalize_margins_and_values[min0-0-True],AttributeError: can't set attribute,failed -2207,tests.integ.modin.binary.test_binary_op,test_binary_arithmetic_method_number_scalar_negative[0],Failed: DID NOT RAISE ,failed -2208,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_row_key_series_rhs_dataframe_mismatch_pandas[row_pos2-col_pos2-snow_item2-native_item2],"AssertionError: DataFrame.iloc[:, 0] (column name=""A"") are different +2112,tests.integ.modin.frame.test_first_last_valid_index,test_first_and_last_valid_multiindex_dataframe[index0],"ValueError: The truth value of a Series is ambiguous. Use a.empty, a.bool(), a.item(), a.any() or a.all().",failed +2113,tests.integ.modin.frame.test_insert,test_insert_index_num_levels_mismatch_negative[df_index4-value_index4],Failed: DID NOT RAISE ,failed +2115,tests.integ.modin.crosstab.test_crosstab,test_normalize_margins_and_values[mean1-1-True],AttributeError: can't set attribute,failed +2117,tests.integ.modin.binary.test_binary_op,test_arithmetic_binary_division_between_series_div_by_zero_negative[truediv-rhs2-lhs2],ZeroDivisionError: float division by zero,failed +2118,tests.integ.modin.frame.test_insert,test_insert_index_num_levels_mismatch_negative[df_index5-value_index5],Failed: DID NOT RAISE ,failed +2123,tests.integ.modin.frame.test_insert,test_insert_index_type_mismatch[df_index0-value_index0-expected_index0],"AssertionError: DataFrame.index are different + +DataFrame.index values are different (100.0 %) +[left]: Index(['1', '2', '3'], dtype='object') +[right]: Index([1.0, 2.0, 3.0], dtype='float64') +At positional index 0, first diff: 1 != 1.0",failed +2126,tests.integ.modin.crosstab.test_crosstab,test_normalize_margins_and_values[mean1-1-False],AttributeError: can't set attribute,failed +2129,tests.integ.modin.frame.test_insert,test_insert_index_type_mismatch[df_index1-value_index1-expected_index1],TypeError: boolean value of NA is ambiguous,failed +2131,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_row_key_series_rhs_dataframe_mismatch_pandas[row_pos2-col_pos2-snow_item2-native_item2],"AssertionError: DataFrame.iloc[:, 0] (column name=""A"") are different DataFrame.iloc[:, 0] (column name=""A"") values are different (75.0 %) [index]: [0, 1, 2, 3] [left]: [5.0, nan, nan, nan] [right]: [5, 92, 95, 95]",failed -2210,tests.integ.modin.frame.test_getitem,test_df_getitem_with_boolean_list_like[key4],TypeError: unhashable type: 'Index',failed -2213,tests.integ.modin.binary.test_binary_op,test_arithmetic_binary_division_between_series_div_by_zero_negative[truediv-rhs3-lhs1],Failed: DID NOT RAISE ,failed -2215,tests.integ.modin.binary.test_binary_op,test_binary_arithmetic_method_number_scalar_negative[1],Failed: DID NOT RAISE ,failed -2218,tests.integ.modin.crosstab.test_crosstab,test_normalize_margins_and_values[min0-0-False],AttributeError: can't set attribute,failed -2220,tests.integ.modin.binary.test_binary_op,test_binary_arithmetic_method_number_scalar_negative[2],Failed: DID NOT RAISE ,failed -2224,tests.integ.modin.binary.test_binary_op,test_binary_arithmetic_method_number_scalar_negative[3],Failed: DID NOT RAISE ,failed -2228,tests.integ.modin.binary.test_binary_op,test_binary_arithmetic_method_number_scalar_negative[4],Failed: DID NOT RAISE ,failed -2231,tests.integ.modin.frame.test_getitem,test_df_getitem_with_boolean_list_like[key5],ValueError: Item wrong length 1 instead of 7.,failed -2234,tests.integ.modin.binary.test_binary_op,test_binary_arithmetic_method_number_scalar_negative[5],Failed: DID NOT RAISE ,failed -2235,tests.integ.modin.crosstab.test_crosstab,test_normalize_margins_and_values[min0-1-True],AttributeError: can't set attribute,failed -2238,tests.integ.modin.binary.test_binary_op,test_binary_arithmetic_method_number_scalar_negative[6],Failed: DID NOT RAISE ,failed -2240,tests.integ.modin.binary.test_binary_op,test_arithmetic_binary_division_between_series_div_by_zero_negative[truediv-rhs3-lhs2],ZeroDivisionError: float division by zero,failed -2244,tests.integ.modin.binary.test_binary_op,test_binary_pow_scalar_different_from_pandas,"AssertionError: Attributes of Series are different - -Attribute ""dtype"" are different -[left]: int64 -[right]: float64",failed -2246,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_row_key_series_rhs_dataframe_mismatch_pandas[row_pos3-col_pos3-snow_item3-native_item3],"AssertionError: DataFrame.iloc[:, 0] (column name=""A"") are different +2133,tests.integ.modin.frame.test_insert,test_insert_index_type_mismatch[df_index2-value_index2-expected_index2],TypeError: boolean value of NA is ambiguous,failed +2135,tests.integ.modin.crosstab.test_crosstab,test_normalize_margins_and_values[mean1-index-True],AttributeError: can't set attribute,failed +2140,tests.integ.modin.binary.test_binary_op,test_arithmetic_binary_division_between_series_div_by_zero_negative[truediv-rhs2-lhs3],ZeroDivisionError: float division by zero,failed +2141,tests.integ.modin.frame.test_first_last_valid_index,test_first_and_last_valid_multiindex_dataframe[index1],"ValueError: The truth value of a Series is ambiguous. Use a.empty, a.bool(), a.item(), a.any() or a.all().",failed +2144,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_row_key_series_rhs_dataframe_mismatch_pandas[row_pos3-col_pos3-snow_item3-native_item3],"AssertionError: DataFrame.iloc[:, 0] (column name=""A"") are different DataFrame.iloc[:, 0] (column name=""A"") values are different (75.0 %) [index]: [0, 1, 2, 3] [left]: [5.0, nan, nan, nan] [right]: [5, 95, 98, 92]",failed -2248,tests.integ.modin.crosstab.test_crosstab,test_normalize_margins_and_values[min0-1-False],AttributeError: can't set attribute,failed -2255,tests.integ.modin.crosstab.test_crosstab,test_normalize_margins_and_values[min0-index-True],AttributeError: can't set attribute,failed -2259,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_row_key_series_rhs_dataframe_mismatch_pandas[row_pos4-col_pos4-snow_item4-native_item4],"AssertionError: DataFrame.iloc[:, 0] (column name=""A"") are different +2145,tests.integ.modin.crosstab.test_crosstab,test_normalize_margins_and_values[mean1-index-False],AttributeError: can't set attribute,failed +2146,tests.integ.modin.binary.test_binary_op,test_arithmetic_binary_division_between_series_div_by_zero_negative[truediv-rhs2-lhs4],Failed: DID NOT RAISE ,failed +2148,tests.integ.modin.frame.test_first_last_valid_index,test_first_and_last_valid_multiindex_dataframe[index2],"ValueError: The truth value of a Series is ambiguous. Use a.empty, a.bool(), a.item(), a.any() or a.all().",failed +2150,tests.integ.modin.frame.test_align,test_multiindex_negative[0],ValueError: cannot join with no overlapping index names,failed +2152,tests.integ.modin.frame.test_first_last_valid_index,test_first_and_last_valid_multiindex_dataframe[index3],"ValueError: The truth value of a Series is ambiguous. Use a.empty, a.bool(), a.item(), a.any() or a.all().",failed +2154,tests.integ.modin.binary.test_binary_op,test_arithmetic_binary_division_between_series_div_by_zero_negative[truediv-rhs3-lhs0],Failed: DID NOT RAISE ,failed +2155,tests.integ.modin.frame.test_align,test_multiindex_negative[1],Failed: DID NOT RAISE ,failed +2159,tests.integ.modin.frame.test_first_last_valid_index,test_first_and_last_valid_none_float64_multiindex_dataframe[data0],"ValueError: The truth value of a Series is ambiguous. Use a.empty, a.bool(), a.item(), a.any() or a.all().",failed +2160,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_row_key_series_rhs_dataframe_mismatch_pandas[row_pos4-col_pos4-snow_item4-native_item4],"AssertionError: DataFrame.iloc[:, 0] (column name=""A"") are different DataFrame.iloc[:, 0] (column name=""A"") values are different (100.0 %) [index]: [0, 1, 2, 3] [left]: [nan, nan, nan, nan] [right]: [91, 92, 93, 93]",failed -2263,tests.integ.modin.frame.test_getitem,test_df_getitem_with_boolean_list_like[key6],ValueError: Item wrong length 8 instead of 7.,failed -2267,tests.integ.modin.crosstab.test_crosstab,test_normalize_margins_and_values[min0-index-False],AttributeError: can't set attribute,failed -2274,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_row_key_series_rhs_dataframe_mismatch_pandas[row_pos5-col_pos5-snow_item5-native_item5],"AssertionError: DataFrame.iloc[:, 0] (column name=""A"") are different +2161,tests.integ.modin.binary.test_binary_op,test_arithmetic_binary_division_between_series_div_by_zero_negative[truediv-rhs3-lhs1],Failed: DID NOT RAISE ,failed +2164,tests.integ.modin.frame.test_first_last_valid_index,test_first_and_last_valid_none_float64_multiindex_dataframe[data1],"ValueError: The truth value of a Series is ambiguous. Use a.empty, a.bool(), a.item(), a.any() or a.all().",failed +2168,tests.integ.modin.frame.test_first_last_valid_index,test_first_and_last_valid_nested_multiindex_series,"ValueError: The truth value of a Series is ambiguous. Use a.empty, a.bool(), a.item(), a.any() or a.all().",failed +2172,tests.integ.modin.frame.test_align,test_multiindex_negative[None],ValueError: cannot join with no overlapping index names,failed +2175,tests.integ.modin.frame.test_align,test_align_frame_copy_negative,Failed: DID NOT RAISE ,failed +2177,tests.integ.modin.crosstab.test_crosstab,test_normalize_margins_and_values[mean1-columns-True],AttributeError: can't set attribute,failed +2181,tests.integ.modin.binary.test_binary_op,test_arithmetic_binary_division_between_series_div_by_zero_negative[truediv-rhs3-lhs2],ZeroDivisionError: float division by zero,failed +2183,tests.integ.modin.frame.test_align,test_align_frame_deprecated_negative,Failed: DID NOT RAISE ,failed +2184,tests.integ.modin.frame.test_insert,test_insert_multiple_null,ValueError: cannot reindex on an axis with duplicate labels,failed +2190,tests.integ.modin.crosstab.test_crosstab,test_normalize_margins_and_values[mean1-columns-False],AttributeError: can't set attribute,failed +2193,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_row_key_series_rhs_dataframe_mismatch_pandas[row_pos5-col_pos5-snow_item5-native_item5],"AssertionError: DataFrame.iloc[:, 0] (column name=""A"") are different DataFrame.iloc[:, 0] (column name=""A"") values are different (50.0 %) [index]: [0, 1, 2, 3] [left]: [nan, nan, 11.0, 14.0] [right]: [91, 92, 11, 14]",failed -2280,tests.integ.modin.binary.test_binary_op,test_arithmetic_binary_division_between_series_div_by_zero_negative[truediv-rhs3-lhs3],ZeroDivisionError: float division by zero,failed -2284,tests.integ.modin.test_apply_snowpark_python_functions,test_apply_trunc_scale[1],"TypeError: 'TRUNC' expected Column or str, got: ",failed -2288,tests.integ.modin.binary.test_binary_op,test_arithmetic_binary_division_between_series_div_by_zero_negative[truediv-rhs3-lhs4],Failed: DID NOT RAISE ,failed -2290,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_row_key_series_rhs_dataframe_mismatch_pandas[row_pos6-col_pos6-snow_item6-native_item6],"AssertionError: DataFrame.iloc[:, 0] (column name=""A"") are different +2201,tests.integ.modin.crosstab.test_crosstab,test_normalize_margins_and_values[min0-0-True],AttributeError: can't set attribute,failed +2206,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_row_key_series_rhs_dataframe_mismatch_pandas[row_pos6-col_pos6-snow_item6-native_item6],"AssertionError: DataFrame.iloc[:, 0] (column name=""A"") are different DataFrame.iloc[:, 0] (column name=""A"") values are different (50.0 %) [index]: [0, 1, 2, 3] [left]: [nan, 8.0, nan, 14.0] [right]: [91, 8, 92, 14]",failed -2291,tests.integ.modin.frame.test_getitem,test_df_getitem_with_boolean_list_like[key7],TypeError: unhashable type: 'Index',failed -2294,tests.integ.modin.crosstab.test_crosstab,test_normalize_margins_and_values[min0-columns-True],AttributeError: can't set attribute,failed -2295,tests.integ.modin.binary.test_binary_op,test_arithmetic_binary_division_between_series_div_by_zero_negative[floordiv-rhs0-lhs0],Failed: DID NOT RAISE ,failed -2301,tests.integ.modin.binary.test_binary_op,test_arithmetic_binary_division_between_series_div_by_zero_negative[floordiv-rhs0-lhs1],Failed: DID NOT RAISE ,failed -2306,tests.integ.modin.crosstab.test_crosstab,test_normalize_margins_and_values[min0-columns-False],AttributeError: can't set attribute,failed -2307,tests.integ.modin.frame.test_getitem,test_df_getitem_with_boolean_list_like[key8],ValueError: Item wrong length 0 instead of 7.,failed -2313,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_row_key_series_rhs_dataframe_mismatch_pandas[row_pos7-col_pos7-snow_item7-native_item7],IndexError: index 4 is out of bounds for axis 0 with size 4,failed -2319,tests.integ.modin.crosstab.test_crosstab,test_normalize_margins_and_values[min1-0-True],AttributeError: can't set attribute,failed -2324,tests.integ.modin.binary.test_binary_op,test_arithmetic_binary_division_between_series_div_by_zero_negative[floordiv-rhs0-lhs2],ZeroDivisionError: float floor division by zero,failed -2327,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_row_key_series_rhs_dataframe_mismatch_pandas[row_pos8-col_pos8-snow_item8-native_item8],"AssertionError: DataFrame.iloc[:, 0] (column name=""A"") are different +2210,tests.integ.modin.crosstab.test_crosstab,test_normalize_margins_and_values[min0-0-False],AttributeError: can't set attribute,failed +2218,tests.integ.modin.crosstab.test_crosstab,test_normalize_margins_and_values[min0-1-True],AttributeError: can't set attribute,failed +2220,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_row_key_series_rhs_dataframe_mismatch_pandas[row_pos7-col_pos7-snow_item7-native_item7],IndexError: index 4 is out of bounds for axis 0 with size 4,failed +2223,tests.integ.modin.binary.test_binary_op,test_arithmetic_binary_division_between_series_div_by_zero_negative[truediv-rhs3-lhs3],ZeroDivisionError: float division by zero,failed +2228,tests.integ.modin.binary.test_binary_op,test_arithmetic_binary_division_between_series_div_by_zero_negative[truediv-rhs3-lhs4],Failed: DID NOT RAISE ,failed +2229,tests.integ.modin.crosstab.test_crosstab,test_normalize_margins_and_values[min0-1-False],AttributeError: can't set attribute,failed +2232,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_row_key_series_rhs_dataframe_mismatch_pandas[row_pos8-col_pos8-snow_item8-native_item8],"AssertionError: DataFrame.iloc[:, 0] (column name=""A"") are different DataFrame.iloc[:, 0] (column name=""A"") values are different (75.0 %) [index]: [0, 1, 2, 3] [left]: [5.0, nan, nan, nan] [right]: [5, 8, 11, 14]",failed -2330,tests.integ.modin.crosstab.test_crosstab,test_normalize_margins_and_values[min1-0-False],AttributeError: can't set attribute,failed -2335,tests.integ.modin.frame.test_apply,test_with_duplicates_negative,ValueError: cannot reindex on an axis with duplicate labels,failed -2341,tests.integ.modin.frame.test_getitem,test_df_getitem_with_string_list_like[key1],TypeError: unhashable type: 'Index',failed -2346,tests.integ.modin.crosstab.test_crosstab,test_normalize_margins_and_values[min1-1-True],AttributeError: can't set attribute,failed -2356,tests.integ.modin.frame.test_apply,test_apply_axis_1_with_if_where_duplicates_not_executed[data0-1],TypeError: test_apply_axis_1_with_if_where_duplicates_not_executed..foo() got an unexpected keyword argument 'snowpark_pandas_partition_size',failed -2357,tests.integ.modin.binary.test_binary_op,test_binary_arithmetic_method_string_scalar_negative[0],AssertionError: exception type does not match with expected type ,failed -2359,tests.integ.modin.crosstab.test_crosstab,test_normalize_margins_and_values[min1-1-False],AttributeError: can't set attribute,failed -2361,tests.integ.modin.binary.test_binary_op,test_binary_arithmetic_method_string_scalar_negative[1],AssertionError: exception type does not match with expected type ,failed -2366,tests.integ.modin.binary.test_binary_op,test_binary_arithmetic_method_array_scalar,Failed: DID NOT RAISE ,failed -2369,tests.integ.modin.crosstab.test_crosstab,test_normalize_margins_and_values[min1-index-True],AttributeError: can't set attribute,failed -2370,tests.integ.modin.binary.test_binary_op,test_arithmetic_binary_division_between_series_div_by_zero_negative[floordiv-rhs0-lhs3],ZeroDivisionError: float floor division by zero,failed -2375,tests.integ.modin.frame.test_getitem,test_df_getitem_with_int_list_like[key1],TypeError: unhashable type: 'Index',failed -2376,tests.integ.modin.frame.test_apply,test_apply_axis_1_with_if_where_duplicates_not_executed[data0-2],TypeError: test_apply_axis_1_with_if_where_duplicates_not_executed..foo() got an unexpected keyword argument 'snowpark_pandas_partition_size',failed -2380,tests.integ.modin.binary.test_binary_op,test_arithmetic_binary_division_between_series_div_by_zero_negative[floordiv-rhs0-lhs4],Failed: DID NOT RAISE ,failed -2387,tests.integ.modin.binary.test_binary_op,test_arithmetic_binary_division_between_series_div_by_zero_negative[floordiv-rhs1-lhs0],Failed: DID NOT RAISE ,failed -2392,tests.integ.modin.test_apply_snowpark_python_functions,test_apply_trunc_scale[2],"TypeError: 'TRUNC' expected Column or str, got: ",failed -2396,tests.integ.modin.binary.test_binary_op,test_arithmetic_binary_division_between_series_div_by_zero_negative[floordiv-rhs1-lhs1],Failed: DID NOT RAISE ,failed -2404,tests.integ.modin.crosstab.test_crosstab,test_normalize_margins_and_values[min1-index-False],AttributeError: can't set attribute,failed -2418,tests.integ.modin.crosstab.test_crosstab,test_normalize_margins_and_values[min1-columns-True],AttributeError: can't set attribute,failed -2420,tests.integ.modin.frame.test_apply,test_apply_axis_1_with_if_where_duplicates_not_executed[data1-1],TypeError: test_apply_axis_1_with_if_where_duplicates_not_executed..foo() got an unexpected keyword argument 'snowpark_pandas_partition_size',failed -2424,tests.integ.modin.binary.test_binary_op,test_arithmetic_binary_division_between_series_div_by_zero_negative[floordiv-rhs1-lhs2],ZeroDivisionError: float floor division by zero,failed -2429,tests.integ.modin.frame.test_insert,test_insert_multiindex_column[columns4-insert_label2],ValueError: Item must have length equal to number of levels.,failed -2431,tests.integ.modin.crosstab.test_crosstab,test_normalize_margins_and_values[min1-columns-False],AttributeError: can't set attribute,failed -2437,tests.integ.modin.binary.test_binary_op,test_binary_method_numpy_and_pandas_type_scalar[data3-scalars3],"assert [False, False, False, False] == [None, None, None, None] - At index 0 diff: False != None - Full diff: - - [None, None, None, None] - + [False, False, False, False]",failed -2439,tests.integ.modin.frame.test_apply,test_apply_axis_1_with_if_where_duplicates_not_executed[data1-2],TypeError: test_apply_axis_1_with_if_where_duplicates_not_executed..foo() got an unexpected keyword argument 'snowpark_pandas_partition_size',failed -2443,tests.integ.modin.crosstab.test_crosstab,test_normalize_margins_and_values[amin-0-True],AttributeError: can't set attribute,failed -2448,tests.integ.modin.frame.test_insert,test_insert_multiindex_column[columns4-insert_label3],ValueError: Item must have length equal to number of levels.,failed -2455,tests.integ.modin.binary.test_binary_op,test_arithmetic_binary_division_between_series_div_by_zero_negative[floordiv-rhs1-lhs3],ZeroDivisionError: float floor division by zero,failed -2457,tests.integ.modin.frame.test_apply,test_numpy_integers_in_return_values_snow_1227264[return_value1],"[XPASS(strict)] SNOW-1229760: un-json-serializable np.int64 is nested inside the non-series return value, so we don't find the np.int64 or convert it to int",failed -2467,tests.integ.modin.binary.test_binary_op,test_arithmetic_binary_division_between_series_div_by_zero_negative[floordiv-rhs1-lhs4],Failed: DID NOT RAISE ,failed -2470,tests.integ.modin.crosstab.test_crosstab,test_normalize_margins_and_values[amin-0-False],AttributeError: can't set attribute,failed -2475,tests.integ.modin.frame.test_apply,test_apply_axis_1_frame_with_column_of_all_nulls_snow_1233832[None],[XPASS(strict)] SNOW-1233832,failed -2488,tests.integ.modin.crosstab.test_crosstab,test_normalize_margins_and_values[amin-1-True],AttributeError: can't set attribute,failed -2503,tests.integ.modin.binary.test_binary_op,test_arithmetic_binary_division_between_series_div_by_zero_negative[floordiv-rhs2-lhs0],Failed: DID NOT RAISE ,failed -2504,tests.integ.modin.crosstab.test_crosstab,test_normalize_margins_and_values[amin-1-False],AttributeError: can't set attribute,failed -2512,tests.integ.modin.binary.test_binary_op,test_arithmetic_binary_division_between_series_div_by_zero_negative[floordiv-rhs2-lhs1],Failed: DID NOT RAISE ,failed -2537,tests.integ.modin.crosstab.test_crosstab,test_normalize_margins_and_values[amin-index-True],AttributeError: can't set attribute,failed -2542,tests.integ.modin.binary.test_binary_op,test_arithmetic_binary_division_between_series_div_by_zero_negative[floordiv-rhs2-lhs2],ZeroDivisionError: float floor division by zero,failed -2552,tests.integ.modin.crosstab.test_crosstab,test_normalize_margins_and_values[amin-index-False],AttributeError: can't set attribute,failed -2559,tests.integ.modin.test_apply_snowpark_python_functions,test_apply_log_base,TypeError: log() got multiple values for argument 'base',failed -2567,tests.integ.modin.crosstab.test_crosstab,test_normalize_margins_and_values[amin-columns-True],AttributeError: can't set attribute,failed -2570,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_row_key_series_rhs_scalar[row_pos17-col_pos17-item_value17],ValueError: setting an array element with a sequence.,failed -2575,tests.integ.modin.binary.test_binary_op,test_arithmetic_binary_division_between_series_div_by_zero_negative[floordiv-rhs2-lhs3],ZeroDivisionError: float floor division by zero,failed -2585,tests.integ.modin.crosstab.test_crosstab,test_normalize_margins_and_values[amin-columns-False],AttributeError: can't set attribute,failed -2586,tests.integ.modin.binary.test_binary_op,test_arithmetic_binary_division_between_series_div_by_zero_negative[floordiv-rhs2-lhs4],Failed: DID NOT RAISE ,failed -2594,tests.integ.modin.binary.test_binary_op,test_arithmetic_binary_division_between_series_div_by_zero_negative[floordiv-rhs3-lhs0],Failed: DID NOT RAISE ,failed -2600,tests.integ.modin.crosstab.test_crosstab,test_normalize_margins_and_values[max0-0-True],AttributeError: can't set attribute,failed -2603,tests.integ.modin.binary.test_binary_op,test_arithmetic_binary_division_between_series_div_by_zero_negative[floordiv-rhs3-lhs1],Failed: DID NOT RAISE ,failed -2616,tests.integ.modin.crosstab.test_crosstab,test_normalize_margins_and_values[max0-0-False],AttributeError: can't set attribute,failed -2627,tests.integ.modin.frame.test_insert,test_insert_with_unique_and_duplicate_index_values[index_values0-other_index_values0-False],"AssertionError: DataFrame.index are different +2235,tests.integ.modin.binary.test_binary_op,test_arithmetic_binary_division_between_series_div_by_zero_negative[floordiv-rhs0-lhs0],Failed: DID NOT RAISE ,failed +2242,tests.integ.modin.binary.test_binary_op,test_arithmetic_binary_division_between_series_div_by_zero_negative[floordiv-rhs0-lhs1],Failed: DID NOT RAISE ,failed +2245,tests.integ.modin.crosstab.test_crosstab,test_normalize_margins_and_values[min0-index-True],AttributeError: can't set attribute,failed +2269,tests.integ.modin.binary.test_binary_op,test_arithmetic_binary_division_between_series_div_by_zero_negative[floordiv-rhs0-lhs2],ZeroDivisionError: float floor division by zero,failed +2281,tests.integ.modin.crosstab.test_crosstab,test_normalize_margins_and_values[min0-index-False],AttributeError: can't set attribute,failed +2289,tests.integ.modin.frame.test_insert,test_insert_into_empty_dataframe_index_dtype_mismatch,Failed: DID NOT RAISE ,failed +2293,tests.integ.modin.crosstab.test_crosstab,test_normalize_margins_and_values[min0-columns-True],AttributeError: can't set attribute,failed +2302,tests.integ.modin.binary.test_binary_op,test_arithmetic_binary_division_between_series_div_by_zero_negative[floordiv-rhs0-lhs3],ZeroDivisionError: float floor division by zero,failed +2310,tests.integ.modin.crosstab.test_crosstab,test_normalize_margins_and_values[min0-columns-False],AttributeError: can't set attribute,failed +2323,tests.integ.modin.crosstab.test_crosstab,test_normalize_margins_and_values[min1-0-True],AttributeError: can't set attribute,failed +2334,tests.integ.modin.binary.test_timedelta,test_string_series_with_timedelta_scalar[timedelta_scalar_positive0-sub],[XPASS(strict)] SNOW-1646604,failed +2337,tests.integ.modin.binary.test_timedelta,test_string_series_with_timedelta_scalar[timedelta_scalar_positive0-add],[XPASS(strict)] SNOW-1646604,failed +2339,tests.integ.modin.crosstab.test_crosstab,test_normalize_margins_and_values[min1-0-False],AttributeError: can't set attribute,failed +2341,tests.integ.modin.binary.test_timedelta,test_string_series_with_timedelta_scalar[timedelta_scalar_positive0-div],[XPASS(strict)] SNOW-1646604,failed +2344,tests.integ.modin.binary.test_binary_op,test_arithmetic_binary_division_between_series_div_by_zero_negative[floordiv-rhs0-lhs4],Failed: DID NOT RAISE ,failed +2347,tests.integ.modin.binary.test_timedelta,test_string_series_with_timedelta_scalar[timedelta_scalar_positive0-truediv],[XPASS(strict)] SNOW-1646604,failed +2350,tests.integ.modin.binary.test_timedelta,test_string_series_with_timedelta_scalar[timedelta_scalar_positive0-eq],[XPASS(strict)] SNOW-1646604,failed +2352,tests.integ.modin.binary.test_timedelta,test_string_series_with_timedelta_scalar[timedelta_scalar_positive0-ne],[XPASS(strict)] SNOW-1646604,failed +2353,tests.integ.modin.binary.test_binary_op,test_arithmetic_binary_division_between_series_div_by_zero_negative[floordiv-rhs1-lhs0],Failed: DID NOT RAISE ,failed +2354,tests.integ.modin.crosstab.test_crosstab,test_normalize_margins_and_values[min1-1-True],AttributeError: can't set attribute,failed +2356,tests.integ.modin.binary.test_timedelta,test_string_series_with_timedelta_scalar[timedelta_scalar_positive1-sub],[XPASS(strict)] SNOW-1646604,failed +2360,tests.integ.modin.binary.test_timedelta,test_string_series_with_timedelta_scalar[timedelta_scalar_positive1-add],[XPASS(strict)] SNOW-1646604,failed +2363,tests.integ.modin.binary.test_binary_op,test_arithmetic_binary_division_between_series_div_by_zero_negative[floordiv-rhs1-lhs1],Failed: DID NOT RAISE ,failed +2364,tests.integ.modin.binary.test_timedelta,test_string_series_with_timedelta_scalar[timedelta_scalar_positive1-div],[XPASS(strict)] SNOW-1646604,failed +2366,tests.integ.modin.binary.test_timedelta,test_string_series_with_timedelta_scalar[timedelta_scalar_positive1-truediv],[XPASS(strict)] SNOW-1646604,failed +2370,tests.integ.modin.binary.test_timedelta,test_string_series_with_timedelta_scalar[timedelta_scalar_positive1-eq],[XPASS(strict)] SNOW-1646604,failed +2372,tests.integ.modin.binary.test_timedelta,test_string_series_with_timedelta_scalar[timedelta_scalar_positive1-ne],[XPASS(strict)] SNOW-1646604,failed +2374,tests.integ.modin.binary.test_timedelta,test_string_series_with_timedelta_scalar[timedelta_scalar_positive2-sub],[XPASS(strict)] SNOW-1646604,failed +2375,tests.integ.modin.crosstab.test_crosstab,test_normalize_margins_and_values[min1-1-False],AttributeError: can't set attribute,failed +2379,tests.integ.modin.binary.test_timedelta,test_string_series_with_timedelta_scalar[timedelta_scalar_positive2-add],[XPASS(strict)] SNOW-1646604,failed +2382,tests.integ.modin.binary.test_timedelta,test_string_series_with_timedelta_scalar[timedelta_scalar_positive2-div],[XPASS(strict)] SNOW-1646604,failed +2386,tests.integ.modin.binary.test_timedelta,test_string_series_with_timedelta_scalar[timedelta_scalar_positive2-truediv],[XPASS(strict)] SNOW-1646604,failed +2388,tests.integ.modin.binary.test_timedelta,test_string_series_with_timedelta_scalar[timedelta_scalar_positive2-eq],[XPASS(strict)] SNOW-1646604,failed +2390,tests.integ.modin.crosstab.test_crosstab,test_normalize_margins_and_values[min1-index-True],AttributeError: can't set attribute,failed +2391,tests.integ.modin.binary.test_binary_op,test_arithmetic_binary_division_between_series_div_by_zero_negative[floordiv-rhs1-lhs2],ZeroDivisionError: float floor division by zero,failed +2394,tests.integ.modin.binary.test_timedelta,test_string_series_with_timedelta_scalar[timedelta_scalar_positive2-ne],[XPASS(strict)] SNOW-1646604,failed +2398,tests.integ.modin.binary.test_timedelta,test_string_series_with_timedelta_scalar[timedelta_scalar_positive3-sub],[XPASS(strict)] SNOW-1646604,failed +2402,tests.integ.modin.binary.test_timedelta,test_string_series_with_timedelta_scalar[timedelta_scalar_positive3-add],[XPASS(strict)] SNOW-1646604,failed +2406,tests.integ.modin.binary.test_timedelta,test_string_series_with_timedelta_scalar[timedelta_scalar_positive3-div],[XPASS(strict)] SNOW-1646604,failed +2411,tests.integ.modin.binary.test_timedelta,test_string_series_with_timedelta_scalar[timedelta_scalar_positive3-truediv],[XPASS(strict)] SNOW-1646604,failed +2413,tests.integ.modin.binary.test_timedelta,test_string_series_with_timedelta_scalar[timedelta_scalar_positive3-eq],[XPASS(strict)] SNOW-1646604,failed +2415,tests.integ.modin.binary.test_timedelta,test_string_series_with_timedelta_scalar[timedelta_scalar_positive3-ne],[XPASS(strict)] SNOW-1646604,failed +2417,tests.integ.modin.binary.test_timedelta,test_string_series_with_timedelta_scalar[timedelta_scalar_positive4-sub],[XPASS(strict)] SNOW-1646604,failed +2420,tests.integ.modin.binary.test_timedelta,test_string_series_with_timedelta_scalar[timedelta_scalar_positive4-add],[XPASS(strict)] SNOW-1646604,failed +2422,tests.integ.modin.binary.test_binary_op,test_arithmetic_binary_division_between_series_div_by_zero_negative[floordiv-rhs1-lhs3],ZeroDivisionError: float floor division by zero,failed +2424,tests.integ.modin.binary.test_timedelta,test_string_series_with_timedelta_scalar[timedelta_scalar_positive4-div],[XPASS(strict)] SNOW-1646604,failed +2426,tests.integ.modin.binary.test_timedelta,test_string_series_with_timedelta_scalar[timedelta_scalar_positive4-truediv],[XPASS(strict)] SNOW-1646604,failed +2429,tests.integ.modin.binary.test_binary_op,test_arithmetic_binary_division_between_series_div_by_zero_negative[floordiv-rhs1-lhs4],Failed: DID NOT RAISE ,failed +2430,tests.integ.modin.binary.test_timedelta,test_string_series_with_timedelta_scalar[timedelta_scalar_positive4-eq],[XPASS(strict)] SNOW-1646604,failed +2432,tests.integ.modin.crosstab.test_crosstab,test_normalize_margins_and_values[min1-index-False],AttributeError: can't set attribute,failed +2434,tests.integ.modin.binary.test_timedelta,test_string_series_with_timedelta_scalar[timedelta_scalar_positive4-ne],[XPASS(strict)] SNOW-1646604,failed +2437,tests.integ.modin.binary.test_timedelta,test_string_series_with_timedelta_scalar[timedelta_scalar_positive5-sub],[XPASS(strict)] SNOW-1646604,failed +2438,tests.integ.modin.binary.test_binary_op,test_arithmetic_binary_division_between_series_div_by_zero_negative[floordiv-rhs2-lhs0],Failed: DID NOT RAISE ,failed +2440,tests.integ.modin.binary.test_timedelta,test_string_series_with_timedelta_scalar[timedelta_scalar_positive5-add],[XPASS(strict)] SNOW-1646604,failed +2442,tests.integ.modin.binary.test_timedelta,test_string_series_with_timedelta_scalar[timedelta_scalar_positive5-div],[XPASS(strict)] SNOW-1646604,failed +2445,tests.integ.modin.binary.test_binary_op,test_arithmetic_binary_division_between_series_div_by_zero_negative[floordiv-rhs2-lhs1],Failed: DID NOT RAISE ,failed +2446,tests.integ.modin.binary.test_timedelta,test_string_series_with_timedelta_scalar[timedelta_scalar_positive5-truediv],[XPASS(strict)] SNOW-1646604,failed +2448,tests.integ.modin.crosstab.test_crosstab,test_normalize_margins_and_values[min1-columns-True],AttributeError: can't set attribute,failed +2450,tests.integ.modin.binary.test_timedelta,test_string_series_with_timedelta_scalar[timedelta_scalar_positive5-eq],[XPASS(strict)] SNOW-1646604,failed +2452,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_row_key_series_rhs_scalar[row_pos17-col_pos17-item_value17],ValueError: setting an array element with a sequence.,failed +2454,tests.integ.modin.binary.test_timedelta,test_string_series_with_timedelta_scalar[timedelta_scalar_positive5-ne],[XPASS(strict)] SNOW-1646604,failed +2456,tests.integ.modin.frame.test_all_any,test_all_float_not_implemented[True-data0-0],Failed: DID NOT RAISE ,failed +2457,tests.integ.modin.binary.test_timedelta,test_string_series_with_timedelta_scalar[timedelta_scalar_positive6-sub],[XPASS(strict)] SNOW-1646604,failed +2459,tests.integ.modin.frame.test_all_any,test_all_float_not_implemented[True-data0-1],Failed: DID NOT RAISE ,failed +2460,tests.integ.modin.binary.test_timedelta,test_string_series_with_timedelta_scalar[timedelta_scalar_positive6-add],[XPASS(strict)] SNOW-1646604,failed +2461,tests.integ.modin.crosstab.test_crosstab,test_normalize_margins_and_values[min1-columns-False],AttributeError: can't set attribute,failed +2462,tests.integ.modin.frame.test_all_any,test_all_float_not_implemented[True-data0-None],Failed: DID NOT RAISE ,failed +2463,tests.integ.modin.binary.test_timedelta,test_string_series_with_timedelta_scalar[timedelta_scalar_positive6-div],[XPASS(strict)] SNOW-1646604,failed +2464,tests.integ.modin.frame.test_all_any,test_all_float_not_implemented[True-data1-0],Failed: DID NOT RAISE ,failed +2465,tests.integ.modin.binary.test_timedelta,test_string_series_with_timedelta_scalar[timedelta_scalar_positive6-truediv],[XPASS(strict)] SNOW-1646604,failed +2469,tests.integ.modin.frame.test_all_any,test_all_float_not_implemented[True-data1-1],Failed: DID NOT RAISE ,failed +2470,tests.integ.modin.binary.test_timedelta,test_string_series_with_timedelta_scalar[timedelta_scalar_positive6-eq],[XPASS(strict)] SNOW-1646604,failed +2471,tests.integ.modin.frame.test_all_any,test_all_float_not_implemented[True-data1-None],Failed: DID NOT RAISE ,failed +2472,tests.integ.modin.binary.test_timedelta,test_string_series_with_timedelta_scalar[timedelta_scalar_positive6-ne],[XPASS(strict)] SNOW-1646604,failed +2473,tests.integ.modin.crosstab.test_crosstab,test_normalize_margins_and_values[min2-0-True],AttributeError: can't set attribute,failed +2474,tests.integ.modin.frame.test_all_any,test_all_float_not_implemented[False-data0-0],Failed: DID NOT RAISE ,failed +2475,tests.integ.modin.binary.test_timedelta,test_string_series_with_timedelta_scalar[timedelta_scalar_positive7-sub],[XPASS(strict)] SNOW-1646604,failed +2477,tests.integ.modin.frame.test_all_any,test_all_float_not_implemented[False-data0-1],Failed: DID NOT RAISE ,failed +2478,tests.integ.modin.binary.test_timedelta,test_string_series_with_timedelta_scalar[timedelta_scalar_positive7-add],[XPASS(strict)] SNOW-1646604,failed +2479,tests.integ.modin.frame.test_all_any,test_all_float_not_implemented[False-data0-None],Failed: DID NOT RAISE ,failed +2480,tests.integ.modin.binary.test_timedelta,test_string_series_with_timedelta_scalar[timedelta_scalar_positive7-div],[XPASS(strict)] SNOW-1646604,failed +2482,tests.integ.modin.frame.test_all_any,test_all_float_not_implemented[False-data1-0],Failed: DID NOT RAISE ,failed +2483,tests.integ.modin.binary.test_timedelta,test_string_series_with_timedelta_scalar[timedelta_scalar_positive7-truediv],[XPASS(strict)] SNOW-1646604,failed +2484,tests.integ.modin.frame.test_all_any,test_all_float_not_implemented[False-data1-1],Failed: DID NOT RAISE ,failed +2485,tests.integ.modin.crosstab.test_crosstab,test_normalize_margins_and_values[min2-0-False],AttributeError: can't set attribute,failed +2486,tests.integ.modin.binary.test_timedelta,test_string_series_with_timedelta_scalar[timedelta_scalar_positive7-eq],[XPASS(strict)] SNOW-1646604,failed +2487,tests.integ.modin.frame.test_all_any,test_all_float_not_implemented[False-data1-None],Failed: DID NOT RAISE ,failed +2490,tests.integ.modin.binary.test_timedelta,test_string_series_with_timedelta_scalar[timedelta_scalar_positive7-ne],[XPASS(strict)] SNOW-1646604,failed +2491,tests.integ.modin.frame.test_all_any,test_any_float_not_implemented[True-data0-0],Failed: DID NOT RAISE ,failed +2492,tests.integ.modin.binary.test_timedelta,test_string_series_with_timedelta_scalar[timedelta_scalar_positive8-sub],[XPASS(strict)] SNOW-1646604,failed +2493,tests.integ.modin.frame.test_all_any,test_any_float_not_implemented[True-data0-1],Failed: DID NOT RAISE ,failed +2494,tests.integ.modin.binary.test_timedelta,test_string_series_with_timedelta_scalar[timedelta_scalar_positive8-add],[XPASS(strict)] SNOW-1646604,failed +2495,tests.integ.modin.frame.test_all_any,test_any_float_not_implemented[True-data0-None],Failed: DID NOT RAISE ,failed +2496,tests.integ.modin.binary.test_timedelta,test_string_series_with_timedelta_scalar[timedelta_scalar_positive8-div],[XPASS(strict)] SNOW-1646604,failed +2497,tests.integ.modin.frame.test_all_any,test_any_float_not_implemented[True-data1-0],Failed: DID NOT RAISE ,failed +2498,tests.integ.modin.crosstab.test_crosstab,test_normalize_margins_and_values[min2-1-True],AttributeError: can't set attribute,failed +2500,tests.integ.modin.binary.test_binary_op,test_arithmetic_binary_division_between_series_div_by_zero_negative[floordiv-rhs2-lhs2],ZeroDivisionError: float floor division by zero,failed +2501,tests.integ.modin.binary.test_timedelta,test_string_series_with_timedelta_scalar[timedelta_scalar_positive8-truediv],[XPASS(strict)] SNOW-1646604,failed +2502,tests.integ.modin.frame.test_all_any,test_any_float_not_implemented[True-data1-1],Failed: DID NOT RAISE ,failed +2504,tests.integ.modin.binary.test_timedelta,test_string_series_with_timedelta_scalar[timedelta_scalar_positive8-eq],[XPASS(strict)] SNOW-1646604,failed +2505,tests.integ.modin.frame.test_all_any,test_any_float_not_implemented[True-data1-None],Failed: DID NOT RAISE ,failed +2506,tests.integ.modin.binary.test_timedelta,test_string_series_with_timedelta_scalar[timedelta_scalar_positive8-ne],[XPASS(strict)] SNOW-1646604,failed +2507,tests.integ.modin.frame.test_all_any,test_any_float_not_implemented[False-data0-0],Failed: DID NOT RAISE ,failed +2509,tests.integ.modin.frame.test_all_any,test_any_float_not_implemented[False-data0-1],Failed: DID NOT RAISE ,failed +2511,tests.integ.modin.crosstab.test_crosstab,test_normalize_margins_and_values[min2-1-False],AttributeError: can't set attribute,failed +2513,tests.integ.modin.frame.test_all_any,test_any_float_not_implemented[False-data0-None],Failed: DID NOT RAISE ,failed +2514,tests.integ.modin.frame.test_all_any,test_any_float_not_implemented[False-data1-0],Failed: DID NOT RAISE ,failed +2516,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_row_key_series_empty_keys[item0-row_key1-col_key1],"ValueError: could not broadcast input array from shape (2,) into shape (2, 0)",failed +2517,tests.integ.modin.frame.test_all_any,test_any_float_not_implemented[False-data1-1],Failed: DID NOT RAISE ,failed +2520,tests.integ.modin.frame.test_all_any,test_any_float_not_implemented[False-data1-None],Failed: DID NOT RAISE ,failed +2523,tests.integ.modin.frame.test_all_any,test_all_str_not_implemented[data0-0],Failed: DID NOT RAISE ,failed +2525,tests.integ.modin.frame.test_all_any,test_all_str_not_implemented[data0-1],Failed: DID NOT RAISE ,failed +2526,tests.integ.modin.binary.test_binary_op,test_arithmetic_binary_division_between_series_div_by_zero_negative[floordiv-rhs2-lhs3],ZeroDivisionError: float floor division by zero,failed +2528,tests.integ.modin.frame.test_all_any,test_all_str_not_implemented[data0-None],Failed: DID NOT RAISE ,failed +2531,tests.integ.modin.frame.test_all_any,test_any_str_not_implemented[data0-0],Failed: DID NOT RAISE ,failed +2533,tests.integ.modin.binary.test_binary_op,test_arithmetic_binary_division_between_series_div_by_zero_negative[floordiv-rhs2-lhs4],Failed: DID NOT RAISE ,failed +2535,tests.integ.modin.frame.test_all_any,test_any_str_not_implemented[data0-1],Failed: DID NOT RAISE ,failed +2537,tests.integ.modin.frame.test_all_any,test_any_str_not_implemented[data0-None],Failed: DID NOT RAISE ,failed +2540,tests.integ.modin.binary.test_binary_op,test_arithmetic_binary_division_between_series_div_by_zero_negative[floordiv-rhs3-lhs0],Failed: DID NOT RAISE ,failed +2545,tests.integ.modin.binary.test_binary_op,test_arithmetic_binary_division_between_series_div_by_zero_negative[floordiv-rhs3-lhs1],Failed: DID NOT RAISE ,failed +2548,tests.integ.modin.crosstab.test_crosstab,test_normalize_margins_and_values[min2-index-True],AttributeError: can't set attribute,failed +2562,tests.integ.modin.crosstab.test_crosstab,test_normalize_margins_and_values[min2-index-False],AttributeError: can't set attribute,failed +2571,tests.integ.modin.binary.test_binary_op,test_arithmetic_binary_division_between_series_div_by_zero_negative[floordiv-rhs3-lhs2],ZeroDivisionError: float floor division by zero,failed +2574,tests.integ.modin.crosstab.test_crosstab,test_normalize_margins_and_values[min2-columns-True],AttributeError: can't set attribute,failed +2579,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_row_key_series_empty_keys[item1-row_key1-col_key1],"ValueError: could not broadcast input array from shape (2,) into shape (2, 0)",failed +2583,tests.integ.modin.crosstab.test_crosstab,test_normalize_margins_and_values[min2-columns-False],AttributeError: can't set attribute,failed +2590,tests.integ.modin.crosstab.test_crosstab,test_normalize_margins_and_values[max0-0-True],AttributeError: can't set attribute,failed +2596,tests.integ.modin.crosstab.test_crosstab,test_normalize_margins_and_values[max0-0-False],AttributeError: can't set attribute,failed +2597,tests.integ.modin.binary.test_timedelta,test_numeric_dataframe_with_timedelta_list_like[mul],TypeError: Cannot do operation with improper dtypes,failed +2600,tests.integ.modin.binary.test_binary_op,test_arithmetic_binary_division_between_series_div_by_zero_negative[floordiv-rhs3-lhs3],ZeroDivisionError: float floor division by zero,failed +2601,tests.integ.modin.crosstab.test_crosstab,test_normalize_margins_and_values[max0-1-True],AttributeError: can't set attribute,failed +2602,tests.integ.modin.binary.test_timedelta,test_numeric_dataframe_with_timedelta_list_like[rmul],TypeError: Cannot do operation with improper dtypes,failed +2604,tests.integ.modin.binary.test_binary_op,test_arithmetic_binary_division_between_series_div_by_zero_negative[floordiv-rhs3-lhs4],Failed: DID NOT RAISE ,failed +2605,tests.integ.modin.binary.test_timedelta,test_numeric_dataframe_with_timedelta_list_like[rdiv],TypeError: Cannot do operation with improper dtypes,failed +2606,tests.integ.modin.binary.test_binary_op,test_arithmetic_binary_ops_between_series_with_booleans_negative[add-rhs0-lhs0],Failed: DID NOT RAISE ,failed +2607,tests.integ.modin.crosstab.test_crosstab,test_normalize_margins_and_values[max0-1-False],AttributeError: can't set attribute,failed +2609,tests.integ.modin.frame.test_insert,test_insert_multiindex_column[columns4-insert_label2],ValueError: Item must have length equal to number of levels.,failed +2610,tests.integ.modin.binary.test_binary_op,test_arithmetic_binary_ops_between_series_with_booleans_negative[add-rhs1-lhs0],Failed: DID NOT RAISE ,failed +2611,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_empty_df[row_key0-col_key0-item0],AssertionError: cannot find the length of the indexer,failed +2613,tests.integ.modin.binary.test_binary_op,test_arithmetic_binary_ops_between_series_with_booleans_negative[add-rhs2-lhs0],Failed: DID NOT RAISE ,failed +2614,tests.integ.modin.binary.test_binary_op,test_arithmetic_binary_ops_between_series_with_booleans_negative[radd-rhs0-lhs0],Failed: DID NOT RAISE ,failed +2616,tests.integ.modin.frame.test_insert,test_insert_multiindex_column[columns4-insert_label3],ValueError: Item must have length equal to number of levels.,failed +2617,tests.integ.modin.binary.test_binary_op,test_arithmetic_binary_ops_between_series_with_booleans_negative[radd-rhs1-lhs0],Failed: DID NOT RAISE ,failed +2619,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_empty_df[row_key1-col_key1-item1],AssertionError: cannot find the length of the indexer,failed +2620,tests.integ.modin.frame.test_apply,test_axis_1_basic_types_without_type_hints[return_timedelta_scalar],[XPASS(strict)] SNOW-1619940,failed +2621,tests.integ.modin.binary.test_binary_op,test_arithmetic_binary_ops_between_series_with_booleans_negative[radd-rhs2-lhs0],Failed: DID NOT RAISE ,failed +2623,tests.integ.modin.crosstab.test_crosstab,test_normalize_margins_and_values[max0-index-True],AttributeError: can't set attribute,failed +2625,tests.integ.modin.binary.test_binary_op,test_arithmetic_binary_ops_between_series_with_booleans_negative[sub-rhs0-lhs0],Failed: DID NOT RAISE ,failed +2626,tests.integ.modin.binary.test_timedelta,test_numeric_dataframe_with_timedelta_list_like[rtruediv],TypeError: Cannot do operation with improper dtypes,failed +2628,tests.integ.modin.binary.test_binary_op,test_arithmetic_binary_ops_between_series_with_booleans_negative[sub-rhs1-lhs0],Failed: DID NOT RAISE ,failed +2629,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_empty_df[row_key2-col_key2-item2],AssertionError: cannot find the length of the indexer,failed +2633,tests.integ.modin.crosstab.test_crosstab,test_normalize_margins_and_values[max0-index-False],AttributeError: can't set attribute,failed +2635,tests.integ.modin.binary.test_binary_op,test_arithmetic_binary_ops_between_series_with_booleans_negative[sub-rhs2-lhs0],Failed: DID NOT RAISE ,failed +2636,tests.integ.modin.binary.test_timedelta,test_numeric_dataframe_with_timedelta_list_like[rfloordiv],TypeError: Cannot do operation with improper dtypes,failed +2639,tests.integ.modin.binary.test_binary_op,test_arithmetic_binary_ops_between_series_with_booleans_negative[rsub-rhs0-lhs0],Failed: DID NOT RAISE ,failed +2643,tests.integ.modin.crosstab.test_crosstab,test_normalize_margins_and_values[max0-columns-True],AttributeError: can't set attribute,failed +2645,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_empty_df[row_key3-col_key3-item3],AssertionError: cannot find the length of the indexer,failed +2646,tests.integ.modin.binary.test_binary_op,test_arithmetic_binary_ops_between_series_with_booleans_negative[rsub-rhs1-lhs0],Failed: DID NOT RAISE ,failed +2647,tests.integ.modin.binary.test_timedelta,test_numeric_dataframe_with_timedelta_list_like[rmod],TypeError: Cannot do operation with improper dtypes,failed +2653,tests.integ.modin.binary.test_binary_op,test_arithmetic_binary_ops_between_series_with_booleans_negative[rsub-rhs2-lhs0],Failed: DID NOT RAISE ,failed +2654,tests.integ.modin.crosstab.test_crosstab,test_normalize_margins_and_values[max0-columns-False],AttributeError: can't set attribute,failed +2655,tests.integ.modin.frame.test_apply,test_axis_1_basic_types_without_type_hints[apply_on_frame_with_timedelta_data_columns_returns_int],[XPASS(strict)] ,failed +2657,tests.integ.modin.binary.test_binary_op,test_arithmetic_binary_ops_between_series_with_booleans_negative[mul-rhs0-lhs0],Failed: DID NOT RAISE ,failed +2660,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_empty_df[row_key4-col_key4-item4],AssertionError: cannot find the length of the indexer,failed +2661,tests.integ.modin.frame.test_apply,test_axis_1_basic_types_with_type_hints[return_timedelta_scalar],[XPASS(strict)] SNOW-1619940,failed +2662,tests.integ.modin.binary.test_timedelta,test_numeric_dataframe_with_timedelta_list_like[eq],TypeError: Cannot do operation with improper dtypes,failed +2663,tests.integ.modin.binary.test_binary_op,test_arithmetic_binary_ops_between_series_with_booleans_negative[mul-rhs1-lhs0],Failed: DID NOT RAISE ,failed +2664,tests.integ.modin.crosstab.test_crosstab,test_normalize_margins_and_values[max1-0-True],AttributeError: can't set attribute,failed +2667,tests.integ.modin.binary.test_binary_op,test_arithmetic_binary_ops_between_series_with_booleans_negative[mul-rhs2-lhs0],Failed: DID NOT RAISE ,failed +2671,tests.integ.modin.binary.test_timedelta,test_numeric_dataframe_with_timedelta_list_like[ne],TypeError: Cannot do operation with improper dtypes,failed +2672,tests.integ.modin.crosstab.test_crosstab,test_normalize_margins_and_values[max1-0-False],AttributeError: can't set attribute,failed +2673,tests.integ.modin.binary.test_binary_op,test_arithmetic_binary_ops_between_series_with_booleans_negative[rmul-rhs0-lhs0],Failed: DID NOT RAISE ,failed +2674,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_empty_df[row_key5-col_key5-item5],AssertionError: cannot find the length of the indexer,failed +2679,tests.integ.modin.binary.test_binary_op,test_arithmetic_binary_ops_between_series_with_booleans_negative[rmul-rhs1-lhs0],Failed: DID NOT RAISE ,failed +2684,tests.integ.modin.crosstab.test_crosstab,test_normalize_margins_and_values[max1-1-True],AttributeError: can't set attribute,failed +2685,tests.integ.modin.binary.test_binary_op,test_arithmetic_binary_ops_between_series_with_booleans_negative[rmul-rhs2-lhs0],Failed: DID NOT RAISE ,failed +2692,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_empty_df[row_key6-col_key6-item6],AssertionError: cannot find the length of the indexer,failed +2698,tests.integ.modin.frame.test_apply,test_axis_1_basic_types_with_type_hints[apply_on_frame_with_timedelta_data_columns_returns_int],[XPASS(strict)] ,failed +2707,tests.integ.modin.frame.test_getitem,test_df_getitem_with_boolean_list_like[key4],TypeError: unhashable type: 'Index',failed +2708,tests.integ.modin.frame.test_apply,test_frame_with_timedelta_index,[XPASS(strict)] ,failed +2715,tests.integ.modin.crosstab.test_crosstab,test_normalize_margins_and_values[max1-1-False],AttributeError: can't set attribute,failed +2720,tests.integ.modin.frame.test_getitem,test_df_getitem_with_boolean_list_like[key5],ValueError: Item wrong length 1 instead of 7.,failed +2722,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_none_df[row_key0-col_key0-item0],"AssertionError: DataFrame.iloc[:, 0] (column name=""0"") are different + +DataFrame.iloc[:, 0] (column name=""0"") values are different (100.0 %) +[index]: [0, 1] +[left]: [11, 33] +[right]: [33, 11]",failed +2724,tests.integ.modin.crosstab.test_crosstab,test_normalize_margins_and_values[max1-index-True],AttributeError: can't set attribute,failed +2725,tests.integ.modin.binary.test_binary_op,test_arithmetic_binary_ops_between_series_with_booleans_negative[truediv-rhs0-lhs0],ZeroDivisionError: division by zero,failed +2726,tests.integ.modin.frame.test_apply,test_axis_1_date_time_timestamp_type[data0--expected_result0],AttributeError: Can only use .dt accessor with datetimelike values,failed +2731,tests.integ.modin.frame.test_apply,test_axis_1_date_time_timestamp_type[data1--expected_result1],"AssertionError: DataFrame.iloc[:, 1] (column name=""1"") are different + +DataFrame.iloc[:, 1] (column name=""1"") values are different (50.0 %) +[index]: [0, 1] +[left]: [None, 2021-01-09] +[right]: [NaT, 2021-01-09] +At positional index 0, first diff: None != NaT",failed +2734,tests.integ.modin.crosstab.test_crosstab,test_normalize_margins_and_values[max1-index-False],AttributeError: can't set attribute,failed +2740,tests.integ.modin.crosstab.test_crosstab,test_normalize_margins_and_values[max1-columns-True],AttributeError: can't set attribute,failed +2744,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_none_df[row_key1-col_key1-item1],ValueError: Length of values (1) does not match length of index (2),failed +2746,tests.integ.modin.binary.test_binary_op,test_arithmetic_binary_ops_between_series_with_booleans_negative[truediv-rhs1-lhs0],ZeroDivisionError: float division by zero,failed +2749,tests.integ.modin.binary.test_binary_op,test_arithmetic_binary_ops_between_series_with_booleans_negative[truediv-rhs2-lhs0],Failed: DID NOT RAISE ,failed +2751,tests.integ.modin.crosstab.test_crosstab,test_normalize_margins_and_values[max1-columns-False],AttributeError: can't set attribute,failed +2753,tests.integ.modin.frame.test_getitem,test_df_getitem_with_boolean_list_like[key6],ValueError: Item wrong length 8 instead of 7.,failed +2755,tests.integ.modin.binary.test_timedelta,test_numeric_series_and_timedelta_list_like[mul],TypeError: Cannot do operation with improper dtypes,failed +2757,tests.integ.modin.crosstab.test_crosstab,test_normalize_margins_and_values[max2-0-True],AttributeError: can't set attribute,failed +2758,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_none_df[row_key3-col_key3-item3],"AssertionError: DataFrame.iloc[:, 1] (column name=""1"") are different + +DataFrame.iloc[:, 1] (column name=""1"") values are different (50.0 %) +[index]: [0, 1] +[left]: [, ] +[right]: [None, 99] +At positional index 1, first diff: != 99",failed +2761,tests.integ.modin.binary.test_timedelta,test_numeric_series_and_timedelta_list_like[rmul],TypeError: Cannot do operation with improper dtypes,failed +2762,tests.integ.modin.frame.test_apply,test_axis_1_date_time_timestamp_type[data2--expected_result2],AttributeError: Can only use .dt accessor with datetimelike values,failed +2763,tests.integ.modin.crosstab.test_crosstab,test_normalize_margins_and_values[max2-0-False],AttributeError: can't set attribute,failed +2764,tests.integ.modin.frame.test_apply,test_axis_1_date_time_timestamp_type[data3--expected_result3],"AssertionError: DataFrame.iloc[:, 0] (column name=""0"") are different + +DataFrame.iloc[:, 0] (column name=""0"") values are different (100.0 %) +[index]: [0, 1] +[left]: [01:02:03, 01:02:03.000001] +[right]: [0 days 01:02:03, 0 days 01:02:03.000001] +At positional index 0, first diff: 01:02:03 != 0 days 01:02:03",failed +2765,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_types_df[row_key0-col_key0-item0],"AssertionError: DataFrame.iloc[:, 0] (column name=""A"") are different + +DataFrame.iloc[:, 0] (column name=""A"") values are different (25.0 %) +[index]: [0, 1, 2, 3] +[left]: [nan, 2.0, 3.0, 4.0] +[right]: [99, 2, 3, 4]",failed +2768,tests.integ.modin.binary.test_timedelta,test_numeric_series_and_timedelta_list_like[rdiv],TypeError: Cannot do operation with improper dtypes,failed +2769,tests.integ.modin.frame.test_apply,test_axis_1_date_time_timestamp_type[data4--expected_result4],"AssertionError: Series are different + +Series values are different (100.0 %) +[index]: [0, 1] +[left]: [UTC, UTC] +[right]: [UTC, UTC] +At positional index 0, first diff: UTC != UTC",failed +2770,tests.integ.modin.frame.test_apply,test_axis_1_date_time_timestamp_type[data5--expected_result5],"AssertionError: DataFrame.iloc[:, 1] (column name=""1"") are different + +DataFrame.iloc[:, 1] (column name=""1"") values are different (50.0 %) +[index]: [0, 1] +[left]: [NaT, 2023-01-01 01:02:03+00:00] +[right]: [None, 2023-01-01 01:02:03+00:00] +At positional index 0, first diff: NaT != None",failed +2771,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_types_df[row_key1-col_key1-item1],"AssertionError: DataFrame.iloc[:, 1] (column name=""B"") are different + +DataFrame.iloc[:, 1] (column name=""B"") values are different (25.0 %) +[index]: [0, 1, 2, 3] +[left]: [True, , True, False] +[right]: [True, True, True, False]",failed +2773,tests.integ.modin.binary.test_timedelta,test_numeric_series_and_timedelta_list_like[rtruediv],TypeError: Cannot do operation with improper dtypes,failed +2776,tests.integ.modin.binary.test_binary_op,test_arithmetic_binary_ops_between_series_with_booleans_negative[rtruediv-rhs0-lhs0],ZeroDivisionError: division by zero,failed +2779,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_types_df[row_key2-col_key2-item2],"AssertionError: DataFrame.iloc[:, 2] (column name=""C"") are different + +DataFrame.iloc[:, 2] (column name=""C"") values are different (25.0 %) +[index]: [0, 1, 2, 3] +[left]: [1.5, 3.14159, nan, 123.45] +[right]: [1.5, 3.14159, 101.101, 123.45] +At positional index 2, first diff: nan != 101.101",failed +2780,tests.integ.modin.crosstab.test_crosstab,test_normalize_margins_and_values[max2-1-True],AttributeError: can't set attribute,failed +2782,tests.integ.modin.frame.test_insert,test_insert_with_unique_and_duplicate_index_values[index_values0-other_index_values0-False],"AssertionError: DataFrame.index are different Attribute ""names"" are different [left]: [None] [right]: ['INDEX']",failed -2629,tests.integ.modin.crosstab.test_crosstab,test_normalize_margins_and_values[max0-1-True],AttributeError: can't set attribute,failed -2649,tests.integ.modin.frame.test_insert,test_insert_with_unique_and_duplicate_index_values[index_values1-other_index_values1-False],"AssertionError: DataFrame.index are different +2786,tests.integ.modin.frame.test_getitem,test_df_getitem_with_boolean_list_like[key7],TypeError: unhashable type: 'Index',failed +2787,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_types_df[row_key3-col_key3-item3],TypeError: boolean value of NA is ambiguous,failed +2788,tests.integ.modin.crosstab.test_crosstab,test_normalize_margins_and_values[max2-1-False],AttributeError: can't set attribute,failed +2789,tests.integ.modin.frame.test_apply,test_axis_1_return_not_json_serializable_label,Failed: DID NOT RAISE ,failed +2791,tests.integ.modin.binary.test_binary_op,test_arithmetic_binary_ops_between_series_with_booleans_negative[rtruediv-rhs1-lhs0],ZeroDivisionError: float division by zero,failed +2792,tests.integ.modin.frame.test_apply,test_axis_1_apply_args_kwargs,AssertionError: exception type does not match with expected type ,failed +2794,tests.integ.modin.binary.test_timedelta,test_numeric_series_and_timedelta_list_like[rfloordiv],TypeError: Cannot do operation with improper dtypes,failed +2795,tests.integ.modin.crosstab.test_crosstab,test_normalize_margins_and_values[max2-index-True],AttributeError: can't set attribute,failed +2796,tests.integ.modin.frame.test_apply,test_result_type[reduce],Failed: DID NOT RAISE ,failed +2798,tests.integ.modin.frame.test_getitem,test_df_getitem_with_boolean_list_like[key8],ValueError: Item wrong length 0 instead of 7.,failed +2800,tests.integ.modin.frame.test_apply,test_result_type[expand],Failed: DID NOT RAISE ,failed +2802,tests.integ.modin.binary.test_timedelta,test_numeric_series_and_timedelta_list_like[rmod],TypeError: Cannot do operation with improper dtypes,failed +2803,tests.integ.modin.crosstab.test_crosstab,test_normalize_margins_and_values[max2-index-False],AttributeError: can't set attribute,failed +2804,tests.integ.modin.frame.test_apply,test_result_type[broadcast],Failed: DID NOT RAISE ,failed +2805,tests.integ.modin.frame.test_insert,test_insert_with_unique_and_duplicate_index_values[index_values1-other_index_values1-False],"AssertionError: DataFrame.index are different Attribute ""names"" are different [left]: [None] [right]: ['INDEX']",failed -2653,tests.integ.modin.binary.test_binary_op,test_arithmetic_binary_division_between_series_div_by_zero_negative[floordiv-rhs3-lhs2],ZeroDivisionError: float floor division by zero,failed -2661,tests.integ.modin.crosstab.test_crosstab,test_normalize_margins_and_values[max0-1-False],AttributeError: can't set attribute,failed -2667,tests.integ.modin.test_apply_snowpark_python_functions,test_apply_pass_base_as_column,"TypeError: 'LOG' expected Column or str, got: ",failed -2668,tests.integ.modin.frame.test_insert,test_insert_with_unique_and_duplicate_index_values[index_values2-other_index_values2-False],"AssertionError: DataFrame.index are different +2808,tests.integ.modin.frame.test_apply,test_axis_1_apply_args_kwargs_with_snowpandas_object,Failed: DID NOT RAISE ,failed +2809,tests.integ.modin.binary.test_binary_op,test_arithmetic_binary_ops_between_series_with_booleans_negative[rtruediv-rhs2-lhs0],ZeroDivisionError: float division by zero,failed +2811,tests.integ.modin.binary.test_timedelta,test_numeric_series_and_timedelta_list_like[eq],TypeError: Cannot do operation with improper dtypes,failed +2813,tests.integ.modin.crosstab.test_crosstab,test_normalize_margins_and_values[max2-columns-True],AttributeError: can't set attribute,failed +2817,tests.integ.modin.binary.test_timedelta,test_numeric_series_and_timedelta_list_like[ne],TypeError: Cannot do operation with improper dtypes,failed +2821,tests.integ.modin.crosstab.test_crosstab,test_normalize_margins_and_values[max2-columns-False],AttributeError: can't set attribute,failed +2827,tests.integ.modin.frame.test_insert,test_insert_with_unique_and_duplicate_index_values[index_values2-other_index_values2-False],"AssertionError: DataFrame.index are different Attribute ""names"" are different [left]: [None] [right]: ['INDEX']",failed -2673,tests.integ.modin.crosstab.test_crosstab,test_normalize_margins_and_values[max0-index-True],AttributeError: can't set attribute,failed -2676,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_row_key_series_empty_keys[item0-row_key1-col_key1],"ValueError: could not broadcast input array from shape (2,) into shape (2, 0)",failed -2681,tests.integ.modin.binary.test_binary_op,test_arithmetic_binary_division_between_series_div_by_zero_negative[floordiv-rhs3-lhs3],ZeroDivisionError: float floor division by zero,failed -2684,tests.integ.modin.crosstab.test_crosstab,test_normalize_margins_and_values[max0-index-False],AttributeError: can't set attribute,failed -2689,tests.integ.modin.binary.test_binary_op,test_arithmetic_binary_division_between_series_div_by_zero_negative[floordiv-rhs3-lhs4],Failed: DID NOT RAISE ,failed -2694,tests.integ.modin.binary.test_binary_op,test_arithmetic_binary_ops_between_series_with_booleans_negative[add-rhs0-lhs0],Failed: DID NOT RAISE ,failed -2696,tests.integ.modin.crosstab.test_crosstab,test_normalize_margins_and_values[max0-columns-True],AttributeError: can't set attribute,failed -2702,tests.integ.modin.frame.test_insert,test_insert_with_unique_and_duplicate_index_values[index_values3-other_index_values3-False],"AssertionError: DataFrame.index are different +2831,tests.integ.modin.binary.test_binary_op,test_arithmetic_binary_ops_between_series_with_booleans_negative[floordiv-rhs0-lhs0],ZeroDivisionError: integer division or modulo by zero,failed +2833,tests.integ.modin.crosstab.test_crosstab,test_normalize_margins_and_values[sum0-0-True],AttributeError: can't set attribute,failed +2835,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_types_df[row_key9-col_key9-item9],"AssertionError: DataFrame.iloc[:, 0] (column name=""A"") are different + +DataFrame.iloc[:, 0] (column name=""A"") values are different (100.0 %) +[index]: [0, 1, 2, 3] +[left]: [nan, nan, nan, nan] +[right]: [99, 99, 99, 99]",failed +2842,tests.integ.modin.crosstab.test_crosstab,test_normalize_margins_and_values[sum0-0-False],AttributeError: can't set attribute,failed +2844,tests.integ.modin.frame.test_apply,test_axis_1_multi_index_column_labels_different_levels_negative,AssertionError: exception type does not match with expected type ,failed +2846,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_types_df[row_key10-col_key10-item10],"AssertionError: DataFrame.iloc[:, 1] (column name=""B"") are different + +DataFrame.iloc[:, 1] (column name=""B"") values are different (50.0 %) +[index]: [0, 1, 2, 3] +[left]: [True, , , False] +[right]: [True, True, False, False]",failed +2849,tests.integ.modin.frame.test_getitem,test_df_getitem_with_string_list_like[key1],TypeError: unhashable type: 'Index',failed +2851,tests.integ.modin.frame.test_insert,test_insert_with_unique_and_duplicate_index_values[index_values3-other_index_values3-False],"AssertionError: DataFrame.index are different Attribute ""names"" are different [left]: [None] [right]: ['INDEX']",failed -2704,tests.integ.modin.binary.test_binary_op,test_arithmetic_binary_ops_between_series_with_booleans_negative[add-rhs1-lhs0],Failed: DID NOT RAISE ,failed -2710,tests.integ.modin.crosstab.test_crosstab,test_normalize_margins_and_values[max0-columns-False],AttributeError: can't set attribute,failed -2713,tests.integ.modin.binary.test_binary_op,test_arithmetic_binary_ops_between_series_with_booleans_negative[add-rhs2-lhs0],Failed: DID NOT RAISE ,failed -2716,tests.integ.modin.test_apply_snowpark_python_functions,test_apply_snowpark_python_function_not_implemented,"TypeError: 'DESC' expected Column or str, got: ",failed -2722,tests.integ.modin.binary.test_binary_op,test_arithmetic_binary_ops_between_series_with_booleans_negative[radd-rhs0-lhs0],Failed: DID NOT RAISE ,failed -2724,tests.integ.modin.crosstab.test_crosstab,test_normalize_margins_and_values[max1-0-True],AttributeError: can't set attribute,failed -2732,tests.integ.modin.binary.test_binary_op,test_arithmetic_binary_ops_between_series_with_booleans_negative[radd-rhs1-lhs0],Failed: DID NOT RAISE ,failed -2738,tests.integ.modin.binary.test_binary_op,test_arithmetic_binary_ops_between_series_with_booleans_negative[radd-rhs2-lhs0],Failed: DID NOT RAISE ,failed -2739,tests.integ.modin.crosstab.test_crosstab,test_normalize_margins_and_values[max1-0-False],AttributeError: can't set attribute,failed -2745,tests.integ.modin.binary.test_binary_op,test_arithmetic_binary_ops_between_series_with_booleans_negative[sub-rhs0-lhs0],Failed: DID NOT RAISE ,failed -2751,tests.integ.modin.binary.test_binary_op,test_arithmetic_binary_ops_between_series_with_booleans_negative[sub-rhs1-lhs0],Failed: DID NOT RAISE ,failed -2753,tests.integ.modin.frame.test_insert,test_insert_with_unique_and_duplicate_index_values[index_values4-other_index_values4-True],ValueError: cannot reindex on an axis with duplicate labels,failed -2757,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_row_key_series_empty_keys[item1-row_key1-col_key1],"ValueError: could not broadcast input array from shape (2,) into shape (2, 0)",failed -2760,tests.integ.modin.binary.test_binary_op,test_arithmetic_binary_ops_between_series_with_booleans_negative[sub-rhs2-lhs0],Failed: DID NOT RAISE ,failed -2770,tests.integ.modin.crosstab.test_crosstab,test_normalize_margins_and_values[max1-1-True],AttributeError: can't set attribute,failed -2773,tests.integ.modin.frame.test_insert,test_insert_with_unique_and_duplicate_index_values[index_values5-other_index_values5-False],"AssertionError: DataFrame.index are different +2852,tests.integ.modin.frame.test_apply,test_apply_variant_json_null,"assert [True, True, True, False] == [False, True, True, False] + At index 0 diff: True != False + Full diff: + - [False, True, True, False] + + [True, True, True, False]",failed +2857,tests.integ.modin.frame.test_apply,test_apply_bug_1650918[data0-],[XPASS(strict)] SNOW-1650918: Apply on dataframe data columns containing NULL fails with invalid arguments to udtf function,failed +2861,tests.integ.modin.frame.test_apply,test_apply_bug_1650918[data1-],[XPASS(strict)] SNOW-1650918: Apply on dataframe data columns containing NULL fails with invalid arguments to udtf function,failed +2862,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_row_key_series_out_of_bounds_keys[row_key0-col_key0],IndexError: index -5 is out of bounds for axis 0 with size 4,failed +2871,tests.integ.modin.frame.test_apply,test_basic_dataframe_transform[data2-exp-None],Failed: DID NOT RAISE ,failed +2872,tests.integ.modin.binary.test_binary_op,test_arithmetic_binary_ops_between_series_with_booleans_negative[floordiv-rhs1-lhs0],ZeroDivisionError: float floor division by zero,failed +2874,tests.integ.modin.crosstab.test_crosstab,test_normalize_margins_and_values[sum0-1-True],AttributeError: can't set attribute,failed +2881,tests.integ.modin.frame.test_apply,test_basic_dataframe_transform[data5-sqrt-None],Failed: DID NOT RAISE ,failed +2884,tests.integ.modin.crosstab.test_crosstab,test_normalize_margins_and_values[sum0-1-False],AttributeError: can't set attribute,failed +2888,tests.integ.modin.frame.test_apply,test_basic_dataframe_transform[data7-log-None],Failed: DID NOT RAISE ,failed +2892,tests.integ.modin.binary.test_binary_op,test_arithmetic_binary_ops_between_series_with_booleans_negative[floordiv-rhs2-lhs0],TypeError: boolean value of NA is ambiguous,failed +2894,tests.integ.modin.crosstab.test_crosstab,test_normalize_margins_and_values[sum0-index-True],AttributeError: can't set attribute,failed +2896,tests.integ.modin.frame.test_apply,test_basic_dataframe_transform[data9-square-None],Failed: DID NOT RAISE ,failed +2898,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_row_key_series_out_of_bounds_keys[row_key1-col_key1],IndexError: index 8 is out of bounds for axis 0 with size 4,failed +2902,tests.integ.modin.crosstab.test_crosstab,test_normalize_margins_and_values[sum0-index-False],AttributeError: can't set attribute,failed +2903,tests.integ.modin.binary.test_timedelta,test_numeric_dataframe_and_timedelta_list_like[mul],TypeError: Cannot do operation with improper dtypes,failed +2907,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_row_key_series_out_of_bounds_keys[row_key2-col_key2],IndexError: index 6 is out of bounds for axis 0 with size 4,failed +2908,tests.integ.modin.frame.test_insert,test_insert_with_unique_and_duplicate_index_values[index_values4-other_index_values4-True],ValueError: cannot reindex on an axis with duplicate labels,failed +2909,tests.integ.modin.binary.test_binary_op,test_arithmetic_binary_ops_between_series_with_booleans_negative[rfloordiv-rhs0-lhs0],ZeroDivisionError: integer division or modulo by zero,failed +2911,tests.integ.modin.binary.test_timedelta,test_numeric_dataframe_and_timedelta_list_like[rmul],TypeError: Cannot do operation with improper dtypes,failed +2914,tests.integ.modin.crosstab.test_crosstab,test_normalize_margins_and_values[sum0-columns-True],AttributeError: can't set attribute,failed +2916,tests.integ.modin.binary.test_timedelta,test_numeric_dataframe_and_timedelta_list_like[rdiv],TypeError: Cannot do operation with improper dtypes,failed +2917,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_row_key_series_out_of_bounds_keys[row_key3-col_key3],IndexError: index -10 is out of bounds for axis 0 with size 4,failed +2920,tests.integ.modin.crosstab.test_crosstab,test_normalize_margins_and_values[sum0-columns-False],AttributeError: can't set attribute,failed +2921,tests.integ.modin.frame.test_apply,test_dataframe_transform_invalid_function_name_negative,AttributeError: 'mxyzptlk' is not a valid function for 'DataFrame' object,failed +2922,tests.integ.modin.binary.test_timedelta,test_numeric_dataframe_and_timedelta_list_like[rtruediv],TypeError: Cannot do operation with improper dtypes,failed +2924,tests.integ.modin.frame.test_apply,test_dataframe_transform_invalid_types_negative[1],"AssertionError: Regex pattern did not match. + Regex: 'object is not callable' + Input: ""One of the passed functions has an invalid type: : 1, only callable or string is acceptable.""",failed +2926,tests.integ.modin.crosstab.test_crosstab,test_normalize_margins_and_values[sum1-0-True],AttributeError: can't set attribute,failed +2928,tests.integ.modin.frame.test_apply,test_dataframe_transform_invalid_types_negative[2.5],"AssertionError: Regex pattern did not match. + Regex: 'object is not callable' + Input: ""One of the passed functions has an invalid type: : 2.5, only callable or string is acceptable.""",failed +2929,tests.integ.modin.frame.test_getitem,test_df_getitem_with_int_list_like[key1],TypeError: unhashable type: 'Index',failed +2932,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_row_key_series_float_keys[row_pos0-col_pos0],"ValueError: +Location based indexing can only have [integer, integer slice (START point is +INCLUDED, END point is EXCLUDED), listlike of integers, boolean array] types.",failed +2934,tests.integ.modin.frame.test_apply,test_dataframe_transform_invalid_types_negative[True],"AssertionError: Regex pattern did not match. + Regex: 'object is not callable' + Input: ""One of the passed functions has an invalid type: : True, only callable or string is acceptable.""",failed +2935,tests.integ.modin.binary.test_binary_op,test_arithmetic_binary_ops_between_series_with_booleans_negative[rfloordiv-rhs1-lhs0],ZeroDivisionError: float floor division by zero,failed +2942,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_row_key_series_float_keys[row_pos1-col_pos1],"ValueError: +Location based indexing can only have [integer, integer slice (START point is +INCLUDED, END point is EXCLUDED), listlike of integers, boolean array] types.",failed +2949,tests.integ.modin.binary.test_timedelta,test_numeric_dataframe_and_timedelta_list_like[rfloordiv],TypeError: Cannot do operation with improper dtypes,failed +2951,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_row_key_series_float_keys[row_pos2-col_pos2],"ValueError: +Location based indexing can only have [integer, integer slice (START point is +INCLUDED, END point is EXCLUDED), listlike of integers, boolean array] types.",failed +2953,tests.integ.modin.binary.test_binary_op,test_arithmetic_binary_ops_between_series_with_booleans_negative[rfloordiv-rhs2-lhs0],ZeroDivisionError: float floor division by zero,failed +2954,tests.integ.modin.frame.test_insert,test_insert_with_unique_and_duplicate_index_values[index_values5-other_index_values5-False],"AssertionError: DataFrame.index are different Attribute ""names"" are different [left]: [None] [right]: ['INDEX']",failed -2781,tests.integ.modin.crosstab.test_crosstab,test_normalize_margins_and_values[max1-1-False],AttributeError: can't set attribute,failed -2787,tests.integ.modin.binary.test_binary_op,test_arithmetic_binary_ops_between_series_with_booleans_negative[rsub-rhs0-lhs0],Failed: DID NOT RAISE ,failed -2791,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_empty_df[row_key0-col_key0-item0],AssertionError: cannot find the length of the indexer,failed -2794,tests.integ.modin.frame.test_insert,test_insert_with_unique_and_duplicate_index_values[index_values6-other_index_values6-False],"AssertionError: DataFrame.index are different +2955,tests.integ.modin.crosstab.test_crosstab,test_normalize_margins_and_values[sum1-0-False],AttributeError: can't set attribute,failed +2960,tests.integ.modin.binary.test_timedelta,test_numeric_dataframe_and_timedelta_list_like[rmod],TypeError: Cannot do operation with improper dtypes,failed +2962,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_row_key_series_float_keys[row_pos3-col_pos3],"ValueError: +Location based indexing can only have [integer, integer slice (START point is +INCLUDED, END point is EXCLUDED), listlike of integers, boolean array] types.",failed +2964,tests.integ.modin.crosstab.test_crosstab,test_normalize_margins_and_values[sum1-1-True],AttributeError: can't set attribute,failed +2968,tests.integ.modin.binary.test_timedelta,test_numeric_dataframe_and_timedelta_list_like[eq],TypeError: Cannot do operation with improper dtypes,failed +2971,tests.integ.modin.binary.test_binary_op,test_other_with_native_pandas_object_raises[truediv],ZeroDivisionError: division by zero,failed +2972,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_row_key_series_float_keys[row_pos4-col_pos4],"ValueError: +Location based indexing can only have [integer, integer slice (START point is +INCLUDED, END point is EXCLUDED), listlike of integers, boolean array] types.",failed +2975,tests.integ.modin.crosstab.test_crosstab,test_normalize_margins_and_values[sum1-1-False],AttributeError: can't set attribute,failed +2978,tests.integ.modin.frame.test_insert,test_insert_with_unique_and_duplicate_index_values[index_values6-other_index_values6-False],"AssertionError: DataFrame.index are different Attribute ""names"" are different [left]: [None] [right]: ['INDEX']",failed -2795,tests.integ.modin.crosstab.test_crosstab,test_normalize_margins_and_values[max1-index-True],AttributeError: can't set attribute,failed -2796,tests.integ.modin.binary.test_binary_op,test_arithmetic_binary_ops_between_series_with_booleans_negative[rsub-rhs1-lhs0],Failed: DID NOT RAISE ,failed -2798,tests.integ.modin.frame.test_head_tail,test_head_tail[1],AttributeError: 'DataFrame' object has no attribute 'ordered_dataframe',failed -2802,tests.integ.modin.binary.test_binary_op,test_binary_comparison_between_non_supported_types[gt-data0-s],AssertionError: exception type does not match with expected type ,failed -2805,tests.integ.modin.binary.test_binary_op,test_arithmetic_binary_ops_between_series_with_booleans_negative[rsub-rhs2-lhs0],Failed: DID NOT RAISE ,failed -2806,tests.integ.modin.binary.test_binary_op,test_binary_comparison_between_non_supported_types[gt-data1-s],AssertionError: exception type does not match with expected type ,failed -2807,tests.integ.modin.frame.test_head_tail,test_head_tail[None],AttributeError: 'DataFrame' object has no attribute 'ordered_dataframe',failed -2808,tests.integ.modin.crosstab.test_crosstab,test_normalize_margins_and_values[max1-index-False],AttributeError: can't set attribute,failed -2810,tests.integ.modin.binary.test_binary_op,test_binary_comparison_between_non_supported_types[gt-data2-s],AssertionError: exception type does not match with expected type ,failed -2813,tests.integ.modin.binary.test_binary_op,test_arithmetic_binary_ops_between_series_with_booleans_negative[mul-rhs0-lhs0],Failed: DID NOT RAISE ,failed -2814,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_empty_df[row_key1-col_key1-item1],AssertionError: cannot find the length of the indexer,failed -2815,tests.integ.modin.frame.test_head_tail,test_head_tail[0],AttributeError: 'DataFrame' object has no attribute 'ordered_dataframe',failed -2818,tests.integ.modin.frame.test_insert,test_insert_with_unique_and_duplicate_index_values[index_values7-other_index_values7-False],"AssertionError: DataFrame.index are different +2982,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_row_key_series_float_keys[row_pos5-col_pos5],"ValueError: +Location based indexing can only have [integer, integer slice (START point is +INCLUDED, END point is EXCLUDED), listlike of integers, boolean array] types.",failed +2983,tests.integ.modin.crosstab.test_crosstab,test_normalize_margins_and_values[sum1-index-True],AttributeError: can't set attribute,failed +2985,tests.integ.modin.binary.test_timedelta,test_numeric_dataframe_and_timedelta_list_like[ne],TypeError: Cannot do operation with improper dtypes,failed +2989,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_row_key_constant_float_keys_negative[1.2-na-0-na],AssertionError: exception type does not match with expected type ,failed +2995,tests.integ.modin.crosstab.test_crosstab,test_normalize_margins_and_values[sum1-index-False],AttributeError: can't set attribute,failed +2996,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_row_key_constant_float_keys_negative[0-na-2.5-na],AssertionError: exception type does not match with expected type ,failed +3000,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_row_key_constant_float_keys_negative[nan-na-2-na],AssertionError: exception type does not match with expected type ,failed +3005,tests.integ.modin.crosstab.test_crosstab,test_normalize_margins_and_values[sum1-columns-True],AttributeError: can't set attribute,failed +3007,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_row_key_constant_float_keys_negative[0-na-nan-na],AssertionError: exception type does not match with expected type ,failed +3011,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_row_key_constant_float_keys_negative[row_pos4-na-col_pos4-na],AssertionError: exception type does not match with expected type ,failed +3012,tests.integ.modin.frame.test_insert,test_insert_with_unique_and_duplicate_index_values[index_values7-other_index_values7-False],"AssertionError: DataFrame.index are different Attribute ""names"" are different [left]: [None] [right]: ['INDEX']",failed -2819,tests.integ.modin.binary.test_binary_op,test_binary_comparison_between_non_supported_types[gt-data3-s],AssertionError: exception type does not match with expected type ,failed -2821,tests.integ.modin.crosstab.test_crosstab,test_normalize_margins_and_values[max1-columns-True],AttributeError: can't set attribute,failed -2822,tests.integ.modin.binary.test_binary_op,test_arithmetic_binary_ops_between_series_with_booleans_negative[mul-rhs1-lhs0],Failed: DID NOT RAISE ,failed -2824,tests.integ.modin.binary.test_binary_op,test_binary_comparison_between_non_supported_types[gt-data4-1672560000.0],AssertionError: exception type does not match with expected type ,failed -2826,tests.integ.modin.frame.test_head_tail,test_head_tail[-1],AttributeError: 'DataFrame' object has no attribute 'ordered_dataframe',failed -2828,tests.integ.modin.binary.test_binary_op,test_binary_comparison_between_non_supported_types[ge-data0-s],AssertionError: exception type does not match with expected type ,failed -2830,tests.integ.modin.binary.test_binary_op,test_arithmetic_binary_ops_between_series_with_booleans_negative[mul-rhs2-lhs0],Failed: DID NOT RAISE ,failed -2833,tests.integ.modin.crosstab.test_crosstab,test_normalize_margins_and_values[max1-columns-False],AttributeError: can't set attribute,failed -2834,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_empty_df[row_key2-col_key2-item2],AssertionError: cannot find the length of the indexer,failed -2835,tests.integ.modin.frame.test_head_tail,test_head_tail[-10],AttributeError: 'DataFrame' object has no attribute 'ordered_dataframe',failed -2836,tests.integ.modin.binary.test_binary_op,test_binary_comparison_between_non_supported_types[ge-data1-s],AssertionError: exception type does not match with expected type ,failed -2839,tests.integ.modin.binary.test_binary_op,test_arithmetic_binary_ops_between_series_with_booleans_negative[rmul-rhs0-lhs0],Failed: DID NOT RAISE ,failed -2840,tests.integ.modin.binary.test_binary_op,test_binary_comparison_between_non_supported_types[ge-data2-s],AssertionError: exception type does not match with expected type ,failed -2843,tests.integ.modin.binary.test_binary_op,test_arithmetic_binary_ops_between_series_with_booleans_negative[rmul-rhs1-lhs0],Failed: DID NOT RAISE ,failed -2844,tests.integ.modin.frame.test_head_tail,test_head_tail[5],AttributeError: 'DataFrame' object has no attribute 'ordered_dataframe',failed -2845,tests.integ.modin.binary.test_binary_op,test_binary_comparison_between_non_supported_types[ge-data3-s],AssertionError: exception type does not match with expected type ,failed -2846,tests.integ.modin.crosstab.test_crosstab,test_normalize_margins_and_values[amax-0-True],AttributeError: can't set attribute,failed -2850,tests.integ.modin.binary.test_binary_op,test_arithmetic_binary_ops_between_series_with_booleans_negative[rmul-rhs2-lhs0],Failed: DID NOT RAISE ,failed -2851,tests.integ.modin.binary.test_binary_op,test_binary_comparison_between_non_supported_types[ge-data4-1672560000.0],AssertionError: exception type does not match with expected type ,failed -2852,tests.integ.modin.frame.test_head_tail,test_head_tail[10],AttributeError: 'DataFrame' object has no attribute 'ordered_dataframe',failed -2853,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_empty_df[row_key3-col_key3-item3],AssertionError: cannot find the length of the indexer,failed -2858,tests.integ.modin.binary.test_binary_op,test_binary_comparison_between_non_supported_types[lt-data0-s],AssertionError: exception type does not match with expected type ,failed -2861,tests.integ.modin.frame.test_head_tail,test_empty_dataframe[1],AttributeError: 'DataFrame' object has no attribute 'ordered_dataframe',failed -2862,tests.integ.modin.frame.test_insert,test_insert_with_unique_and_duplicate_index_values[index_values8-other_index_values8-True],ValueError: cannot reindex on an axis with duplicate labels,failed -2863,tests.integ.modin.binary.test_binary_op,test_binary_comparison_between_non_supported_types[lt-data1-s],AssertionError: exception type does not match with expected type ,failed -2867,tests.integ.modin.binary.test_binary_op,test_binary_comparison_between_non_supported_types[lt-data2-s],AssertionError: exception type does not match with expected type ,failed -2868,tests.integ.modin.frame.test_head_tail,test_empty_dataframe[None],AttributeError: 'DataFrame' object has no attribute 'ordered_dataframe',failed -2870,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_empty_df[row_key4-col_key4-item4],AssertionError: cannot find the length of the indexer,failed -2871,tests.integ.modin.binary.test_binary_op,test_binary_comparison_between_non_supported_types[lt-data3-s],AssertionError: exception type does not match with expected type ,failed -2875,tests.integ.modin.binary.test_binary_op,test_arithmetic_binary_ops_between_series_with_booleans_negative[truediv-rhs0-lhs0],ZeroDivisionError: division by zero,failed -2876,tests.integ.modin.crosstab.test_crosstab,test_normalize_margins_and_values[amax-0-False],AttributeError: can't set attribute,failed -2877,tests.integ.modin.binary.test_binary_op,test_binary_comparison_between_non_supported_types[lt-data4-1672560000.0],AssertionError: exception type does not match with expected type ,failed -2880,tests.integ.modin.binary.test_binary_op,test_arithmetic_binary_ops_between_series_with_booleans_negative[truediv-rhs1-lhs0],Failed: DID NOT RAISE ,failed -2884,tests.integ.modin.crosstab.test_crosstab,test_normalize_margins_and_values[amax-1-True],AttributeError: can't set attribute,failed -2885,tests.integ.modin.binary.test_binary_op,test_arithmetic_binary_ops_between_series_with_booleans_negative[truediv-rhs2-lhs0],Failed: DID NOT RAISE ,failed -2887,tests.integ.modin.frame.test_head_tail,test_empty_dataframe[0],AttributeError: 'DataFrame' object has no attribute 'ordered_dataframe',failed -2892,tests.integ.modin.crosstab.test_crosstab,test_normalize_margins_and_values[amax-1-False],AttributeError: can't set attribute,failed -2893,tests.integ.modin.frame.test_head_tail,test_empty_dataframe[-1],AttributeError: 'DataFrame' object has no attribute 'ordered_dataframe',failed -2895,tests.integ.modin.binary.test_binary_op,test_binary_comparison_between_non_supported_types[le-data0-s],AssertionError: exception type does not match with expected type ,failed -2899,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_empty_df[row_key5-col_key5-item5],AssertionError: cannot find the length of the indexer,failed -2901,tests.integ.modin.frame.test_head_tail,test_empty_dataframe[-10],AttributeError: 'DataFrame' object has no attribute 'ordered_dataframe',failed -2907,tests.integ.modin.binary.test_binary_op,test_binary_comparison_between_non_supported_types[le-data1-s],AssertionError: exception type does not match with expected type ,failed -2916,tests.integ.modin.crosstab.test_crosstab,test_normalize_margins_and_values[amax-index-True],AttributeError: can't set attribute,failed -2918,tests.integ.modin.frame.test_head_tail,test_empty_dataframe[5],AttributeError: 'DataFrame' object has no attribute 'ordered_dataframe',failed -2920,tests.integ.modin.binary.test_binary_op,test_binary_comparison_between_non_supported_types[le-data2-s],AssertionError: exception type does not match with expected type ,failed -2925,tests.integ.modin.frame.test_insert,test_insert_with_unique_and_duplicate_index_values[index_values9-other_index_values9-True],ValueError: cannot reindex on an axis with duplicate labels,failed -2933,tests.integ.modin.binary.test_binary_op,test_binary_comparison_between_non_supported_types[le-data3-s],AssertionError: exception type does not match with expected type ,failed -2934,tests.integ.modin.frame.test_head_tail,test_empty_dataframe[10],AttributeError: 'DataFrame' object has no attribute 'ordered_dataframe',failed -2936,tests.integ.modin.test_concat,test_concat_mixed_objs[1-inner],"AssertionError: DataFrame.columns are different +3017,tests.integ.modin.binary.test_timedelta,test_subtract_two_timestamps_timezones_disallowed[sub-pandas_lhs0-pandas_rhs0],"AssertionError: Regex pattern did not match. + Regex: 'Cannot\\ subtract\\ tz\\-naive\\ and\\ tz\\-aware\\ datetime\\-like\\ objects\\.' + Input: 'Cannot subtract tz-naive and tz-aware datetime-like objects'",failed +3018,tests.integ.modin.crosstab.test_crosstab,test_normalize_margins_and_values[sum1-columns-False],AttributeError: can't set attribute,failed +3020,tests.integ.modin.binary.test_binary_op,test_other_with_native_pandas_object_raises[rtruediv],ZeroDivisionError: division by zero,failed +3028,tests.integ.modin.binary.test_timedelta,test_subtract_two_timestamps_timezones_disallowed[rsub-pandas_lhs1-pandas_rhs1],"AssertionError: Regex pattern did not match. + Regex: 'Cannot\\ subtract\\ tz\\-naive\\ and\\ tz\\-aware\\ datetime\\-like\\ objects\\.' + Input: 'Cannot subtract tz-naive and tz-aware datetime-like objects'",failed +3033,tests.integ.modin.binary.test_binary_op,test_other_with_native_pandas_object_raises[floordiv],ZeroDivisionError: integer division or modulo by zero,failed +3034,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_row_key_constant_float_keys_negative[row_pos5-tuple-col_pos5-na],AssertionError: exception type does not match with expected type ,failed +3042,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_row_key_constant_float_keys_negative[row_pos6-series-col_pos6-na],AssertionError: exception type does not match with expected type ,failed +3045,tests.integ.modin.crosstab.test_crosstab,test_normalize_margins_and_values[sum2-0-True],AttributeError: can't set attribute,failed +3048,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_row_key_constant_float_keys_negative[row_pos7-na-col_pos7-na],AssertionError: exception type does not match with expected type ,failed +3052,tests.integ.modin.frame.test_insert,test_insert_with_unique_and_duplicate_index_values[index_values8-other_index_values8-True],ValueError: cannot reindex on an axis with duplicate labels,failed +3054,tests.integ.modin.binary.test_binary_op,test_other_with_native_pandas_object_raises[rfloordiv],ZeroDivisionError: integer division or modulo by zero,failed +3056,tests.integ.modin.crosstab.test_crosstab,test_normalize_margins_and_values[sum2-0-False],AttributeError: can't set attribute,failed +3060,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_row_key_constant_float_keys_negative[row_pos8-na-col_pos8-tuple],AssertionError: exception type does not match with expected type ,failed +3064,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_row_key_constant_float_keys_negative[row_pos9-na-col_pos9-series],AssertionError: exception type does not match with expected type ,failed +3068,tests.integ.modin.crosstab.test_crosstab,test_normalize_margins_and_values[sum2-1-True],AttributeError: can't set attribute,failed +3070,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_row_key_constant_float_keys_negative[row_pos10-na-col_pos10-na],AssertionError: exception type does not match with expected type ,failed +3075,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_row_key_constant_float_keys_negative[row_pos11-na-col_pos11-na],AssertionError: exception type does not match with expected type ,failed +3080,tests.integ.modin.crosstab.test_crosstab,test_normalize_margins_and_values[sum2-1-False],AttributeError: can't set attribute,failed +3081,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_row_key_constant_float_keys_negative[row_pos12-na-col_pos12-na],AssertionError: exception type does not match with expected type ,failed +3083,tests.integ.modin.binary.test_binary_op,test_other_with_native_pandas_object_raises[mod],ZeroDivisionError: integer division or modulo by zero,failed +3089,tests.integ.modin.crosstab.test_crosstab,test_normalize_margins_and_values[sum2-index-True],AttributeError: can't set attribute,failed +3090,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_mixed_types_fail[row_key0-col_key0-item0-expected_results0-False],"AssertionError: DataFrame.iloc[:, 0] (column name=""A"") are different -DataFrame.columns values are different (50.0 %) -[left]: Index([0, 0], dtype='int64') -[right]: RangeIndex(start=0, stop=2, step=1) -At positional index 1, first diff: 0 != 1",failed -2937,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_empty_df[row_key6-col_key6-item6],AssertionError: cannot find the length of the indexer,failed -2938,tests.integ.modin.binary.test_binary_op,test_binary_comparison_between_non_supported_types[le-data4-1672560000.0],AssertionError: exception type does not match with expected type ,failed -2939,tests.integ.modin.crosstab.test_crosstab,test_normalize_margins_and_values[amax-index-False],AttributeError: can't set attribute,failed -2940,tests.integ.modin.binary.test_binary_op,test_arithmetic_binary_ops_between_series_with_booleans_negative[rtruediv-rhs0-lhs0],ZeroDivisionError: division by zero,failed -2941,tests.integ.modin.binary.test_timedelta,test_string_series_with_timedelta_scalar[timedelta_scalar_positive0-sub],[XPASS(strict)] SNOW-1646604,failed -2942,tests.integ.modin.test_concat,test_concat_mixed_objs[1-outer],"AssertionError: DataFrame.columns are different +DataFrame.iloc[:, 0] (column name=""A"") values are different (100.0 %) +[index]: [0, 1, 2, 3] +[left]: [nan, 2.0, 3.0, 4.0] +[right]: [True, True, True, True]",failed +3095,tests.integ.modin.crosstab.test_crosstab,test_normalize_margins_and_values[sum2-index-False],AttributeError: can't set attribute,failed +3098,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_mixed_types_fail[row_key1-col_key1-item1-None-False],"AssertionError: DataFrame.iloc[:, 1] (column name=""B"") are different -DataFrame.columns values are different (50.0 %) -[left]: Index([0, 0], dtype='int64') -[right]: RangeIndex(start=0, stop=2, step=1) -At positional index 1, first diff: 0 != 1",failed -2944,tests.integ.modin.binary.test_timedelta,test_string_series_with_timedelta_scalar[timedelta_scalar_positive0-add],[XPASS(strict)] SNOW-1646604,failed -2947,tests.integ.modin.test_concat,test_concat_series_names_axis1[None-None-expected_columns0],"AssertionError: DataFrame.columns are different +DataFrame.iloc[:, 1] (column name=""B"") values are different (25.0 %) +[index]: [0, 1, 2, 3] +[left]: [True, , True, False] +[right]: [True, 0, True, False] +At positional index 1, first diff: != 0",failed +3102,tests.integ.modin.crosstab.test_crosstab,test_normalize_margins_and_values[sum2-columns-True],AttributeError: can't set attribute,failed +3106,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_mixed_types_fail[row_key2-col_key2-item2-expected_results2-False],"AssertionError: DataFrame.iloc[:, 1] (column name=""B"") are different -DataFrame.columns values are different (50.0 %) -[left]: Index([0, 0], dtype='int64') -[right]: RangeIndex(start=0, stop=2, step=1) -At positional index 1, first diff: 0 != 1",failed -2949,tests.integ.modin.binary.test_timedelta,test_string_series_with_timedelta_scalar[timedelta_scalar_positive0-div],[XPASS(strict)] SNOW-1646604,failed -2954,tests.integ.modin.binary.test_timedelta,test_string_series_with_timedelta_scalar[timedelta_scalar_positive0-truediv],[XPASS(strict)] SNOW-1646604,failed -2957,tests.integ.modin.crosstab.test_crosstab,test_normalize_margins_and_values[amax-columns-True],AttributeError: can't set attribute,failed -2958,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_none_df[row_key0-col_key0-item0],"AssertionError: DataFrame.iloc[:, 0] (column name=""0"") are different +DataFrame.iloc[:, 1] (column name=""B"") values are different (25.0 %) +[index]: [0, 1, 2, 3] +[left]: [True, , True, False] +[right]: [True, True, True, False]",failed +3112,tests.integ.modin.frame.test_insert,test_insert_with_unique_and_duplicate_index_values[index_values9-other_index_values9-True],ValueError: cannot reindex on an axis with duplicate labels,failed +3113,tests.integ.modin.binary.test_binary_op,test_other_with_native_pandas_object_raises[rmod],ZeroDivisionError: integer division or modulo by zero,failed +3115,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_mixed_types_fail[row_key3-col_key3-item3-None-True],Failed: DID NOT RAISE ,failed +3117,tests.integ.modin.binary.test_binary_op,test_other_with_native_pandas_object_raises[pow],Failed: DID NOT RAISE ,failed +3119,tests.integ.modin.binary.test_binary_op,test_other_with_native_pandas_object_raises[rpow],Failed: DID NOT RAISE ,failed +3121,tests.integ.modin.binary.test_binary_op,test_other_with_native_pandas_object_raises[__or__],Failed: DID NOT RAISE ,failed +3122,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_mixed_types_fail[row_key4-col_key4-item4-None-True],Failed: DID NOT RAISE ,failed +3125,tests.integ.modin.binary.test_binary_op,test_other_with_native_pandas_object_raises[__ror__],Failed: DID NOT RAISE ,failed +3126,tests.integ.modin.crosstab.test_crosstab,test_normalize_margins_and_values[sum2-columns-False],AttributeError: can't set attribute,failed +3128,tests.integ.modin.binary.test_binary_op,test_other_with_native_pandas_object_raises[__and__],Failed: DID NOT RAISE ,failed +3130,tests.integ.modin.binary.test_binary_op,test_other_with_native_pandas_object_raises[__rand__],Failed: DID NOT RAISE ,failed +3132,tests.integ.modin.binary.test_binary_op,test_other_with_native_pandas_object_raises[add],Failed: DID NOT RAISE ,failed +3133,tests.integ.modin.crosstab.test_crosstab,test_margins_and_values[median0-True],AttributeError: can't set attribute,failed +3135,tests.integ.modin.binary.test_binary_op,test_other_with_native_pandas_object_raises[radd],Failed: DID NOT RAISE ,failed +3138,tests.integ.modin.binary.test_binary_op,test_other_with_native_pandas_object_raises[sub],Failed: DID NOT RAISE ,failed +3139,tests.integ.modin.crosstab.test_crosstab,test_margins_and_values[median0-False],AttributeError: can't set attribute,failed +3140,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_mixed_types_fail[row_key5-col_key5-item5-expected_results5-False],ValueError: Length of values (3) does not match length of index (4),failed +3142,tests.integ.modin.binary.test_binary_op,test_other_with_native_pandas_object_raises[rsub],Failed: DID NOT RAISE ,failed +3144,tests.integ.modin.binary.test_binary_op,test_other_with_native_pandas_object_raises[mul],Failed: DID NOT RAISE ,failed +3147,tests.integ.modin.binary.test_binary_op,test_other_with_native_pandas_object_raises[rmul],Failed: DID NOT RAISE ,failed +3148,tests.integ.modin.crosstab.test_crosstab,test_margins_and_values[median1-True],AttributeError: can't set attribute,failed +3150,tests.integ.modin.frame.test_insert,test_insert_with_unique_and_duplicate_index_values[index_values10-other_index_values10-True],ValueError: cannot reindex on an axis with duplicate labels,failed +3151,tests.integ.modin.binary.test_binary_op,test_other_with_native_pandas_object_raises[eq],Failed: DID NOT RAISE ,failed +3154,tests.integ.modin.binary.test_binary_op,test_other_with_native_pandas_object_raises[ne],Failed: DID NOT RAISE ,failed +3156,tests.integ.modin.crosstab.test_crosstab,test_margins_and_values[median1-False],AttributeError: can't set attribute,failed +3162,tests.integ.modin.crosstab.test_crosstab,test_margins_and_values[count-True],AttributeError: can't set attribute,failed +3167,tests.integ.modin.crosstab.test_crosstab,test_margins_and_values[count-False],AttributeError: can't set attribute,failed +3172,tests.integ.modin.crosstab.test_crosstab,test_margins_and_values[mean0-True],AttributeError: can't set attribute,failed +3176,tests.integ.modin.binary.test_binary_op,test_other_with_native_pandas_object_raises[gt],"AssertionError: Regex pattern did not match. + Regex: 'Please convert this to Snowpark pandas objects' + Input: ""'>' not supported between instances of 'NoneType' and 'NoneType'""",failed +3177,tests.integ.modin.frame.test_head_tail,test_head_tail[1],AttributeError: 'DataFrame' object has no attribute 'ordered_dataframe',failed +3179,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_mixed_types_fail[row_key7-col_key7-item7-expected_results7-False],ValueError: Length of values (2) does not match length of index (4),failed +3182,tests.integ.modin.frame.test_head_tail,test_head_tail[None],AttributeError: 'DataFrame' object has no attribute 'ordered_dataframe',failed +3184,tests.integ.modin.binary.test_binary_op,test_other_with_native_pandas_object_raises[lt],"AssertionError: Regex pattern did not match. + Regex: 'Please convert this to Snowpark pandas objects' + Input: ""'<' not supported between instances of 'NoneType' and 'NoneType'""",failed +3185,tests.integ.modin.frame.test_head_tail,test_head_tail[0],AttributeError: 'DataFrame' object has no attribute 'ordered_dataframe',failed +3186,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_mixed_types_fail[row_key8-col_key8-item8-expected_results8-False],"AssertionError: DataFrame.iloc[:, 3] (column name=""D"") are different -DataFrame.iloc[:, 0] (column name=""0"") values are different (100.0 %) -[index]: [0, 1] -[left]: [11, 33] -[right]: [33, 11]",failed -2959,tests.integ.modin.binary.test_timedelta,test_string_series_with_timedelta_scalar[timedelta_scalar_positive0-eq],[XPASS(strict)] SNOW-1646604,failed -2961,tests.integ.modin.test_concat,test_concat_series_names_axis0[foo-None-None],AttributeError: 'DataFrame' object has no attribute 'dtype'. Did you mean: 'dtypes'?,failed -2962,tests.integ.modin.binary.test_timedelta,test_string_series_with_timedelta_scalar[timedelta_scalar_positive0-ne],[XPASS(strict)] SNOW-1646604,failed -2964,tests.integ.modin.binary.test_binary_op,test_arithmetic_binary_ops_between_series_with_booleans_negative[rtruediv-rhs1-lhs0],ZeroDivisionError: float division by zero,failed -2965,tests.integ.modin.binary.test_timedelta,test_string_series_with_timedelta_scalar[timedelta_scalar_positive1-sub],[XPASS(strict)] SNOW-1646604,failed -2968,tests.integ.modin.test_concat,test_concat_series_names_axis0[None-bar-None],AttributeError: 'DataFrame' object has no attribute 'dtype'. Did you mean: 'dtypes'?,failed -2969,tests.integ.modin.frame.test_insert,test_insert_with_unique_and_duplicate_index_values[index_values10-other_index_values10-True],ValueError: cannot reindex on an axis with duplicate labels,failed -2970,tests.integ.modin.binary.test_timedelta,test_string_series_with_timedelta_scalar[timedelta_scalar_positive1-add],[XPASS(strict)] SNOW-1646604,failed -2972,tests.integ.modin.crosstab.test_crosstab,test_normalize_margins_and_values[amax-columns-False],AttributeError: can't set attribute,failed -2973,tests.integ.modin.binary.test_timedelta,test_string_series_with_timedelta_scalar[timedelta_scalar_positive1-div],[XPASS(strict)] SNOW-1646604,failed -2974,tests.integ.modin.test_concat,test_concat_series_names_axis0[foo-bar-None],AttributeError: 'DataFrame' object has no attribute 'dtype'. Did you mean: 'dtypes'?,failed -2977,tests.integ.modin.binary.test_timedelta,test_string_series_with_timedelta_scalar[timedelta_scalar_positive1-truediv],[XPASS(strict)] SNOW-1646604,failed -2979,tests.integ.modin.binary.test_timedelta,test_string_series_with_timedelta_scalar[timedelta_scalar_positive1-eq],[XPASS(strict)] SNOW-1646604,failed -2983,tests.integ.modin.binary.test_timedelta,test_string_series_with_timedelta_scalar[timedelta_scalar_positive1-ne],[XPASS(strict)] SNOW-1646604,failed -2984,tests.integ.modin.test_concat,test_concat_native_object_negative[obj0],"AssertionError: Regex pattern did not match. - Regex: "" is not supported as 'value' argument. Please convert this to Snowpark pandas objects by calling modin.pandas.Series\\(\\)/DataFrame\\(\\)"" - Input: 'first argument must be an iterable of pandas objects, you passed an object of type ""DataFrame""'",failed -2985,tests.integ.modin.binary.test_timedelta,test_string_series_with_timedelta_scalar[timedelta_scalar_positive2-sub],[XPASS(strict)] SNOW-1646604,failed -2986,tests.integ.modin.test_concat,test_concat_native_object_negative[obj1],"AssertionError: Regex pattern did not match. - Regex: "" is not supported as 'value' argument. Please convert this to Snowpark pandas objects by calling modin.pandas.Series\\(\\)/DataFrame\\(\\)"" - Input: 'first argument must be an iterable of pandas objects, you passed an object of type ""Series""'",failed -2987,tests.integ.modin.test_concat,test_concat_invalid_type_negative,AssertionError: exception type does not match with expected type ,failed -2989,tests.integ.modin.binary.test_timedelta,test_string_series_with_timedelta_scalar[timedelta_scalar_positive2-add],[XPASS(strict)] SNOW-1646604,failed -2995,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_none_df[row_key1-col_key1-item1],ValueError: Length of values (1) does not match length of index (2),failed -2997,tests.integ.modin.binary.test_timedelta,test_string_series_with_timedelta_scalar[timedelta_scalar_positive2-div],[XPASS(strict)] SNOW-1646604,failed -3001,tests.integ.modin.binary.test_binary_op,test_arithmetic_binary_ops_between_series_with_booleans_negative[rtruediv-rhs2-lhs0],ZeroDivisionError: float division by zero,failed -3002,tests.integ.modin.binary.test_binary_op,test_binary_logic_operations_between_series_and_list_like[index-__or__],"ValueError: Unable to coerce to Series, length must be 1: given 6",failed -3003,tests.integ.modin.binary.test_timedelta,test_string_series_with_timedelta_scalar[timedelta_scalar_positive2-truediv],[XPASS(strict)] SNOW-1646604,failed -3004,tests.integ.modin.test_concat,test_concat_multiindex_columns_axis1[columns19-columns29-expected_cols9],"AssertionError: Index are different +DataFrame.iloc[:, 3] (column name=""D"") values are different (25.0 %) +[index]: [0, 1, 2, 3] +[left]: [a, b, False, d] +[right]: [a, b, false, d] +At positional index 2, first diff: False != false",failed +3190,tests.integ.modin.frame.test_head_tail,test_head_tail[-1],AttributeError: 'DataFrame' object has no attribute 'ordered_dataframe',failed +3192,tests.integ.modin.crosstab.test_crosstab,test_margins_and_values[mean0-False],AttributeError: can't set attribute,failed +3193,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_mixed_types_fail[row_key9-col_key9-item9-None-True],Failed: DID NOT RAISE ,failed +3195,tests.integ.modin.binary.test_binary_op,test_other_with_native_pandas_object_raises[ge],"AssertionError: Regex pattern did not match. + Regex: 'Please convert this to Snowpark pandas objects' + Input: ""'>=' not supported between instances of 'NoneType' and 'NoneType'""",failed +3196,tests.integ.modin.frame.test_head_tail,test_head_tail[-10],AttributeError: 'DataFrame' object has no attribute 'ordered_dataframe',failed +3197,tests.integ.modin.frame.test_insert,test_insert_with_unique_and_duplicate_index_values[index_values11-other_index_values11-True],ValueError: cannot reindex on an axis with duplicate labels,failed +3199,tests.integ.modin.frame.test_apply,test_with_duplicates_negative,ValueError: cannot reindex on an axis with duplicate labels,failed +3201,tests.integ.modin.frame.test_head_tail,test_head_tail[5],AttributeError: 'DataFrame' object has no attribute 'ordered_dataframe',failed +3202,tests.integ.modin.crosstab.test_crosstab,test_margins_and_values[mean1-True],AttributeError: can't set attribute,failed +3205,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_mixed_types_fail[row_key10-col_key10-item10-expected_results10-False],"AssertionError: DataFrame.iloc[:, 1] (column name=""B"") are different -Index classes are different -[left]: MultiIndex([(1, 2), - (1, 2)], - ) -[right]: Index([(1, 2), (1, 2, 3)], dtype='object')",failed -3007,tests.integ.modin.binary.test_timedelta,test_string_series_with_timedelta_scalar[timedelta_scalar_positive2-eq],[XPASS(strict)] SNOW-1646604,failed -3008,tests.integ.modin.test_concat,test_concat_multiindex_columns_axis1[columns112-columns212-expected_cols12],"AssertionError: Index are different - -Index classes are different -[left]: MultiIndex([(1, 2), - (1, 2)], - ) -[right]: Index([(1, 2), (1, 2, 3)], dtype='object')",failed -3011,tests.integ.modin.test_concat,test_concat_multiindex_row_labels_axis0[index11-index21-expected_index1-2],"assert [1, (1, 2)] == [1, [1, 2]] - At index 1 diff: (1, 2) != [1, 2] - Full diff: - - [1, [1, 2]] - ? ^ - - + [1, (1, 2)] - ? ^ +",failed -3013,tests.integ.modin.test_concat,test_concat_multiindex_row_labels_axis0[index12-index22-expected_index2-2],"assert [1, (1,)] == [1, 1] - At index 1 diff: (1,) != 1 - Full diff: - - [1, 1] - + [1, (1,)] - ? + ++",failed -3014,tests.integ.modin.crosstab.test_crosstab,test_normalize_margins_and_values[sum0-0-True],AttributeError: can't set attribute,failed -3015,tests.integ.modin.test_concat,test_concat_multiindex_row_labels_axis0[index13-index23-expected_index3-3],"assert [1, (1, 2)] == [1, [1, 2]] - At index 1 diff: (1, 2) != [1, 2] - Full diff: - - [1, [1, 2]] - ? ^ - - + [1, (1, 2)] - ? ^ +",failed -3016,tests.integ.modin.test_concat,test_concat_multiindex_row_labels_axis0[index14-index24-expected_index4-2],"assert [(1, 2), (1,)] == [[1, 2], 1] - At index 0 diff: (1, 2) != [1, 2] - Full diff: - - [[1, 2], 1] - + [(1, 2), (1,)]",failed -3018,tests.integ.modin.test_concat,test_concat_multiindex_row_labels_axis0[index15-index25-expected_index5-3],"assert [(1, 2), (1, 2)] == [[1, 2], [1, 2]] - At index 0 diff: (1, 2) != [1, 2] - Full diff: - - [[1, 2], [1, 2]] - ? ^ ^ ^ - - + [(1, 2), (1, 2)] - ? ^ ^ ^ +",failed -3019,tests.integ.modin.test_concat,test_concat_multiindex_row_labels_axis0[index16-index26-expected_index6-4],"assert [(1, 2), (1, 2, 3)] == [[1, 2], [1, 2, 3]] - At index 0 diff: (1, 2) != [1, 2] - Full diff: - - [[1, 2], [1, 2, 3]] - ? ^ ^ ^ - - + [(1, 2), (1, 2, 3)] - ? ^ ^ ^ +",failed -3021,tests.integ.modin.binary.test_binary_op,test_binary_logic_operations_between_series_and_list_like[index-__ror__],"ValueError: Unable to coerce to Series, length must be 1: given 6",failed -3022,tests.integ.modin.test_concat,test_concat_multiindex_row_labels_axis0[index17-index27-expected_index7-3],"assert [(1, 2), 1] == [[1, 2], 1] - At index 0 diff: (1, 2) != [1, 2] - Full diff: - - [[1, 2], 1] - ? ^ ^ - + [(1, 2), 1] - ? ^ ^",failed -3023,tests.integ.modin.test_concat,test_concat_multiindex_row_labels_axis0[index18-index28-expected_index8-3],"AssertionError: assert True == False - + where True = isinstance(MultiIndex([(1, 2),\n (1, 2)],\n ), MultiIndex) - + and False = isinstance(Index([(1, 2), (1, 2)], dtype='object'), MultiIndex)",failed -3026,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_none_df[row_key3-col_key3-item3],"AssertionError: DataFrame.iloc[:, 1] (column name=""1"") are different - -DataFrame.iloc[:, 1] (column name=""1"") values are different (50.0 %) -[index]: [0, 1] -[left]: [, ] -[right]: [None, 99] -At positional index 1, first diff: != 99",failed -3027,tests.integ.modin.crosstab.test_crosstab,test_normalize_margins_and_values[sum0-0-False],AttributeError: can't set attribute,failed -3028,tests.integ.modin.test_concat,test_concat_multiindex_row_labels_axis0[index19-index29-expected_index9-3],"AssertionError: assert True == False - + where True = isinstance(MultiIndex([(1, 2),\n (1, 2)],\n ), MultiIndex) - + and False = isinstance(Index([(1, 2), (1, 2, 3)], dtype='object'), MultiIndex)",failed -3029,tests.integ.modin.test_concat,test_concat_multiindex_row_labels_axis0[index110-index210-expected_index10-3],"assert [(1, 2), (1,)] == [[1, 2], 1] - At index 0 diff: (1, 2) != [1, 2] - Full diff: - - [[1, 2], 1] - + [(1, 2), (1,)]",failed -3032,tests.integ.modin.binary.test_timedelta,test_string_series_with_timedelta_scalar[timedelta_scalar_positive2-ne],[XPASS(strict)] SNOW-1646604,failed -3033,tests.integ.modin.test_concat,test_concat_multiindex_row_labels_axis0[index112-index212-expected_index12-5],"AssertionError: assert True == False - + where True = isinstance(MultiIndex([(1, 2),\n (1, 2)],\n ), MultiIndex) - + and False = isinstance(Index([(1, 2), (1, 2, 3)], dtype='object'), MultiIndex)",failed -3036,tests.integ.modin.binary.test_timedelta,test_string_series_with_timedelta_scalar[timedelta_scalar_positive3-sub],[XPASS(strict)] SNOW-1646604,failed -3037,tests.integ.modin.test_concat,test_concat_multiindex_row_labels_axis1[index11-index21-expected_index1-3],"assert [1, (1,)] == [1] - Left contains one more item: (1,) - Full diff: - - [1] - + [1, (1,)]",failed -3039,tests.integ.modin.binary.test_timedelta,test_string_series_with_timedelta_scalar[timedelta_scalar_positive3-add],[XPASS(strict)] SNOW-1646604,failed -3040,tests.integ.modin.crosstab.test_crosstab,test_normalize_margins_and_values[sum0-1-True],AttributeError: can't set attribute,failed -3043,tests.integ.modin.binary.test_timedelta,test_string_series_with_timedelta_scalar[timedelta_scalar_positive3-div],[XPASS(strict)] SNOW-1646604,failed -3044,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_types_df[row_key0-col_key0-item0],"AssertionError: DataFrame.iloc[:, 0] (column name=""A"") are different - -DataFrame.iloc[:, 0] (column name=""A"") values are different (25.0 %) -[index]: [0, 1, 2, 3] -[left]: [nan, 2.0, 3.0, 4.0] -[right]: [99, 2, 3, 4]",failed -3046,tests.integ.modin.frame.test_insert,test_insert_with_unique_and_duplicate_index_values[index_values11-other_index_values11-True],ValueError: cannot reindex on an axis with duplicate labels,failed -3047,tests.integ.modin.binary.test_timedelta,test_string_series_with_timedelta_scalar[timedelta_scalar_positive3-truediv],[XPASS(strict)] SNOW-1646604,failed -3049,tests.integ.modin.binary.test_binary_op,test_arithmetic_binary_ops_between_series_with_booleans_negative[floordiv-rhs0-lhs0],ZeroDivisionError: integer division or modulo by zero,failed -3050,tests.integ.modin.binary.test_timedelta,test_string_series_with_timedelta_scalar[timedelta_scalar_positive3-eq],[XPASS(strict)] SNOW-1646604,failed -3053,tests.integ.modin.binary.test_timedelta,test_string_series_with_timedelta_scalar[timedelta_scalar_positive3-ne],[XPASS(strict)] SNOW-1646604,failed -3054,tests.integ.modin.crosstab.test_crosstab,test_normalize_margins_and_values[sum0-1-False],AttributeError: can't set attribute,failed -3057,tests.integ.modin.test_concat,test_concat_multiindex_row_labels_axis1[index12-index22-expected_index2-4],"assert [(1, 2)] == [[1, 2]] - At index 0 diff: (1, 2) != [1, 2] - Full diff: - - [[1, 2]] - ? ^ - - + [(1, 2)] - ? ^ +",failed -3058,tests.integ.modin.binary.test_timedelta,test_string_series_with_timedelta_scalar[timedelta_scalar_positive4-sub],[XPASS(strict)] SNOW-1646604,failed -3060,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_types_df[row_key1-col_key1-item1],"AssertionError: DataFrame.iloc[:, 1] (column name=""B"") are different - -DataFrame.iloc[:, 1] (column name=""B"") values are different (25.0 %) -[index]: [0, 1, 2, 3] -[left]: [True, , True, False] -[right]: [True, True, True, False]",failed -3061,tests.integ.modin.binary.test_timedelta,test_string_series_with_timedelta_scalar[timedelta_scalar_positive4-add],[XPASS(strict)] SNOW-1646604,failed -3063,tests.integ.modin.binary.test_timedelta,test_string_series_with_timedelta_scalar[timedelta_scalar_positive4-div],[XPASS(strict)] SNOW-1646604,failed -3064,tests.integ.modin.binary.test_binary_op,test_binary_logic_operations_between_series_and_list_like[index-__and__],"ValueError: Unable to coerce to Series, length must be 1: given 6",failed -3066,tests.integ.modin.crosstab.test_crosstab,test_normalize_margins_and_values[sum0-index-True],AttributeError: can't set attribute,failed -3067,tests.integ.modin.binary.test_timedelta,test_string_series_with_timedelta_scalar[timedelta_scalar_positive4-truediv],[XPASS(strict)] SNOW-1646604,failed -3070,tests.integ.modin.binary.test_timedelta,test_string_series_with_timedelta_scalar[timedelta_scalar_positive4-eq],[XPASS(strict)] SNOW-1646604,failed -3072,tests.integ.modin.test_concat,test_concat_multiindex_row_labels_axis1[index13-index23-expected_index3-5],AssertionError: Length of new_levels (3) must be <= self.nlevels (2),failed -3073,tests.integ.modin.test_concat,test_concat_multiindex_row_labels_axis1[index14-index24-expected_index4-4],"AssertionError: assert True == False - + where True = isinstance(MultiIndex([(1, 2)],\n ), MultiIndex) - + and False = isinstance(Index([(1, 2)], dtype='object'), MultiIndex)",failed -3074,tests.integ.modin.binary.test_timedelta,test_string_series_with_timedelta_scalar[timedelta_scalar_positive4-ne],[XPASS(strict)] SNOW-1646604,failed -3075,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_types_df[row_key2-col_key2-item2],"AssertionError: DataFrame.iloc[:, 2] (column name=""C"") are different - -DataFrame.iloc[:, 2] (column name=""C"") values are different (25.0 %) -[index]: [0, 1, 2, 3] -[left]: [1.5, 3.14159, nan, 123.45] -[right]: [1.5, 3.14159, 101.101, 123.45] -At positional index 2, first diff: nan != 101.101",failed -3077,tests.integ.modin.binary.test_binary_op,test_arithmetic_binary_ops_between_series_with_booleans_negative[floordiv-rhs1-lhs0],TypeError: '<' not supported between instances of 'NoneType' and 'int',failed -3078,tests.integ.modin.test_concat,test_concat_multiindex_row_labels_axis1[index15-index25-expected_index5-4],"AssertionError: assert True == False - + where True = isinstance(MultiIndex([(1, 2)],\n ), MultiIndex) - + and False = isinstance(Index([(1, 2), (1, 2, 3)], dtype='object'), MultiIndex)",failed -3080,tests.integ.modin.binary.test_timedelta,test_string_series_with_timedelta_scalar[timedelta_scalar_positive5-sub],[XPASS(strict)] SNOW-1646604,failed -3081,tests.integ.modin.crosstab.test_crosstab,test_normalize_margins_and_values[sum0-index-False],AttributeError: can't set attribute,failed -3083,tests.integ.modin.binary.test_timedelta,test_string_series_with_timedelta_scalar[timedelta_scalar_positive5-add],[XPASS(strict)] SNOW-1646604,failed -3087,tests.integ.modin.binary.test_timedelta,test_string_series_with_timedelta_scalar[timedelta_scalar_positive5-div],[XPASS(strict)] SNOW-1646604,failed -3088,tests.integ.modin.binary.test_binary_op,test_binary_logic_operations_between_series_and_list_like[index-__rand__],"ValueError: Unable to coerce to Series, length must be 1: given 6",failed -3090,tests.integ.modin.binary.test_timedelta,test_string_series_with_timedelta_scalar[timedelta_scalar_positive5-truediv],[XPASS(strict)] SNOW-1646604,failed -3091,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_types_df[row_key3-col_key3-item3],TypeError: boolean value of NA is ambiguous,failed -3092,tests.integ.modin.test_concat,test_concat_multiindex_row_labels_axis1[index17-index27-expected_index7-6],AssertionError: Length of new_levels (3) must be <= self.nlevels (2),failed -3093,tests.integ.modin.crosstab.test_crosstab,test_normalize_margins_and_values[sum0-columns-True],AttributeError: can't set attribute,failed -3095,tests.integ.modin.binary.test_timedelta,test_string_series_with_timedelta_scalar[timedelta_scalar_positive5-eq],[XPASS(strict)] SNOW-1646604,failed -3096,tests.integ.modin.test_concat,test_concat_multiindex_row_labels_axis1_negative[index10-index20],Failed: DID NOT RAISE ,failed -3097,tests.integ.modin.test_concat,test_concat_multiindex_row_labels_axis1_negative[index11-index21],Failed: DID NOT RAISE ,failed -3099,tests.integ.modin.binary.test_timedelta,test_string_series_with_timedelta_scalar[timedelta_scalar_positive5-ne],[XPASS(strict)] SNOW-1646604,failed -3102,tests.integ.modin.binary.test_timedelta,test_string_series_with_timedelta_scalar[timedelta_scalar_positive6-sub],[XPASS(strict)] SNOW-1646604,failed -3105,tests.integ.modin.binary.test_timedelta,test_string_series_with_timedelta_scalar[timedelta_scalar_positive6-add],[XPASS(strict)] SNOW-1646604,failed -3106,tests.integ.modin.binary.test_binary_op,test_arithmetic_binary_ops_between_series_with_booleans_negative[floordiv-rhs2-lhs0],AttributeError: 'bool' object has no attribute 'any',failed -3108,tests.integ.modin.binary.test_timedelta,test_string_series_with_timedelta_scalar[timedelta_scalar_positive6-div],[XPASS(strict)] SNOW-1646604,failed -3109,tests.integ.modin.binary.test_binary_op,test_binary_logic_operations_between_series_and_list_like[index_with_name-__or__],"ValueError: Unable to coerce to Series, length must be 1: given 6",failed -3112,tests.integ.modin.test_concat,test_concat_multiindex_row_labels_axis1_negative[index12-index22],IndexError: tuple index out of range,failed -3115,tests.integ.modin.binary.test_timedelta,test_string_series_with_timedelta_scalar[timedelta_scalar_positive6-truediv],[XPASS(strict)] SNOW-1646604,failed -3119,tests.integ.modin.binary.test_timedelta,test_string_series_with_timedelta_scalar[timedelta_scalar_positive6-eq],[XPASS(strict)] SNOW-1646604,failed -3122,tests.integ.modin.binary.test_timedelta,test_string_series_with_timedelta_scalar[timedelta_scalar_positive6-ne],[XPASS(strict)] SNOW-1646604,failed -3125,tests.integ.modin.binary.test_timedelta,test_string_series_with_timedelta_scalar[timedelta_scalar_positive7-sub],[XPASS(strict)] SNOW-1646604,failed -3128,tests.integ.modin.crosstab.test_crosstab,test_normalize_margins_and_values[sum0-columns-False],AttributeError: can't set attribute,failed -3131,tests.integ.modin.binary.test_timedelta,test_string_series_with_timedelta_scalar[timedelta_scalar_positive7-add],[XPASS(strict)] SNOW-1646604,failed -3135,tests.integ.modin.binary.test_timedelta,test_string_series_with_timedelta_scalar[timedelta_scalar_positive7-div],[XPASS(strict)] SNOW-1646604,failed -3138,tests.integ.modin.binary.test_timedelta,test_string_series_with_timedelta_scalar[timedelta_scalar_positive7-truediv],[XPASS(strict)] SNOW-1646604,failed -3140,tests.integ.modin.crosstab.test_crosstab,test_normalize_margins_and_values[sum1-0-True],AttributeError: can't set attribute,failed -3145,tests.integ.modin.binary.test_timedelta,test_string_series_with_timedelta_scalar[timedelta_scalar_positive7-eq],[XPASS(strict)] SNOW-1646604,failed -3147,tests.integ.modin.binary.test_timedelta,test_string_series_with_timedelta_scalar[timedelta_scalar_positive7-ne],[XPASS(strict)] SNOW-1646604,failed -3149,tests.integ.modin.test_concat,test_concat_multiindex_row_labels_axis1_negative[index13-index23],"NotImplementedError: Can only union MultiIndex with MultiIndex or Index of tuples, try mi.to_flat_index().union(other) instead.",failed -3151,tests.integ.modin.binary.test_timedelta,test_string_series_with_timedelta_scalar[timedelta_scalar_positive8-sub],[XPASS(strict)] SNOW-1646604,failed -3154,tests.integ.modin.binary.test_timedelta,test_string_series_with_timedelta_scalar[timedelta_scalar_positive8-add],[XPASS(strict)] SNOW-1646604,failed -3159,tests.integ.modin.crosstab.test_crosstab,test_normalize_margins_and_values[sum1-0-False],AttributeError: can't set attribute,failed -3160,tests.integ.modin.binary.test_binary_op,test_binary_logic_operations_between_series_and_list_like[index_with_name-__ror__],"ValueError: Unable to coerce to Series, length must be 1: given 6",failed -3162,tests.integ.modin.binary.test_timedelta,test_string_series_with_timedelta_scalar[timedelta_scalar_positive8-div],[XPASS(strict)] SNOW-1646604,failed -3165,tests.integ.modin.binary.test_binary_op,test_arithmetic_binary_ops_between_series_with_booleans_negative[rfloordiv-rhs0-lhs0],ZeroDivisionError: integer division or modulo by zero,failed -3166,tests.integ.modin.binary.test_timedelta,test_string_series_with_timedelta_scalar[timedelta_scalar_positive8-truediv],[XPASS(strict)] SNOW-1646604,failed -3169,tests.integ.modin.binary.test_timedelta,test_string_series_with_timedelta_scalar[timedelta_scalar_positive8-eq],[XPASS(strict)] SNOW-1646604,failed -3173,tests.integ.modin.binary.test_timedelta,test_string_series_with_timedelta_scalar[timedelta_scalar_positive8-ne],[XPASS(strict)] SNOW-1646604,failed -3174,tests.integ.modin.crosstab.test_crosstab,test_normalize_margins_and_values[sum1-1-True],AttributeError: can't set attribute,failed -3178,tests.integ.modin.test_concat,test_concat_multiindex_row_labels_axis1_negative[index14-index24],AssertionError: Length of new_levels (2) must be <= self.nlevels (1),failed -3179,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_types_df[row_key9-col_key9-item9],"AssertionError: DataFrame.iloc[:, 0] (column name=""A"") are different - -DataFrame.iloc[:, 0] (column name=""A"") values are different (100.0 %) -[index]: [0, 1, 2, 3] -[left]: [nan, nan, nan, nan] -[right]: [99, 99, 99, 99]",failed -3193,tests.integ.modin.crosstab.test_crosstab,test_normalize_margins_and_values[sum1-1-False],AttributeError: can't set attribute,failed -3197,tests.integ.modin.binary.test_binary_op,test_binary_logic_operations_between_series_and_list_like[index_with_name-__and__],"ValueError: Unable to coerce to Series, length must be 1: given 6",failed -3198,tests.integ.modin.binary.test_binary_op,test_arithmetic_binary_ops_between_series_with_booleans_negative[rfloordiv-rhs1-lhs0],ZeroDivisionError: float floor division by zero,failed -3204,tests.integ.modin.test_concat,test_concat_multiindex_columns_axis0[columns14-columns24-expected_cols4],IndexError: tuple index out of range,failed -3206,tests.integ.modin.frame.test_iat,test_iat_neg[0-IndexingError],Failed: DID NOT RAISE ,failed -3211,tests.integ.modin.frame.test_iat,test_iat_neg[key1-IndexingError],Failed: DID NOT RAISE ,failed -3212,tests.integ.modin.crosstab.test_crosstab,test_normalize_margins_and_values[sum1-index-True],AttributeError: can't set attribute,failed -3216,tests.integ.modin.frame.test_iat,test_iat_neg[key2-IndexingError],"TypeError: int() argument must be a string, a bytes-like object or a real number, not 'dict'",failed -3222,tests.integ.modin.test_concat,test_concat_multiindex_columns_axis0[columns16-columns26-expected_cols6],AssertionError: Length of new_levels (3) must be <= self.nlevels (2),failed -3223,tests.integ.modin.binary.test_binary_op,test_binary_logic_operations_between_series_and_list_like[index_with_name-__rand__],"ValueError: Unable to coerce to Series, length must be 1: given 6",failed -3224,tests.integ.modin.frame.test_iat,test_iat_neg[a-IndexingError],"ValueError: -Location based indexing can only have [integer, integer slice (START point is -INCLUDED, END point is EXCLUDED), listlike of integers, boolean array] types.",failed -3225,tests.integ.modin.binary.test_binary_op,test_arithmetic_binary_ops_between_series_with_booleans_negative[rfloordiv-rhs2-lhs0],ZeroDivisionError: float floor division by zero,failed -3227,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_types_df[row_key10-col_key10-item10],"AssertionError: DataFrame.iloc[:, 1] (column name=""B"") are different - -DataFrame.iloc[:, 1] (column name=""B"") values are different (50.0 %) -[index]: [0, 1, 2, 3] -[left]: [True, , , False] -[right]: [True, True, False, False]",failed -3229,tests.integ.modin.frame.test_iat,test_iat_neg[key4-IndexingError],Failed: DID NOT RAISE ,failed -3233,tests.integ.modin.frame.test_iat,test_iat_neg[key5-IndexingError],Failed: DID NOT RAISE ,failed -3237,tests.integ.modin.test_concat,test_concat_multiindex_columns_axis0[columns17-columns27-expected_cols7],"NotImplementedError: Can only union MultiIndex with MultiIndex or Index of tuples, try mi.to_flat_index().union(other) instead.",failed -3239,tests.integ.modin.binary.test_binary_op,test_binary_logic_operations_between_df_and_list_like[list-__or__],"ValueError: Unable to coerce to Series, length must be 2: given 3",failed -3241,tests.integ.modin.frame.test_iat,test_iat_neg[key6-IndexingError],"TypeError: int() argument must be a string, a bytes-like object or a real number, not 'dict'",failed -3245,tests.integ.modin.crosstab.test_crosstab,test_normalize_margins_and_values[sum1-index-False],AttributeError: can't set attribute,failed -3246,tests.integ.modin.frame.test_iat,test_iat_neg[key7-KeyError],Failed: DID NOT RAISE ,failed -3249,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_row_key_series_out_of_bounds_keys[row_key0-col_key0],IndexError: index -5 is out of bounds for axis 0 with size 4,failed -3252,tests.integ.modin.frame.test_iat,test_iat_neg[key8-KeyError],"TypeError: int() argument must be a string, a bytes-like object or a real number, not 'dict'",failed -3253,tests.integ.modin.binary.test_binary_op,test_binary_logic_operations_between_df_and_list_like[list-__ror__],"ValueError: Unable to coerce to Series, length must be 2: given 3",failed -3258,tests.integ.modin.frame.test_iat,test_iat_neg[key9-KeyError],Failed: DID NOT RAISE ,failed -3260,tests.integ.modin.crosstab.test_crosstab,test_normalize_margins_and_values[sum1-columns-True],AttributeError: can't set attribute,failed -3262,tests.integ.modin.test_concat,test_concat_multiindex_columns_axis0[columns19-columns29-expected_cols9],"AssertionError: Index are different - -Index classes are different -[left]: MultiIndex([(1, 2)], - ) -[right]: Index([(1, 2), (1, 2, 3)], dtype='object')",failed -3264,tests.integ.modin.frame.test_iat,test_iat_neg[key10-IndexError],"ValueError: -Location based indexing can only have [integer, integer slice (START point is -INCLUDED, END point is EXCLUDED), listlike of integers, boolean array] types.",failed -3267,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_row_key_series_out_of_bounds_keys[row_key1-col_key1],IndexError: index 8 is out of bounds for axis 0 with size 4,failed -3274,tests.integ.modin.crosstab.test_crosstab,test_normalize_margins_and_values[sum1-columns-False],AttributeError: can't set attribute,failed -3275,tests.integ.modin.binary.test_binary_op,test_other_with_native_pandas_object_raises[truediv],ZeroDivisionError: division by zero,failed -3278,tests.integ.modin.frame.test_iat,test_raise_set_cell_with_list_like_value_error,"ValueError: could not broadcast input array from shape (2,) into shape (1, 1)",failed -3284,tests.integ.modin.test_concat,test_concat_multiindex_columns_axis0[columns110-columns210-expected_cols10],AssertionError: Length of new_levels (2) must be <= self.nlevels (1),failed -3287,tests.integ.modin.crosstab.test_crosstab,test_normalize_margins_and_values[sum2-0-True],AttributeError: can't set attribute,failed -3288,tests.integ.modin.binary.test_binary_op,test_binary_logic_operations_between_df_and_list_like[list-__and__],"ValueError: Unable to coerce to Series, length must be 2: given 3",failed -3289,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_row_key_series_out_of_bounds_keys[row_key2-col_key2],IndexError: index 6 is out of bounds for axis 0 with size 4,failed -3299,tests.integ.modin.binary.test_binary_op,test_binary_logic_operations_between_df_and_list_like[list-__rand__],"ValueError: Unable to coerce to Series, length must be 2: given 3",failed -3300,tests.integ.modin.crosstab.test_crosstab,test_normalize_margins_and_values[sum2-0-False],AttributeError: can't set attribute,failed -3301,tests.integ.modin.binary.test_binary_op,test_other_with_native_pandas_object_raises[rtruediv],ZeroDivisionError: division by zero,failed -3302,tests.integ.modin.test_concat,test_concat_multiindex_columns_axis0[columns112-columns212-expected_cols12],AssertionError: Length of new_levels (3) must be <= self.nlevels (2),failed -3312,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_row_key_series_out_of_bounds_keys[row_key3-col_key3],IndexError: index -10 is out of bounds for axis 0 with size 4,failed -3315,tests.integ.modin.frame.test_interchange_protocol,test_allow_copy_false[TestingDf.MIXED_TYPE],"assert 13765117808 != 13765117808 - + where 13765117808 = .get_buffer_memory_pointer at 0x33c13d120>() - + and 13765117808 = .get_buffer_memory_pointer at 0x33c13d120>()",failed -3316,tests.integ.modin.binary.test_binary_op,test_binary_logic_operations_between_df_and_list_like[ndarray-__or__],"ValueError: Unable to coerce to Series, length must be 2: given 3",failed -3317,tests.integ.modin.crosstab.test_crosstab,test_normalize_margins_and_values[sum2-1-True],AttributeError: can't set attribute,failed -3322,tests.integ.modin.test_concat,test_concat_with_keys[0-keys3],"ValueError: Length mismatch: Expected axis has 9 elements, new values have 6 elements",failed -3325,tests.integ.modin.binary.test_binary_op,test_binary_logic_operations_between_df_and_list_like[ndarray-__ror__],"ValueError: Unable to coerce to Series, length must be 2: given 3",failed -3326,tests.integ.modin.binary.test_binary_op,test_other_with_native_pandas_object_raises[floordiv],ZeroDivisionError: integer division or modulo by zero,failed -3327,tests.integ.modin.crosstab.test_crosstab,test_normalize_margins_and_values[sum2-1-False],AttributeError: can't set attribute,failed -3328,tests.integ.modin.binary.test_timedelta,test_numeric_dataframe_with_timedelta_list_like[mul],TypeError: Cannot do operation with improper dtypes,failed -3335,tests.integ.modin.binary.test_timedelta,test_numeric_dataframe_with_timedelta_list_like[rmul],TypeError: Cannot do operation with improper dtypes,failed -3336,tests.integ.modin.binary.test_binary_op,test_binary_logic_operations_between_df_and_list_like[ndarray-__and__],"ValueError: Unable to coerce to Series, length must be 2: given 3",failed -3340,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_row_key_series_float_keys[row_pos0-col_pos0],"ValueError: -Location based indexing can only have [integer, integer slice (START point is -INCLUDED, END point is EXCLUDED), listlike of integers, boolean array] types.",failed -3346,tests.integ.modin.binary.test_timedelta,test_numeric_dataframe_with_timedelta_list_like[rdiv],TypeError: Cannot do operation with improper dtypes,failed -3347,tests.integ.modin.test_concat,test_concat_with_keys[0-keys4],"ValueError: Length mismatch: Expected axis has 9 elements, new values have 6 elements",failed -3349,tests.integ.modin.binary.test_binary_op,test_binary_logic_operations_between_df_and_list_like[ndarray-__rand__],"ValueError: Unable to coerce to Series, length must be 2: given 3",failed -3353,tests.integ.modin.test_concat,test_concat_with_keys[0-keys5],"AssertionError: DataFrame.index are different - -DataFrame.index levels are different -[left]: 2, MultiIndex([(('x', 1), 3), - (('x', 1), 1), - (('x', 1), 2), - (('y', 2), 2), - (('y', 2), 0), - (('y', 2), 3), - (('y', 2), 4), - (('z', 3), 0), - (('z', 3), 1)], - ) -[right]: 3, MultiIndex([('x', 1, 3), - ('x', 1, 1), - ('x', 1, 2), - ('y', 2, 2), - ('y', 2, 0), - ('y', 2, 3), - ('y', 2, 4), - ('z', 3, 0), - ('z', 3, 1)], - )",failed -3355,tests.integ.modin.crosstab.test_crosstab,test_normalize_margins_and_values[sum2-index-True],AttributeError: can't set attribute,failed -3361,tests.integ.modin.binary.test_timedelta,test_numeric_dataframe_with_timedelta_list_like[rtruediv],TypeError: Cannot do operation with improper dtypes,failed -3362,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_row_key_series_float_keys[row_pos1-col_pos1],"ValueError: -Location based indexing can only have [integer, integer slice (START point is -INCLUDED, END point is EXCLUDED), listlike of integers, boolean array] types.",failed -3364,tests.integ.modin.binary.test_binary_op,test_binary_logic_operations_between_df_and_list_like[index-__or__],"ValueError: Unable to coerce to Series, length must be 2: given 3",failed -3367,tests.integ.modin.binary.test_binary_op,test_other_with_native_pandas_object_raises[rfloordiv],ZeroDivisionError: integer division or modulo by zero,failed -3370,tests.integ.modin.crosstab.test_crosstab,test_normalize_margins_and_values[sum2-index-False],AttributeError: can't set attribute,failed -3373,tests.integ.modin.frame.test_idxmax_idxmin,test_idxmax_idxmin_df[True-0-idxmax-data9-index9],reason: Snowpark pandas returns a Series with None whereas pandas throws a ValueError,xfailed -3375,tests.integ.modin.binary.test_timedelta,test_numeric_dataframe_with_timedelta_list_like[rfloordiv],TypeError: Cannot do operation with improper dtypes,failed -3376,tests.integ.modin.test_concat,test_concat_with_keys[1-keys3],"ValueError: Length mismatch: Expected axis has 7 elements, new values have 4 elements",failed -3378,tests.integ.modin.binary.test_binary_op,test_binary_logic_operations_between_df_and_list_like[index-__ror__],"ValueError: Unable to coerce to Series, length must be 2: given 3",failed -3380,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_row_key_series_float_keys[row_pos2-col_pos2],"ValueError: -Location based indexing can only have [integer, integer slice (START point is -INCLUDED, END point is EXCLUDED), listlike of integers, boolean array] types.",failed -3382,tests.integ.modin.crosstab.test_crosstab,test_normalize_margins_and_values[sum2-columns-True],AttributeError: can't set attribute,failed -3384,tests.integ.modin.binary.test_timedelta,test_numeric_dataframe_with_timedelta_list_like[rmod],TypeError: Cannot do operation with improper dtypes,failed -3387,tests.integ.modin.binary.test_binary_op,test_binary_logic_operations_between_df_and_list_like[index-__and__],"ValueError: Unable to coerce to Series, length must be 2: given 3",failed -3388,tests.integ.modin.test_concat,test_concat_with_keys[1-keys4],"ValueError: Length mismatch: Expected axis has 7 elements, new values have 4 elements",failed -3390,tests.integ.modin.binary.test_binary_op,test_other_with_native_pandas_object_raises[mod],ZeroDivisionError: integer division or modulo by zero,failed -3391,tests.integ.modin.test_concat,test_concat_with_keys[1-keys5],"AssertionError: DataFrame.columns are different - -DataFrame.columns levels are different -[left]: 2, MultiIndex([(('x', 1), 'C'), - (('x', 1), 'A'), - (('x', 1), 'D'), - (('y', 2), 'P'), - (('y', 2), 'A'), - (('y', 2), 'C'), - (('z', 3), 0)], - ) -[right]: 3, MultiIndex([('x', 1, 'C'), - ('x', 1, 'A'), - ('x', 1, 'D'), - ('y', 2, 'P'), - ('y', 2, 'A'), - ('y', 2, 'C'), - ('z', 3, 0)], - )",failed -3395,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_row_key_series_float_keys[row_pos3-col_pos3],"ValueError: -Location based indexing can only have [integer, integer slice (START point is -INCLUDED, END point is EXCLUDED), listlike of integers, boolean array] types.",failed -3397,tests.integ.modin.crosstab.test_crosstab,test_normalize_margins_and_values[sum2-columns-False],AttributeError: can't set attribute,failed -3401,tests.integ.modin.binary.test_timedelta,test_numeric_dataframe_with_timedelta_list_like[eq],TypeError: Cannot do operation with improper dtypes,failed -3405,tests.integ.modin.crosstab.test_crosstab,test_margins_and_values[median0-True],AttributeError: can't set attribute,failed -3407,tests.integ.modin.test_concat,test_concat_same_frame_with_keys[0-keys3],"ValueError: Length mismatch: Expected axis has 6 elements, new values have 3 elements",failed -3409,tests.integ.modin.binary.test_binary_op,test_other_with_native_pandas_object_raises[rmod],ZeroDivisionError: integer division or modulo by zero,failed -3411,tests.integ.modin.frame.test_idxmax_idxmin,test_idxmax_idxmin_df[True-0-idxmax-data10-index10],AttributeError: 'NativeQueryCompiler' object has no attribute 'set_columns',failed -3413,tests.integ.modin.binary.test_binary_op,test_binary_logic_operations_between_df_and_list_like[index-__rand__],"ValueError: Unable to coerce to Series, length must be 2: given 3",failed -3416,tests.integ.modin.binary.test_binary_op,test_other_with_native_pandas_object_raises[pow],Failed: DID NOT RAISE ,failed -3417,tests.integ.modin.crosstab.test_crosstab,test_margins_and_values[median0-False],AttributeError: can't set attribute,failed -3420,tests.integ.modin.binary.test_binary_op,test_other_with_native_pandas_object_raises[rpow],Failed: DID NOT RAISE ,failed -3426,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_row_key_series_float_keys[row_pos4-col_pos4],"ValueError: -Location based indexing can only have [integer, integer slice (START point is -INCLUDED, END point is EXCLUDED), listlike of integers, boolean array] types.",failed -3427,tests.integ.modin.binary.test_binary_op,test_other_with_native_pandas_object_raises[__or__],Failed: DID NOT RAISE ,failed -3429,tests.integ.modin.test_concat,test_concat_same_frame_with_keys[0-keys4],"AssertionError: DataFrame.index are different - -DataFrame.index levels are different -[left]: 2, MultiIndex([(('x', 1), 3), - (('x', 1), 1), - (('x', 1), 2), - (('y', 2), 3), - (('y', 2), 1), - (('y', 2), 2)], - names=[None, 'left_i']) -[right]: 3, MultiIndex([('x', 1, 3), - ('x', 1, 1), - ('x', 1, 2), - ('y', 2, 3), - ('y', 2, 1), - ('y', 2, 2)], - names=[None, None, 'left_i'])",failed -3430,tests.integ.modin.binary.test_timedelta,test_numeric_dataframe_with_timedelta_list_like[ne],TypeError: Cannot do operation with improper dtypes,failed -3431,tests.integ.modin.binary.test_binary_op,test_binary_logic_operations_between_df_and_list_like[index_with_name-__or__],"ValueError: Unable to coerce to Series, length must be 2: given 3",failed -3433,tests.integ.modin.crosstab.test_crosstab,test_margins_and_values[median1-True],AttributeError: can't set attribute,failed -3437,tests.integ.modin.binary.test_binary_op,test_other_with_native_pandas_object_raises[__ror__],Failed: DID NOT RAISE ,failed -3441,tests.integ.modin.binary.test_binary_op,test_other_with_native_pandas_object_raises[__and__],Failed: DID NOT RAISE ,failed -3445,tests.integ.modin.binary.test_binary_op,test_binary_logic_operations_between_df_and_list_like[index_with_name-__ror__],"ValueError: Unable to coerce to Series, length must be 2: given 3",failed -3447,tests.integ.modin.frame.test_idxmax_idxmin,test_idxmax_idxmin_df[True-0-idxmin-data9-index9],reason: Snowpark pandas returns a Series with None whereas pandas throws a ValueError,xfailed -3448,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_row_key_series_float_keys[row_pos5-col_pos5],"ValueError: -Location based indexing can only have [integer, integer slice (START point is -INCLUDED, END point is EXCLUDED), listlike of integers, boolean array] types.",failed -3449,tests.integ.modin.binary.test_binary_op,test_other_with_native_pandas_object_raises[__rand__],Failed: DID NOT RAISE ,failed -3451,tests.integ.modin.test_concat,test_concat_same_frame_with_keys[1-keys3],"ValueError: Length mismatch: Expected axis has 6 elements, new values have 3 elements",failed -3453,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_row_key_constant_float_keys_negative[1.2-na-0-na],AssertionError: exception type does not match with expected type ,failed -3454,tests.integ.modin.binary.test_binary_op,test_other_with_native_pandas_object_raises[add],Failed: DID NOT RAISE ,failed -3456,tests.integ.modin.test_concat,test_concat_same_frame_with_keys[1-keys4],"AssertionError: DataFrame.columns are different - -DataFrame.columns levels are different -[left]: 2, MultiIndex([(('x', 1), 'C'), - (('x', 1), 'A'), - (('x', 1), 'D'), - (('y', 2), 'C'), - (('y', 2), 'A'), - (('y', 2), 'D')], - ) -[right]: 3, MultiIndex([('x', 1, 'C'), - ('x', 1, 'A'), - ('x', 1, 'D'), - ('y', 2, 'C'), - ('y', 2, 'A'), - ('y', 2, 'D')], - )",failed -3460,tests.integ.modin.binary.test_binary_op,test_binary_logic_operations_between_df_and_list_like[index_with_name-__and__],"ValueError: Unable to coerce to Series, length must be 2: given 3",failed -3461,tests.integ.modin.binary.test_binary_op,test_other_with_native_pandas_object_raises[radd],Failed: DID NOT RAISE ,failed -3462,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_row_key_constant_float_keys_negative[0-na-2.5-na],AssertionError: exception type does not match with expected type ,failed -3464,tests.integ.modin.test_concat,test_concat_multiindex_columns_with_keys_axis1[keys1-2],"AssertionError: DataFrame.columns are different - -DataFrame.columns levels are different -[left]: 3, MultiIndex([(('x', 1), 'C', 'C'), - (('x', 1), 'A', 'A'), - (('x', 1), 'D', 'D'), - (('y', 2), 'P', 'P'), - (('y', 2), 'A', 'A'), - (('y', 2), 'C', 'C')], - ) -[right]: 4, MultiIndex([('x', 1, 'C', 'C'), - ('x', 1, 'A', 'A'), - ('x', 1, 'D', 'D'), - ('y', 2, 'P', 'P'), - ('y', 2, 'A', 'A'), - ('y', 2, 'C', 'C')], - )",failed -3466,tests.integ.modin.test_concat,test_concat_multiindex_columns_with_keys_axis1[keys1-3],"AssertionError: DataFrame.columns are different - -DataFrame.columns levels are different -[left]: 4, MultiIndex([(('x', 1), 'C', 'C', 'C'), - (('x', 1), 'A', 'A', 'A'), - (('x', 1), 'D', 'D', 'D'), - (('y', 2), 'P', 'P', 'P'), - (('y', 2), 'A', 'A', 'A'), - (('y', 2), 'C', 'C', 'C')], - ) -[right]: 5, MultiIndex([('x', 1, 'C', 'C', 'C'), - ('x', 1, 'A', 'A', 'A'), - ('x', 1, 'D', 'D', 'D'), - ('y', 2, 'P', 'P', 'P'), - ('y', 2, 'A', 'A', 'A'), - ('y', 2, 'C', 'C', 'C')], - )",failed -3467,tests.integ.modin.binary.test_binary_op,test_other_with_native_pandas_object_raises[sub],Failed: DID NOT RAISE ,failed -3469,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_row_key_constant_float_keys_negative[nan-na-2-na],AssertionError: exception type does not match with expected type ,failed -3473,tests.integ.modin.crosstab.test_crosstab,test_margins_and_values[median1-False],AttributeError: can't set attribute,failed -3474,tests.integ.modin.test_concat,test_concat_keys_with_none[0],"AssertionError: DataFrame are different - -DataFrame shape mismatch -[left]: (7, 4) -[right]: (3, 3)",failed -3476,tests.integ.modin.binary.test_binary_op,test_binary_logic_operations_between_df_and_list_like[index_with_name-__rand__],"ValueError: Unable to coerce to Series, length must be 2: given 3",failed -3477,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_row_key_constant_float_keys_negative[0-na-nan-na],AssertionError: exception type does not match with expected type ,failed -3478,tests.integ.modin.frame.test_idxmax_idxmin,test_idxmax_idxmin_df[True-0-idxmin-data10-index10],AttributeError: 'NativeQueryCompiler' object has no attribute 'set_columns',failed -3480,tests.integ.modin.test_concat,test_concat_keys_with_none[1],"AssertionError: DataFrame are different - -DataFrame shape mismatch -[left]: (5, 6) -[right]: (3, 3)",failed -3485,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_row_key_constant_float_keys_negative[row_pos4-na-col_pos4-na],AssertionError: exception type does not match with expected type ,failed -3489,tests.integ.modin.test_concat,test_concat_with_keys_and_names[0-one-two-names1],ValueError: Length of names must match number of levels in MultiIndex.,failed -3491,tests.integ.modin.crosstab.test_crosstab,test_margins_and_values[count-True],AttributeError: can't set attribute,failed -3494,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_row_key_constant_float_keys_negative[row_pos5-tuple-col_pos5-na],AssertionError: exception type does not match with expected type ,failed -3498,tests.integ.modin.test_concat,test_concat_with_keys_and_names[0-one-two-names2],ValueError: Length of names must match number of levels in MultiIndex.,failed -3502,tests.integ.modin.binary.test_binary_op,test_other_with_native_pandas_object_raises[rsub],Failed: DID NOT RAISE ,failed -3509,tests.integ.modin.crosstab.test_crosstab,test_margins_and_values[count-False],AttributeError: can't set attribute,failed -3510,tests.integ.modin.test_concat,test_concat_with_keys_and_names[0-one-None-names1],ValueError: Length of names must match number of levels in MultiIndex.,failed -3512,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_row_key_constant_float_keys_negative[row_pos6-series-col_pos6-na],AssertionError: exception type does not match with expected type ,failed -3513,tests.integ.modin.binary.test_binary_op,test_other_with_native_pandas_object_raises[mul],Failed: DID NOT RAISE ,failed -3519,tests.integ.modin.test_concat,test_concat_with_keys_and_names[0-one-None-names2],ValueError: Length of names must match number of levels in MultiIndex.,failed -3522,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_row_key_constant_float_keys_negative[row_pos7-na-col_pos7-na],AssertionError: exception type does not match with expected type ,failed -3523,tests.integ.modin.binary.test_binary_op,test_other_with_native_pandas_object_raises[rmul],Failed: DID NOT RAISE ,failed -3529,tests.integ.modin.crosstab.test_crosstab,test_margins_and_values[mean0-True],AttributeError: can't set attribute,failed -3532,tests.integ.modin.binary.test_binary_op,test_other_with_native_pandas_object_raises[eq],Failed: DID NOT RAISE ,failed -3534,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_row_key_constant_float_keys_negative[row_pos8-na-col_pos8-tuple],AssertionError: exception type does not match with expected type ,failed -3539,tests.integ.modin.binary.test_binary_op,test_other_with_native_pandas_object_raises[ne],Failed: DID NOT RAISE ,failed -3542,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_row_key_constant_float_keys_negative[row_pos9-na-col_pos9-series],AssertionError: exception type does not match with expected type ,failed -3545,tests.integ.modin.crosstab.test_crosstab,test_margins_and_values[mean0-False],AttributeError: can't set attribute,failed -3550,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_row_key_constant_float_keys_negative[row_pos10-na-col_pos10-na],AssertionError: exception type does not match with expected type ,failed -3554,tests.integ.modin.test_concat,test_concat_with_keys_and_names[0-None-two-names1],ValueError: Length of names must match number of levels in MultiIndex.,failed -3557,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_row_key_constant_float_keys_negative[row_pos11-na-col_pos11-na],AssertionError: exception type does not match with expected type ,failed -3558,tests.integ.modin.binary.test_binary_op,test_other_with_native_pandas_object_raises[gt],"AssertionError: Regex pattern did not match. - Regex: 'Please convert this to Snowpark pandas objects' - Input: ""'>' not supported between instances of 'NoneType' and 'NoneType'""",failed -3560,tests.integ.modin.crosstab.test_crosstab,test_margins_and_values[mean1-True],AttributeError: can't set attribute,failed -3563,tests.integ.modin.test_concat,test_concat_with_keys_and_names[0-None-two-names2],ValueError: Length of names must match number of levels in MultiIndex.,failed -3565,tests.integ.modin.frame.test_idxmax_idxmin,test_idxmax_idxmin_df[True-1-idxmax-data10-index10],AttributeError: 'NativeQueryCompiler' object has no attribute 'set_columns',failed -3568,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_row_key_constant_float_keys_negative[row_pos12-na-col_pos12-na],AssertionError: exception type does not match with expected type ,failed -3575,tests.integ.modin.test_concat,test_concat_with_keys_and_names[0-None-None-names1],ValueError: Length of names must match number of levels in MultiIndex.,failed -3578,tests.integ.modin.crosstab.test_crosstab,test_margins_and_values[mean1-False],AttributeError: can't set attribute,failed -3582,tests.integ.modin.test_concat,test_concat_with_keys_and_names[0-None-None-names2],ValueError: Length of names must match number of levels in MultiIndex.,failed -3589,tests.integ.modin.binary.test_binary_op,test_other_with_native_pandas_object_raises[lt],"AssertionError: Regex pattern did not match. - Regex: 'Please convert this to Snowpark pandas objects' - Input: ""'<' not supported between instances of 'NoneType' and 'NoneType'""",failed -3594,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_mixed_types_fail[row_key0-col_key0-item0-expected_results0-False],"AssertionError: DataFrame.iloc[:, 0] (column name=""A"") are different - -DataFrame.iloc[:, 0] (column name=""A"") values are different (100.0 %) -[index]: [0, 1, 2, 3] -[left]: [nan, 2.0, 3.0, 4.0] -[right]: [True, True, True, True]",failed -3595,tests.integ.modin.test_concat,test_concat_with_keys_and_names[1-one-two-names1],ValueError: Length of names must match number of levels in MultiIndex.,failed -3599,tests.integ.modin.crosstab.test_crosstab,test_margins_and_values[min0-True],AttributeError: can't set attribute,failed -3603,tests.integ.modin.test_concat,test_concat_with_keys_and_names[1-one-two-names2],ValueError: Length of names must match number of levels in MultiIndex.,failed -3613,tests.integ.modin.binary.test_binary_op,test_other_with_native_pandas_object_raises[ge],"AssertionError: Regex pattern did not match. - Regex: 'Please convert this to Snowpark pandas objects' - Input: ""'>=' not supported between instances of 'NoneType' and 'NoneType'""",failed -3615,tests.integ.modin.test_concat,test_concat_with_keys_and_names[1-one-None-names1],ValueError: Length of names must match number of levels in MultiIndex.,failed -3620,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_mixed_types_fail[row_key1-col_key1-item1-None-False],"AssertionError: DataFrame.iloc[:, 1] (column name=""B"") are different - -DataFrame.iloc[:, 1] (column name=""B"") values are different (25.0 %) -[index]: [0, 1, 2, 3] -[left]: [True, , True, False] -[right]: [True, 0, True, False] -At positional index 1, first diff: != 0",failed -3621,tests.integ.modin.test_concat,test_concat_with_keys_and_names[1-one-None-names2],ValueError: Length of names must match number of levels in MultiIndex.,failed -3627,tests.integ.modin.binary.test_timedelta,test_numeric_series_and_timedelta_list_like[mul],TypeError: Cannot do operation with improper dtypes,failed -3629,tests.integ.modin.test_concat,test_concat_with_keys_and_names[1-None-two-names1],ValueError: Length of names must match number of levels in MultiIndex.,failed -3632,tests.integ.modin.test_concat,test_concat_with_keys_and_names[1-None-two-names2],ValueError: Length of names must match number of levels in MultiIndex.,failed -3635,tests.integ.modin.crosstab.test_crosstab,test_margins_and_values[min0-False],AttributeError: can't set attribute,failed -3638,tests.integ.modin.binary.test_timedelta,test_numeric_series_and_timedelta_list_like[rmul],TypeError: Cannot do operation with improper dtypes,failed -3641,tests.integ.modin.test_concat,test_concat_with_keys_and_names[1-None-None-names1],ValueError: Length of names must match number of levels in MultiIndex.,failed -3644,tests.integ.modin.frame.test_idxmax_idxmin,test_idxmax_idxmin_df[True-1-idxmin-data10-index10],AttributeError: 'NativeQueryCompiler' object has no attribute 'set_columns',failed -3646,tests.integ.modin.crosstab.test_crosstab,test_margins_and_values[min1-True],AttributeError: can't set attribute,failed -3651,tests.integ.modin.binary.test_timedelta,test_numeric_series_and_timedelta_list_like[rdiv],TypeError: Cannot do operation with improper dtypes,failed -3652,tests.integ.modin.binary.test_binary_op,test_other_with_native_pandas_object_raises[le],"AssertionError: Regex pattern did not match. - Regex: 'Please convert this to Snowpark pandas objects' - Input: ""'<=' not supported between instances of 'NoneType' and 'NoneType'""",failed -3657,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_mixed_types_fail[row_key2-col_key2-item2-expected_results2-False],"AssertionError: DataFrame.iloc[:, 1] (column name=""B"") are different - -DataFrame.iloc[:, 1] (column name=""B"") values are different (25.0 %) -[index]: [0, 1, 2, 3] -[left]: [True, , True, False] -[right]: [True, True, True, False]",failed -3659,tests.integ.modin.crosstab.test_crosstab,test_margins_and_values[min1-False],AttributeError: can't set attribute,failed -3665,tests.integ.modin.test_concat,test_concat_with_keys_and_names[1-None-None-names2],ValueError: Length of names must match number of levels in MultiIndex.,failed -3671,tests.integ.modin.binary.test_timedelta,test_numeric_series_and_timedelta_list_like[rtruediv],TypeError: Cannot do operation with improper dtypes,failed -3676,tests.integ.modin.test_concat,test_concat_empty_keys_negative[0],AssertionError: exception type does not match with expected type ,failed -3678,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_mixed_types_fail[row_key3-col_key3-item3-None-True],Failed: DID NOT RAISE ,failed -3680,tests.integ.modin.crosstab.test_crosstab,test_margins_and_values[amin-True],AttributeError: can't set attribute,failed -3682,tests.integ.modin.test_concat,test_concat_empty_keys_negative[1],AssertionError: exception type does not match with expected type ,failed -3693,tests.integ.modin.frame.test_idxmax_idxmin,test_idxmax_idxmin_df[False-0-idxmax-data9-index9],reason: Snowpark pandas returns a Series with None whereas pandas throws a ValueError,xfailed -3696,tests.integ.modin.binary.test_timedelta,test_numeric_series_and_timedelta_list_like[rfloordiv],TypeError: Cannot do operation with improper dtypes,failed -3700,tests.integ.modin.crosstab.test_crosstab,test_margins_and_values[amin-False],AttributeError: can't set attribute,failed -3703,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_mixed_types_fail[row_key4-col_key4-item4-None-True],Failed: DID NOT RAISE ,failed -3713,tests.integ.modin.binary.test_timedelta,test_numeric_series_and_timedelta_list_like[rmod],TypeError: Cannot do operation with improper dtypes,failed -3714,tests.integ.modin.crosstab.test_crosstab,test_margins_and_values[max0-True],AttributeError: can't set attribute,failed -3729,tests.integ.modin.crosstab.test_crosstab,test_margins_and_values[max0-False],AttributeError: can't set attribute,failed -3735,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_mixed_types_fail[row_key5-col_key5-item5-expected_results5-False],ValueError: Length of values (3) does not match length of index (4),failed -3748,tests.integ.modin.frame.test_idxmax_idxmin,test_idxmax_idxmin_df[False-0-idxmax-data10-index10],AttributeError: 'NativeQueryCompiler' object has no attribute 'set_columns',failed -3751,tests.integ.modin.test_concat,test_concat_dict_with_invalid_keys_negative[0],Failed: DID NOT RAISE ,failed -3755,tests.integ.modin.test_concat,test_concat_dict_with_invalid_keys_negative[1],Failed: DID NOT RAISE ,failed -3756,tests.integ.modin.binary.test_timedelta,test_numeric_series_and_timedelta_list_like[eq],TypeError: Cannot do operation with improper dtypes,failed -3777,tests.integ.modin.crosstab.test_crosstab,test_margins_and_values[max1-True],AttributeError: can't set attribute,failed -3783,tests.integ.modin.binary.test_timedelta,test_numeric_series_and_timedelta_list_like[ne],TypeError: Cannot do operation with improper dtypes,failed -3788,tests.integ.modin.test_concat,test_concat_verify_integrity_axis1_negative[df],Failed: DID NOT RAISE ,failed -3792,tests.integ.modin.test_concat,test_concat_verify_integrity_axis1_negative[series],Failed: DID NOT RAISE ,failed -3793,tests.integ.modin.test_concat,test_concat_all_series_verify_integrity_axis1_negative,Failed: DID NOT RAISE ,failed -3805,tests.integ.modin.crosstab.test_crosstab,test_margins_and_values[max1-False],AttributeError: can't set attribute,failed -3813,tests.integ.modin.frame.test_idxmax_idxmin,test_idxmax_idxmin_df[False-0-idxmin-data9-index9],reason: Snowpark pandas returns a Series with None whereas pandas throws a ValueError,xfailed -3814,tests.integ.modin.test_concat,test_concat_verify_integrity_axis0_negative[index10-index20],Failed: DID NOT RAISE ,failed -3818,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_mixed_types_fail[row_key7-col_key7-item7-expected_results7-False],ValueError: Length of values (2) does not match length of index (4),failed -3820,tests.integ.modin.test_concat,test_concat_verify_integrity_axis0_negative[index11-index21],Failed: DID NOT RAISE ,failed -3823,tests.integ.modin.test_concat,test_concat_verify_integrity_axis0_negative[index12-index22],Failed: DID NOT RAISE ,failed -3825,tests.integ.modin.test_concat,test_concat_verify_integrity_axis0_large_overlap_negative,Failed: DID NOT RAISE ,failed -3827,tests.integ.modin.crosstab.test_crosstab,test_margins_and_values[amax-True],AttributeError: can't set attribute,failed -3831,tests.integ.modin.test_concat,test_concat_levels_negative,Failed: DID NOT RAISE ,failed -3841,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_mixed_types_fail[row_key8-col_key8-item8-expected_results8-False],"AssertionError: DataFrame.iloc[:, 3] (column name=""D"") are different - -DataFrame.iloc[:, 3] (column name=""D"") values are different (25.0 %) -[index]: [0, 1, 2, 3] -[left]: [a, b, False, d] -[right]: [a, b, false, d] -At positional index 2, first diff: False != false",failed -3843,tests.integ.modin.crosstab.test_crosstab,test_margins_and_values[amax-False],AttributeError: can't set attribute,failed -3846,tests.integ.modin.test_concat,test_concat_duplicate_columns[columns11-columns21-expected_rows1-expected_cols1],pandas.errors.InvalidIndexError: Reindexing only valid with uniquely valued Index objects,failed -3850,tests.integ.modin.frame.test_idxmax_idxmin,test_idxmax_idxmin_df[False-0-idxmin-data10-index10],AttributeError: 'NativeQueryCompiler' object has no attribute 'set_columns',failed -3856,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_mixed_types_fail[row_key9-col_key9-item9-None-True],Failed: DID NOT RAISE ,failed -3857,tests.integ.modin.crosstab.test_crosstab,test_margins_and_values[sum0-True],AttributeError: can't set attribute,failed -3859,tests.integ.modin.test_concat,test_concat_duplicate_columns[columns12-columns22-expected_rows2-expected_cols2],pandas.errors.InvalidIndexError: Reindexing only valid with uniquely valued Index objects,failed -3871,tests.integ.modin.crosstab.test_crosstab,test_margins_and_values[sum0-False],AttributeError: can't set attribute,failed -3877,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_mixed_types_fail[row_key10-col_key10-item10-expected_results10-False],"AssertionError: DataFrame.iloc[:, 1] (column name=""B"") are different - -DataFrame.iloc[:, 1] (column name=""B"") values are different (50.0 %) -[index]: [0, 1, 2, 3] -[left]: [True, , , False] -[right]: [True, True, False, False]",failed -3885,tests.integ.modin.crosstab.test_crosstab,test_margins_and_values[sum1-True],AttributeError: can't set attribute,failed -3894,tests.integ.modin.test_concat,test_concat_duplicate_columns[columns13-columns23-expected_rows3-expected_cols3],pandas.errors.InvalidIndexError: Reindexing only valid with uniquely valued Index objects,failed -3938,tests.integ.modin.frame.test_idxmax_idxmin,test_idxmax_idxmin_df[False-1-idxmax-data10-index10],AttributeError: 'NativeQueryCompiler' object has no attribute 'set_columns',failed -3950,tests.integ.modin.crosstab.test_crosstab,test_margins_and_values[sum1-False],AttributeError: can't set attribute,failed -3974,tests.integ.modin.crosstab.test_crosstab,test_margins_and_values[sum2-True],AttributeError: can't set attribute,failed -3979,tests.integ.modin.binary.test_binary_op,test_binary_mod_deviates_between_df[native_df0-res0],Failed: DID NOT RAISE ,failed -3987,tests.integ.modin.binary.test_binary_op,test_binary_mod_deviates_between_df[native_df1-res1],Failed: DID NOT RAISE ,failed -3990,tests.integ.modin.crosstab.test_crosstab,test_margins_and_values[sum2-False],AttributeError: can't set attribute,failed -3995,tests.integ.modin.binary.test_binary_op,test_binary_mod_deviates_between_df[native_df2-res2],Failed: DID NOT RAISE ,failed -3999,tests.integ.modin.binary.test_timedelta,test_numeric_dataframe_and_timedelta_list_like[mul],TypeError: Cannot do operation with improper dtypes,failed -4000,tests.integ.modin.binary.test_binary_op,test_binary_mod_deviates_between_df[native_df3-res3],Failed: DID NOT RAISE ,failed -4003,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[median0-0-True],AttributeError: can't set attribute,failed -4009,tests.integ.modin.binary.test_timedelta,test_numeric_dataframe_and_timedelta_list_like[rmul],TypeError: Cannot do operation with improper dtypes,failed -4010,tests.integ.modin.binary.test_binary_op,test_binary_that_deviates_for_series_mod[ser0-res0],Failed: DID NOT RAISE ,failed -4013,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[median0-0-False],AttributeError: can't set attribute,failed -4017,tests.integ.modin.binary.test_binary_op,test_binary_that_deviates_for_series_mod[ser1-res1],Failed: DID NOT RAISE ,failed -4019,tests.integ.modin.binary.test_timedelta,test_numeric_dataframe_and_timedelta_list_like[rdiv],TypeError: Cannot do operation with improper dtypes,failed -4021,tests.integ.modin.frame.test_idxmax_idxmin,test_idxmax_idxmin_df[False-1-idxmin-data10-index10],AttributeError: 'NativeQueryCompiler' object has no attribute 'set_columns',failed -4025,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[median0-1-True],AttributeError: can't set attribute,failed -4026,tests.integ.modin.binary.test_binary_op,test_binary_that_deviates_for_series_mod[ser2-res2],Failed: DID NOT RAISE ,failed -4033,tests.integ.modin.binary.test_timedelta,test_numeric_dataframe_and_timedelta_list_like[rtruediv],TypeError: Cannot do operation with improper dtypes,failed -4034,tests.integ.modin.binary.test_binary_op,test_binary_that_deviates_for_series_mod[ser3-res3],Failed: DID NOT RAISE ,failed -4037,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[median0-1-False],AttributeError: can't set attribute,failed -4041,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_multiindex[item_values1-None-None-3-2-None-1-None],"AssertionError: DataFrame.iloc[:, 2] (column name=""('a', 2)"") are different +DataFrame.iloc[:, 1] (column name=""B"") values are different (50.0 %) +[index]: [0, 1, 2, 3] +[left]: [True, , , False] +[right]: [True, True, False, False]",failed +3208,tests.integ.modin.binary.test_binary_op,test_other_with_native_pandas_object_raises[le],"AssertionError: Regex pattern did not match. + Regex: 'Please convert this to Snowpark pandas objects' + Input: ""'<=' not supported between instances of 'NoneType' and 'NoneType'""",failed +3210,tests.integ.modin.frame.test_head_tail,test_head_tail[10],AttributeError: 'DataFrame' object has no attribute 'ordered_dataframe',failed +3212,tests.integ.modin.crosstab.test_crosstab,test_margins_and_values[mean1-False],AttributeError: can't set attribute,failed +3216,tests.integ.modin.frame.test_head_tail,test_empty_dataframe[1],AttributeError: 'DataFrame' object has no attribute 'ordered_dataframe',failed +3218,tests.integ.modin.frame.test_apply,test_apply_axis_1_with_if_where_duplicates_not_executed[data0-1],TypeError: foo() got an unexpected keyword argument 'snowpark_pandas_partition_size',failed +3223,tests.integ.modin.frame.test_head_tail,test_empty_dataframe[None],AttributeError: 'DataFrame' object has no attribute 'ordered_dataframe',failed +3224,tests.integ.modin.crosstab.test_crosstab,test_margins_and_values[min0-True],AttributeError: can't set attribute,failed +3232,tests.integ.modin.crosstab.test_crosstab,test_margins_and_values[min0-False],AttributeError: can't set attribute,failed +3240,tests.integ.modin.crosstab.test_crosstab,test_margins_and_values[min1-True],AttributeError: can't set attribute,failed +3246,tests.integ.modin.frame.test_head_tail,test_empty_dataframe[0],AttributeError: 'DataFrame' object has no attribute 'ordered_dataframe',failed +3247,tests.integ.modin.crosstab.test_crosstab,test_margins_and_values[min1-False],AttributeError: can't set attribute,failed +3251,tests.integ.modin.frame.test_head_tail,test_empty_dataframe[-1],AttributeError: 'DataFrame' object has no attribute 'ordered_dataframe',failed +3256,tests.integ.modin.frame.test_apply,test_apply_axis_1_with_if_where_duplicates_not_executed[data0-2],TypeError: foo() got an unexpected keyword argument 'snowpark_pandas_partition_size',failed +3258,tests.integ.modin.frame.test_head_tail,test_empty_dataframe[-10],AttributeError: 'DataFrame' object has no attribute 'ordered_dataframe',failed +3263,tests.integ.modin.frame.test_head_tail,test_empty_dataframe[5],AttributeError: 'DataFrame' object has no attribute 'ordered_dataframe',failed +3268,tests.integ.modin.frame.test_head_tail,test_empty_dataframe[10],AttributeError: 'DataFrame' object has no attribute 'ordered_dataframe',failed +3272,tests.integ.modin.frame.test_apply,test_apply_axis_1_with_if_where_duplicates_not_executed[data1-1],TypeError: foo() got an unexpected keyword argument 'snowpark_pandas_partition_size',failed +3277,tests.integ.modin.crosstab.test_crosstab,test_margins_and_values[min2-True],AttributeError: can't set attribute,failed +3282,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_multiindex[item_values1-None-None-3-2-None-1-None],"AssertionError: DataFrame.iloc[:, 2] (column name=""('a', 2)"") are different DataFrame.iloc[:, 2] (column name=""('a', 2)"") values are different (20.0 %) [index]: [(x, 99), (y, 11), (x, 11), (y, 99), (z, -12)] [left]: [3.0, nan, 98.0, 57.0, -7.0] [right]: [3, -999, 98, 57, -7]",failed -4044,tests.integ.modin.binary.test_binary_op,test_binary_that_deviates_for_series_mod[ser4-res4],Failed: DID NOT RAISE ,failed -4047,tests.integ.modin.binary.test_timedelta,test_numeric_dataframe_and_timedelta_list_like[rfloordiv],TypeError: Cannot do operation with improper dtypes,failed -4050,tests.integ.modin.binary.test_binary_op,test_binary_that_deviates_for_series_mod[ser5-res5],Failed: DID NOT RAISE ,failed -4055,tests.integ.modin.binary.test_binary_op,test_binary_that_deviates_for_series_mod[ser6-res6],Failed: DID NOT RAISE ,failed -4056,tests.integ.modin.binary.test_timedelta,test_numeric_dataframe_and_timedelta_list_like[rmod],TypeError: Cannot do operation with improper dtypes,failed -4058,tests.integ.modin.frame.test_idxmax_idxmin,test_idxmax_idxmin_df_numeric_only_axis_0_different_column_dtypes[False-idxmax-data1-index1],pandas throws TypeError when Snowpark pandas returns result,xfailed -4062,tests.integ.modin.binary.test_binary_op,test_binary_that_deviates_for_series_mod[ser7-res7],Failed: DID NOT RAISE ,failed -4067,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[median0-True-True],AttributeError: can't set attribute,failed -4069,tests.integ.modin.binary.test_binary_op,test_binary_that_deviates_for_series_mod[ser8-res8],Failed: DID NOT RAISE ,failed -4070,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_multiindex[item_values1-None-None-3-2-None-row_key1-None],"AssertionError: DataFrame.iloc[:, 2] (column name=""('a', 2)"") are different +3284,tests.integ.modin.frame.test_apply,test_apply_axis_1_with_if_where_duplicates_not_executed[data1-2],TypeError: foo() got an unexpected keyword argument 'snowpark_pandas_partition_size',failed +3285,tests.integ.modin.crosstab.test_crosstab,test_margins_and_values[min2-False],AttributeError: can't set attribute,failed +3292,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_multiindex[item_values1-None-None-3-2-None-row_key1-None],"AssertionError: DataFrame.iloc[:, 2] (column name=""('a', 2)"") are different DataFrame.iloc[:, 2] (column name=""('a', 2)"") values are different (40.0 %) [index]: [(x, 99), (y, 11), (x, 11), (y, 99), (z, -12)] [left]: [nan, 12.0, 98.0, nan, -7.0] [right]: [-998, 12, 98, -999, -7]",failed -4074,tests.integ.modin.binary.test_binary_op,test_binary_that_deviates_for_series_mod[ser9-res9],Failed: DID NOT RAISE ,failed -4075,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[median0-True-False],AttributeError: can't set attribute,failed -4078,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_multiindex[item_values1-None-None-3-2-None-row_key2-row_key_index2],"AssertionError: DataFrame.iloc[:, 2] (column name=""('a', 2)"") are different +3295,tests.integ.modin.frame.test_apply,test_numpy_integers_in_return_values_snow_1227264[return_value1],"[XPASS(strict)] SNOW-1229760: un-json-serializable np.int64 is nested inside the non-series return value, so we don't find the np.int64 or convert it to int",failed +3299,tests.integ.modin.crosstab.test_crosstab,test_margins_and_values[max0-True],AttributeError: can't set attribute,failed +3306,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_multiindex[item_values1-None-None-3-2-None-row_key2-row_key_index2],"AssertionError: DataFrame.iloc[:, 2] (column name=""('a', 2)"") are different DataFrame.iloc[:, 2] (column name=""('a', 2)"") values are different (40.0 %) [index]: [(x, 99), (y, 11), (x, 11), (y, 99), (z, -12)] [left]: [3.0, nan, nan, 57.0, -7.0] [right]: [3, -999, -998, 57, -7]",failed -4080,tests.integ.modin.binary.test_binary_op,test_binary_that_deviates_for_series_mod[ser10-res10],Failed: DID NOT RAISE ,failed -4082,tests.integ.modin.binary.test_timedelta,test_numeric_dataframe_and_timedelta_list_like[eq],TypeError: Cannot do operation with improper dtypes,failed -4083,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[median0-all-True],AttributeError: can't set attribute,failed -4086,tests.integ.modin.binary.test_binary_op,test_binary_that_deviates_for_series_mod[ser11-res11],Failed: DID NOT RAISE ,failed -4088,tests.integ.modin.frame.test_idxmax_idxmin,test_idxmax_idxmin_df_numeric_only_axis_0_different_column_dtypes[False-idxmin-data1-index1],pandas throws TypeError when Snowpark pandas returns result,xfailed -4089,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_multiindex[item_values1-None-None-3-2-None-row_key3-row_key_index3],"AssertionError: DataFrame.iloc[:, 2] (column name=""('a', 2)"") are different +3307,tests.integ.modin.frame.test_apply,test_apply_axis_1_frame_with_column_of_all_nulls_snow_1233832[None],[XPASS(strict)] SNOW-1233832,failed +3313,tests.integ.modin.crosstab.test_crosstab,test_margins_and_values[max0-False],AttributeError: can't set attribute,failed +3319,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_multiindex[item_values1-None-None-3-2-None-row_key3-row_key_index3],"AssertionError: DataFrame.iloc[:, 2] (column name=""('a', 2)"") are different DataFrame.iloc[:, 2] (column name=""('a', 2)"") values are different (40.0 %) [index]: [(x, 99), (y, 11), (x, 11), (y, 99), (z, -12)] [left]: [3.0, nan, nan, 57.0, -7.0] [right]: [3, -998, -999, 57, -7]",failed -4093,tests.integ.modin.binary.test_timedelta,test_numeric_dataframe_and_timedelta_list_like[ne],TypeError: Cannot do operation with improper dtypes,failed -4094,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[median0-all-False],AttributeError: can't set attribute,failed -4104,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[median0-index-True],AttributeError: can't set attribute,failed -4116,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_multiindex[item_values1-None-None-3-col_key1-None-1-None],ValueError: buffer source array is read-only,failed -4117,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[median0-index-False],AttributeError: can't set attribute,failed -4128,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_multiindex[item_values1-None-None-3-col_key1-None-row_key1-None],"AssertionError: DataFrame.iloc[:, 1] (column name=""('b', 2)"") are different +3326,tests.integ.modin.crosstab.test_crosstab,test_margins_and_values[max1-True],AttributeError: can't set attribute,failed +3336,tests.integ.modin.crosstab.test_crosstab,test_margins_and_values[max1-False],AttributeError: can't set attribute,failed +3343,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_multiindex[item_values1-None-None-3-col_key1-None-1-None],ValueError: buffer source array is read-only,failed +3348,tests.integ.modin.crosstab.test_crosstab,test_margins_and_values[max2-True],AttributeError: can't set attribute,failed +3354,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_multiindex[item_values1-None-None-3-col_key1-None-row_key1-None],"AssertionError: DataFrame.iloc[:, 1] (column name=""('b', 2)"") are different DataFrame.iloc[:, 1] (column name=""('b', 2)"") values are different (40.0 %) [index]: [(x, 99), (y, 11), (x, 11), (y, 99), (z, -12)] [left]: [nan, 11.0, 101.0, nan, -6.0] [right]: [-996, 11, 101, -997, -6]",failed -4139,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_multiindex[item_values1-None-None-3-col_key1-None-row_key2-row_key_index2],"AssertionError: DataFrame.iloc[:, 1] (column name=""('b', 2)"") are different +3361,tests.integ.modin.binary.test_binary_op,test_binary_mod_deviates_between_df[native_df0-res0],Failed: DID NOT RAISE ,failed +3365,tests.integ.modin.binary.test_binary_op,test_binary_mod_deviates_between_df[native_df1-res1],Failed: DID NOT RAISE ,failed +3366,tests.integ.modin.crosstab.test_crosstab,test_margins_and_values[max2-False],AttributeError: can't set attribute,failed +3370,tests.integ.modin.binary.test_binary_op,test_binary_mod_deviates_between_df[native_df2-res2],Failed: DID NOT RAISE ,failed +3374,tests.integ.modin.binary.test_binary_op,test_binary_mod_deviates_between_df[native_df3-res3],Failed: DID NOT RAISE ,failed +3390,tests.integ.modin.binary.test_timedelta,test_timestamp_dataframe_minus_timestamp_series,TypeError: cannot subtract DatetimeArray from ndarray,failed +3392,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_multiindex[item_values1-None-None-3-col_key1-None-row_key2-row_key_index2],"AssertionError: DataFrame.iloc[:, 1] (column name=""('b', 2)"") are different DataFrame.iloc[:, 1] (column name=""('b', 2)"") values are different (40.0 %) [index]: [(x, 99), (y, 11), (x, 11), (y, 99), (z, -12)] [left]: [2.0, nan, nan, 56.0, -6.0] [right]: [2, -997, -996, 56, -6]",failed -4140,tests.integ.modin.binary.test_timedelta,test_subtract_two_timestamps_timezones_disallowed[sub-pandas_lhs0-pandas_rhs0],"AssertionError: Regex pattern did not match. - Regex: 'Cannot\\ subtract\\ tz\\-naive\\ and\\ tz\\-aware\\ datetime\\-like\\ objects\\.' - Input: 'Cannot subtract tz-naive and tz-aware datetime-like objects'",failed -4142,tests.integ.modin.binary.test_binary_op,test_binary_fails_raises_not_implemented_error_for_series_mod[ser0],"TypeError: ufunc 'isnan' not supported for the input types, and the inputs could not be safely coerced to any supported types according to the casting rule ''safe''",failed -4149,tests.integ.modin.binary.test_binary_op,test_binary_fails_raises_not_implemented_error_for_series_mod[ser1],Failed: DID NOT RAISE ,failed -4151,tests.integ.modin.frame.test_idxmax_idxmin,test_idxmax_idxmin_with_timedelta[1-idxmax],[XPASS(strict)] SNOW-1653126,failed -4152,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[median0-columns-True],AttributeError: can't set attribute,failed -4154,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_multiindex[item_values1-None-None-3-col_key1-None-row_key3-row_key_index3],"AssertionError: DataFrame.iloc[:, 1] (column name=""('b', 2)"") are different +3404,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_multiindex[item_values1-None-None-3-col_key1-None-row_key3-row_key_index3],"AssertionError: DataFrame.iloc[:, 1] (column name=""('b', 2)"") are different DataFrame.iloc[:, 1] (column name=""('b', 2)"") values are different (40.0 %) [index]: [(x, 99), (y, 11), (x, 11), (y, 99), (z, -12)] [left]: [2.0, nan, nan, 56.0, -6.0] [right]: [2, -996, -997, 56, -6]",failed -4155,tests.integ.modin.frame.test_idxmax_idxmin,test_idxmax_idxmin_with_timedelta[1-idxmin],[XPASS(strict)] SNOW-1653126,failed -4159,tests.integ.modin.binary.test_binary_op,test_binary_for_str_series_mod[ser0],Failed: DID NOT RAISE ,failed -4163,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[median0-columns-False],AttributeError: can't set attribute,failed -4165,tests.integ.modin.binary.test_timedelta,test_subtract_two_timestamps_timezones_disallowed[rsub-pandas_lhs1-pandas_rhs1],"AssertionError: Regex pattern did not match. - Regex: 'Cannot\\ subtract\\ tz\\-naive\\ and\\ tz\\-aware\\ datetime\\-like\\ objects\\.' - Input: 'Cannot subtract tz-naive and tz-aware datetime-like objects'",failed -4168,tests.integ.modin.binary.test_binary_op,test_binary_for_str_series_mod[ser1],Failed: DID NOT RAISE ,failed -4174,tests.integ.modin.binary.test_binary_op,test_binary_for_str_series_mod[ser2],Failed: DID NOT RAISE ,failed -4175,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[median1-0-True],AttributeError: can't set attribute,failed -4181,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_multiindex[item_values1-None-None-3-col_key2-col_key_index2-1-None],ValueError: buffer source array is read-only,failed -4185,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[median1-0-False],AttributeError: can't set attribute,failed -4190,tests.integ.modin.frame.test_idxmax_idxmin,test_idxmax_idxmin_empty_df_with_index[0-idxmax],AttributeError: 'NativeQueryCompiler' object has no attribute 'set_columns',failed -4194,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[median1-1-True],AttributeError: can't set attribute,failed -4198,tests.integ.modin.binary.test_binary_op,test_binary_for_str_series_mod[ser3],TypeError: not all arguments converted during string formatting,failed -4203,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[median1-1-False],AttributeError: can't set attribute,failed -4208,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_multiindex[item_values1-None-None-3-col_key2-col_key_index2-row_key1-None],"AssertionError: DataFrame.iloc[:, 1] (column name=""('b', 2)"") are different +3405,tests.integ.modin.crosstab.test_crosstab,test_margins_and_values[sum0-True],AttributeError: can't set attribute,failed +3411,tests.integ.modin.binary.test_binary_op,test_binary_that_deviates_for_series_mod[ser0-res0],Failed: DID NOT RAISE ,failed +3417,tests.integ.modin.crosstab.test_crosstab,test_margins_and_values[sum0-False],AttributeError: can't set attribute,failed +3419,tests.integ.modin.binary.test_binary_op,test_binary_that_deviates_for_series_mod[ser1-res1],Failed: DID NOT RAISE ,failed +3421,tests.integ.modin.frame.test_interchange_protocol,test_allow_copy_false[TestingDf.MIXED_TYPE],"assert 105553159669504 != 105553159669504 + + where 105553159669504 = .get_buffer_memory_pointer at 0x3355f2550>() + + and 105553159669504 = .get_buffer_memory_pointer at 0x3355f2550>()",failed +3425,tests.integ.modin.binary.test_binary_op,test_binary_that_deviates_for_series_mod[ser2-res2],Failed: DID NOT RAISE ,failed +3429,tests.integ.modin.crosstab.test_crosstab,test_margins_and_values[sum1-True],AttributeError: can't set attribute,failed +3433,tests.integ.modin.binary.test_binary_op,test_binary_that_deviates_for_series_mod[ser3-res3],Failed: DID NOT RAISE ,failed +3436,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_multiindex[item_values1-None-None-3-col_key2-col_key_index2-1-None],ValueError: buffer source array is read-only,failed +3442,tests.integ.modin.crosstab.test_crosstab,test_margins_and_values[sum1-False],AttributeError: can't set attribute,failed +3443,tests.integ.modin.binary.test_binary_op,test_binary_that_deviates_for_series_mod[ser4-res4],Failed: DID NOT RAISE ,failed +3449,tests.integ.modin.binary.test_binary_op,test_binary_that_deviates_for_series_mod[ser5-res5],Failed: DID NOT RAISE ,failed +3455,tests.integ.modin.crosstab.test_crosstab,test_margins_and_values[sum2-True],AttributeError: can't set attribute,failed +3456,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_multiindex[item_values1-None-None-3-col_key2-col_key_index2-row_key1-None],"AssertionError: DataFrame.iloc[:, 1] (column name=""('b', 2)"") are different DataFrame.iloc[:, 1] (column name=""('b', 2)"") values are different (40.0 %) [index]: [(x, 99), (y, 11), (x, 11), (y, 99), (z, -12)] [left]: [nan, 11.0, 101.0, nan, -6.0] [right]: [-998, 11, 101, -999, -6]",failed -4209,tests.integ.modin.frame.test_idxmax_idxmin,test_idxmax_idxmin_empty_df_with_index[0-idxmin],AttributeError: 'NativeQueryCompiler' object has no attribute 'set_columns',failed -4210,tests.integ.modin.frame.test_idxmax_idxmin,test_idxmax_idxmin_empty_df_with_index[1-idxmax],reason: Snowpark pandas returns empty dataframe instead of ValueError,xfailed -4212,tests.integ.modin.frame.test_idxmax_idxmin,test_idxmax_idxmin_empty_df_with_index[1-idxmin],reason: Snowpark pandas returns empty dataframe instead of ValueError,xfailed -4215,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[median1-True-True],AttributeError: can't set attribute,failed -4216,tests.integ.modin.frame.test_idxmax_idxmin,test_idxmax_idxmin_crazy_column_names_axis_1[1-idxmax],[XPASS(strict)] Snowpark lit() cannot parse pd.Timestamp,failed -4218,tests.integ.modin.frame.test_idxmax_idxmin,test_idxmax_idxmin_crazy_column_names_axis_1[1-idxmin],[XPASS(strict)] Snowpark lit() cannot parse pd.Timestamp,failed -4221,tests.integ.modin.frame.test_idxmax_idxmin,test_idxmax_idxmin_multiindex_unsupported[0-idxmax],[XPASS(strict)] ,failed -4224,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[median1-True-False],AttributeError: can't set attribute,failed -4225,tests.integ.modin.frame.test_idxmax_idxmin,test_idxmax_idxmin_multiindex_unsupported[0-idxmin],[XPASS(strict)] ,failed -4228,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_multiindex[item_values1-None-None-3-col_key2-col_key_index2-row_key2-row_key_index2],"AssertionError: DataFrame.iloc[:, 1] (column name=""('b', 2)"") are different +3459,tests.integ.modin.binary.test_binary_op,test_binary_that_deviates_for_series_mod[ser6-res6],Failed: DID NOT RAISE ,failed +3460,tests.integ.modin.binary.test_timedelta,test_timestamp_series_minus_timestamp_dataframe,numpy._core._exceptions._UFuncBinaryResolutionError: ufunc 'subtract' cannot use operands with types dtype(',failed +3469,tests.integ.modin.crosstab.test_crosstab,test_margins_and_values[sum2-False],AttributeError: can't set attribute,failed +3473,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_multiindex[item_values1-None-None-3-col_key2-col_key_index2-row_key2-row_key_index2],"AssertionError: DataFrame.iloc[:, 1] (column name=""('b', 2)"") are different DataFrame.iloc[:, 1] (column name=""('b', 2)"") values are different (40.0 %) [index]: [(x, 99), (y, 11), (x, 11), (y, 99), (z, -12)] [left]: [2.0, nan, nan, 56.0, -6.0] [right]: [2, -999, -998, 56, -6]",failed -4229,tests.integ.modin.frame.test_idxmax_idxmin,test_idxmax_idxmin_multiindex_unsupported[1-idxmax],[XPASS(strict)] ,failed -4231,tests.integ.modin.frame.test_idxmax_idxmin,test_idxmax_idxmin_multiindex_unsupported[1-idxmin],[XPASS(strict)] ,failed -4239,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_multiindex[item_values1-None-None-3-col_key2-col_key_index2-row_key3-row_key_index3],"AssertionError: DataFrame.iloc[:, 1] (column name=""('b', 2)"") are different +3476,tests.integ.modin.binary.test_binary_op,test_binary_that_deviates_for_series_mod[ser8-res8],Failed: DID NOT RAISE ,failed +3481,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[median0-0-True],AttributeError: can't set attribute,failed +3483,tests.integ.modin.binary.test_binary_op,test_binary_that_deviates_for_series_mod[ser9-res9],Failed: DID NOT RAISE ,failed +3488,tests.integ.modin.binary.test_binary_op,test_binary_that_deviates_for_series_mod[ser10-res10],Failed: DID NOT RAISE ,failed +3491,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_multiindex[item_values1-None-None-3-col_key2-col_key_index2-row_key3-row_key_index3],"AssertionError: DataFrame.iloc[:, 1] (column name=""('b', 2)"") are different DataFrame.iloc[:, 1] (column name=""('b', 2)"") values are different (40.0 %) [index]: [(x, 99), (y, 11), (x, 11), (y, 99), (z, -12)] [left]: [2.0, nan, nan, 56.0, -6.0] [right]: [2, -998, -999, 56, -6]",failed -4241,tests.integ.modin.binary.test_binary_op,test_binary_for_str_series_mod[ser4],ValueError: cannot convert float NaN to integer,failed -4248,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[median1-all-True],AttributeError: can't set attribute,failed -4256,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[median1-all-False],AttributeError: can't set attribute,failed -4260,tests.integ.modin.binary.test_binary_op,test_binary_for_str_series_mod[ser5],ValueError: incomplete format,failed -4263,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_multiindex[item_values1-None-None-3-col_key3-col_key_index3-1-None],ValueError: buffer source array is read-only,failed -4266,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[median1-index-True],AttributeError: can't set attribute,failed -4275,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_multiindex[item_values1-None-None-3-col_key3-col_key_index3-row_key1-None],"AssertionError: DataFrame.iloc[:, 1] (column name=""('b', 2)"") are different +3497,tests.integ.modin.binary.test_binary_op,test_binary_that_deviates_for_series_mod[ser11-res11],Failed: DID NOT RAISE ,failed +3516,tests.integ.modin.frame.test_iat,test_iat_neg[0-IndexingError],Failed: DID NOT RAISE ,failed +3517,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_multiindex[item_values1-None-None-3-col_key3-col_key_index3-1-None],ValueError: buffer source array is read-only,failed +3518,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[median0-0-False],AttributeError: can't set attribute,failed +3519,tests.integ.modin.binary.test_binary_op,test_binary_fails_raises_not_implemented_error_for_series_mod[ser0],"TypeError: ufunc 'isnan' not supported for the input types, and the inputs could not be safely coerced to any supported types according to the casting rule ''safe''",failed +3520,tests.integ.modin.frame.test_iat,test_iat_neg[key1-IndexingError],Failed: DID NOT RAISE ,failed +3522,tests.integ.modin.frame.test_iat,test_iat_neg[key2-IndexingError],"TypeError: int() argument must be a string, a bytes-like object or a number, not 'dict'",failed +3523,tests.integ.modin.binary.test_binary_op,test_binary_fails_raises_not_implemented_error_for_series_mod[ser1],Failed: DID NOT RAISE ,failed +3524,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[median0-1-True],AttributeError: can't set attribute,failed +3525,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_multiindex[item_values1-None-None-3-col_key3-col_key_index3-row_key1-None],"AssertionError: DataFrame.iloc[:, 1] (column name=""('b', 2)"") are different DataFrame.iloc[:, 1] (column name=""('b', 2)"") values are different (40.0 %) [index]: [(x, 99), (y, 11), (x, 11), (y, 99), (z, -12)] [left]: [nan, 11.0, 101.0, nan, -6.0] [right]: [-996, 11, 101, -997, -6]",failed -4277,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[median1-index-False],AttributeError: can't set attribute,failed -4287,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[median1-columns-True],AttributeError: can't set attribute,failed -4292,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_multiindex[item_values1-None-None-3-col_key3-col_key_index3-row_key2-row_key_index2],"AssertionError: DataFrame.iloc[:, 1] (column name=""('b', 2)"") are different +3526,tests.integ.modin.frame.test_iat,test_iat_neg[a-IndexingError],"ValueError: +Location based indexing can only have [integer, integer slice (START point is +INCLUDED, END point is EXCLUDED), listlike of integers, boolean array] types.",failed +3527,tests.integ.modin.binary.test_binary_op,test_binary_for_str_series_mod[ser0],Failed: DID NOT RAISE ,failed +3528,tests.integ.modin.frame.test_iat,test_iat_neg[key4-IndexingError],Failed: DID NOT RAISE ,failed +3531,tests.integ.modin.frame.test_iat,test_iat_neg[key5-IndexingError],Failed: DID NOT RAISE ,failed +3532,tests.integ.modin.binary.test_binary_op,test_binary_for_str_series_mod[ser1],Failed: DID NOT RAISE ,failed +3533,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[median0-1-False],AttributeError: can't set attribute,failed +3534,tests.integ.modin.frame.test_iat,test_iat_neg[key6-IndexingError],"TypeError: int() argument must be a string, a bytes-like object or a number, not 'dict'",failed +3535,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_multiindex[item_values1-None-None-3-col_key3-col_key_index3-row_key2-row_key_index2],"AssertionError: DataFrame.iloc[:, 1] (column name=""('b', 2)"") are different DataFrame.iloc[:, 1] (column name=""('b', 2)"") values are different (40.0 %) [index]: [(x, 99), (y, 11), (x, 11), (y, 99), (z, -12)] [left]: [2.0, nan, nan, 56.0, -6.0] [right]: [2, -997, -996, 56, -6]",failed -4301,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[median1-columns-False],AttributeError: can't set attribute,failed -4305,tests.integ.modin.frame.test_iloc,test_df_row_return_dataframe[key0-1-2],"ValueError: +3537,tests.integ.modin.binary.test_binary_op,test_binary_for_str_series_mod[ser2],Failed: DID NOT RAISE ,failed +3538,tests.integ.modin.frame.test_iat,test_iat_neg[key7-KeyError],Failed: DID NOT RAISE ,failed +3539,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[median0-True-True],AttributeError: can't set attribute,failed +3540,tests.integ.modin.frame.test_iat,test_iat_neg[key8-KeyError],"TypeError: int() argument must be a string, a bytes-like object or a number, not 'dict'",failed +3541,tests.integ.modin.frame.test_iat,test_iat_neg[key9-KeyError],Failed: DID NOT RAISE ,failed +3543,tests.integ.modin.frame.test_iat,test_iat_neg[key10-IndexError],"ValueError: Location based indexing can only have [integer, integer slice (START point is INCLUDED, END point is EXCLUDED), listlike of integers, boolean array] types.",failed -4312,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_multiindex[item_values1-None-None-3-col_key3-col_key_index3-row_key3-row_key_index3],"AssertionError: DataFrame.iloc[:, 1] (column name=""('b', 2)"") are different +3545,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[median0-True-False],AttributeError: can't set attribute,failed +3547,tests.integ.modin.frame.test_iat,test_raise_set_cell_with_list_like_value_error,"ValueError: could not broadcast input array from shape (2,) into shape (1, 1)",failed +3548,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[median0-all-True],AttributeError: can't set attribute,failed +3552,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[median0-all-False],AttributeError: can't set attribute,failed +3553,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_multiindex[item_values1-None-None-3-col_key3-col_key_index3-row_key3-row_key_index3],"AssertionError: DataFrame.iloc[:, 1] (column name=""('b', 2)"") are different DataFrame.iloc[:, 1] (column name=""('b', 2)"") values are different (40.0 %) [index]: [(x, 99), (y, 11), (x, 11), (y, 99), (z, -12)] [left]: [2.0, nan, nan, 56.0, -6.0] [right]: [2, -996, -997, 56, -6]",failed -4324,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_multiindex[item_values2-item_index2-None-5-2-None-1-None],"AssertionError: DataFrame.iloc[:, 2] (column name=""('a', 2)"") are different +3555,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_multiindex[item_values2-item_index2-None-5-2-None-1-None],"AssertionError: DataFrame.iloc[:, 2] (column name=""('a', 2)"") are different DataFrame.iloc[:, 2] (column name=""('a', 2)"") values are different (20.0 %) [index]: [(x, 99), (y, 11), (x, 11), (y, 99), (z, -12)] [left]: [3.0, nan, 98.0, 57.0, -7.0] [right]: [3, -999, 98, 57, -7]",failed -4331,tests.integ.modin.frame.test_iloc,test_df_row_return_dataframe[key5-1-2],"ValueError: -Location based indexing can only have [integer, integer slice (START point is -INCLUDED, END point is EXCLUDED), listlike of integers, boolean array] types.",failed -4337,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_multiindex[item_values2-item_index2-None-5-2-None-row_key1-None],"AssertionError: DataFrame.iloc[:, 2] (column name=""('a', 2)"") are different +3556,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[median0-index-True],AttributeError: can't set attribute,failed +3557,tests.integ.modin.frame.test_loc,test_df_loc_set_general_col_key_type[series-row_key1-col_key6],"AssertionError: DataFrame are different + +DataFrame shape mismatch +[left]: (3, 8) +[right]: (3, 4)",failed +3558,tests.integ.modin.binary.test_binary_op,test_binary_for_str_series_mod[ser3],TypeError: not all arguments converted during string formatting,failed +3561,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_multiindex[item_values2-item_index2-None-5-2-None-row_key1-None],"AssertionError: DataFrame.iloc[:, 2] (column name=""('a', 2)"") are different DataFrame.iloc[:, 2] (column name=""('a', 2)"") values are different (40.0 %) [index]: [(x, 99), (y, 11), (x, 11), (y, 99), (z, -12)] [left]: [nan, 12.0, 98.0, nan, -7.0] [right]: [-998, 12, 98, -999, -7]",failed -4348,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[count-0-True],AttributeError: can't set attribute,failed -4354,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_multiindex[item_values2-item_index2-None-5-2-None-row_key2-row_key_index2],"AssertionError: DataFrame.iloc[:, 2] (column name=""('a', 2)"") are different +3566,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_multiindex[item_values2-item_index2-None-5-2-None-row_key2-row_key_index2],"AssertionError: DataFrame.iloc[:, 2] (column name=""('a', 2)"") are different DataFrame.iloc[:, 2] (column name=""('a', 2)"") values are different (40.0 %) [index]: [(x, 99), (y, 11), (x, 11), (y, 99), (z, -12)] [left]: [3.0, nan, nan, 57.0, -7.0] [right]: [3, -999, -998, 57, -7]",failed -4357,tests.integ.modin.frame.test_iloc,test_df_row_return_dataframe[key10-1-2],"ValueError: -Location based indexing can only have [integer, integer slice (START point is -INCLUDED, END point is EXCLUDED), listlike of integers, boolean array] types.",failed -4359,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[count-0-False],AttributeError: can't set attribute,failed -4363,tests.integ.modin.frame.test_iloc,test_df_row_return_dataframe[key11-1-2],"ValueError: -Location based indexing can only have [integer, integer slice (START point is -INCLUDED, END point is EXCLUDED), listlike of integers, boolean array] types.",failed -4365,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_multiindex[item_values2-item_index2-None-5-2-None-row_key3-row_key_index3],"AssertionError: DataFrame.iloc[:, 2] (column name=""('a', 2)"") are different +3568,tests.integ.modin.frame.test_loc,test_df_loc_set_general_col_key_type[series-row_key1-col_key8],"AssertionError: DataFrame.iloc[:, 0] (column name=""D"") are different + +DataFrame.iloc[:, 0] (column name=""D"") values are different (100.0 %) +[index]: [0, 1, 2] +[left]: [nan, nan, nan] +[right]: [1.0, 4.0, 7.0] +At positional index 0, first diff: nan != 1.0",failed +3571,tests.integ.modin.binary.test_binary_op,test_binary_for_str_series_mod[ser4],ValueError: cannot convert float NaN to integer,failed +3573,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_multiindex[item_values2-item_index2-None-5-2-None-row_key3-row_key_index3],"AssertionError: DataFrame.iloc[:, 2] (column name=""('a', 2)"") are different DataFrame.iloc[:, 2] (column name=""('a', 2)"") values are different (40.0 %) [index]: [(x, 99), (y, 11), (x, 11), (y, 99), (z, -12)] [left]: [3.0, nan, nan, 57.0, -7.0] [right]: [3, -998, -999, 57, -7]",failed -4368,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[count-1-True],AttributeError: can't set attribute,failed -4369,tests.integ.modin.binary.test_binary_op,test_binary_mod_between_series_and_list_like_deviating_behavior[list-mod],Failed: DID NOT RAISE ,failed -4371,tests.integ.modin.binary.test_binary_op,test_binary_mod_between_series_and_list_like_deviating_behavior[list-rmod],Failed: DID NOT RAISE ,failed -4374,tests.integ.modin.binary.test_binary_op,test_binary_mod_between_series_and_list_like_deviating_behavior[ndarray-mod],Failed: DID NOT RAISE ,failed -4375,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[count-1-False],AttributeError: can't set attribute,failed -4377,tests.integ.modin.binary.test_binary_op,test_binary_mod_between_series_and_list_like_deviating_behavior[ndarray-rmod],Failed: DID NOT RAISE ,failed -4378,tests.integ.modin.binary.test_binary_op,test_binary_mod_between_series_and_list_like_deviating_behavior[index-mod],Failed: DID NOT RAISE ,failed -4382,tests.integ.modin.frame.test_iloc,test_df_row_return_dataframe[key12-1-2],"ValueError: -Location based indexing can only have [integer, integer slice (START point is -INCLUDED, END point is EXCLUDED), listlike of integers, boolean array] types.",failed -4383,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[count-True-True],AttributeError: can't set attribute,failed -4385,tests.integ.modin.binary.test_binary_op,test_binary_mod_between_series_and_list_like_deviating_behavior[index-rmod],Failed: DID NOT RAISE ,failed -4388,tests.integ.modin.binary.test_binary_op,test_binary_mod_between_series_and_list_like_deviating_behavior[index_with_name-mod],Failed: DID NOT RAISE ,failed -4389,tests.integ.modin.frame.test_iloc,test_df_row_return_dataframe[key13-1-2],"ValueError: -Location based indexing can only have [integer, integer slice (START point is -INCLUDED, END point is EXCLUDED), listlike of integers, boolean array] types.",failed -4391,tests.integ.modin.frame.test_items,test_items[dataframe3],AssertionError: Got type: ,failed -4394,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[count-True-False],AttributeError: can't set attribute,failed -4395,tests.integ.modin.binary.test_binary_op,test_binary_mod_between_series_and_list_like_deviating_behavior[index_with_name-rmod],Failed: DID NOT RAISE ,failed -4398,tests.integ.modin.binary.test_binary_op,test_binary_mod_between_df_and_list_like_on_axis_0_deviating_behavior[list-mod],Failed: DID NOT RAISE ,failed -4399,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[count-all-True],AttributeError: can't set attribute,failed -4400,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_multiindex[item_values2-item_index2-None-5-col_key1-None-1-None],ValueError: buffer source array is read-only,failed -4406,tests.integ.modin.binary.test_binary_op,test_binary_mod_between_df_and_list_like_on_axis_0_deviating_behavior[list-rmod],Failed: DID NOT RAISE ,failed -4408,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_multiindex[item_values2-item_index2-None-5-col_key1-None-row_key1-None],"AssertionError: DataFrame.iloc[:, 1] (column name=""('b', 2)"") are different +3575,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[median0-index-False],AttributeError: can't set attribute,failed +3578,tests.integ.modin.frame.test_loc,test_df_loc_set_general_col_key_type[series-row_key1-col_key9],"KeyError: array(['1', '2'], dtype=',failed -4414,tests.integ.modin.binary.test_binary_op,test_binary_mod_between_df_and_list_like_on_axis_0_deviating_behavior[ndarray-rmod],Failed: DID NOT RAISE ,failed -4418,tests.integ.modin.binary.test_binary_op,test_binary_mod_between_df_and_list_like_on_axis_0_deviating_behavior[index-mod],Failed: DID NOT RAISE ,failed -4419,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_multiindex[item_values2-item_index2-None-5-col_key1-None-row_key2-row_key_index2],"AssertionError: DataFrame.iloc[:, 1] (column name=""('b', 2)"") are different +3600,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[median1-0-True],AttributeError: can't set attribute,failed +3610,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_multiindex[item_values2-item_index2-None-5-col_key1-None-row_key2-row_key_index2],"AssertionError: DataFrame.iloc[:, 1] (column name=""('b', 2)"") are different DataFrame.iloc[:, 1] (column name=""('b', 2)"") values are different (40.0 %) [index]: [(x, 99), (y, 11), (x, 11), (y, 99), (z, -12)] [left]: [2.0, nan, nan, 56.0, -6.0] [right]: [2, -997, -996, 56, -6]",failed -4423,tests.integ.modin.binary.test_binary_op,test_binary_mod_between_df_and_list_like_on_axis_0_deviating_behavior[index-rmod],Failed: DID NOT RAISE ,failed -4428,tests.integ.modin.binary.test_binary_op,test_binary_mod_between_df_and_list_like_on_axis_0_deviating_behavior[index_with_name-mod],Failed: DID NOT RAISE ,failed -4429,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_multiindex[item_values2-item_index2-None-5-col_key1-None-row_key3-row_key_index3],"AssertionError: DataFrame.iloc[:, 1] (column name=""('b', 2)"") are different +3616,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[median1-0-False],AttributeError: can't set attribute,failed +3617,tests.integ.modin.frame.test_idxmax_idxmin,test_idxmax_idxmin_df[True-0-idxmax-data9-index9],reason: Snowpark pandas returns a Series with None whereas pandas throws a ValueError,xfailed +3620,tests.integ.modin.frame.test_loc,test_df_loc_set_general_col_key_type_with_duplicate_columns[series-col_key1],"AssertionError: DataFrame.iloc[:, 0] (column name=""A"") are different + +DataFrame.iloc[:, 0] (column name=""A"") values are different (100.0 %) +[index]: [0, 1, 2] +[left]: [1, 4, 7] +[right]: [nan, 7.0, 4.0]",failed +3624,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_multiindex[item_values2-item_index2-None-5-col_key1-None-row_key3-row_key_index3],"AssertionError: DataFrame.iloc[:, 1] (column name=""('b', 2)"") are different DataFrame.iloc[:, 1] (column name=""('b', 2)"") values are different (40.0 %) [index]: [(x, 99), (y, 11), (x, 11), (y, 99), (z, -12)] [left]: [2.0, nan, nan, 56.0, -6.0] [right]: [2, -996, -997, 56, -6]",failed -4431,tests.integ.modin.frame.test_iloc,test_df_iloc_get_dataframe[key4-1-2],"ValueError: -Location based indexing can only have [integer, integer slice (START point is -INCLUDED, END point is EXCLUDED), listlike of integers, boolean array] types.",failed -4433,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[count-all-False],AttributeError: can't set attribute,failed -4441,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[count-index-True],AttributeError: can't set attribute,failed -4446,tests.integ.modin.frame.test_iloc,test_df_iloc_get_dataframe[key9-1-2],"ValueError: -Location based indexing can only have [integer, integer slice (START point is -INCLUDED, END point is EXCLUDED), listlike of integers, boolean array] types.",failed -4447,tests.integ.modin.binary.test_binary_op,test_binary_mod_between_df_and_list_like_on_axis_0_deviating_behavior[index_with_name-rmod],Failed: DID NOT RAISE ,failed -4449,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_multiindex[item_values2-item_index2-None-5-col_key2-col_key_index2-1-None],ValueError: buffer source array is read-only,failed -4451,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[count-index-False],AttributeError: can't set attribute,failed -4453,tests.integ.modin.binary.test_binary_op,test_binary_mod_between_df_and_list_like_on_axis_1_deviating_behavior[list-mod],Failed: DID NOT RAISE ,failed -4455,tests.integ.modin.frame.test_iloc,test_df_iloc_get_dataframe[key10-1-2],"ValueError: -Location based indexing can only have [integer, integer slice (START point is -INCLUDED, END point is EXCLUDED), listlike of integers, boolean array] types.",failed -4457,tests.integ.modin.binary.test_binary_op,test_binary_mod_between_df_and_list_like_on_axis_1_deviating_behavior[list-rmod],Failed: DID NOT RAISE ,failed -4459,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[count-columns-True],AttributeError: can't set attribute,failed -4461,tests.integ.modin.binary.test_binary_op,test_binary_mod_between_df_and_list_like_on_axis_1_deviating_behavior[ndarray-mod],Failed: DID NOT RAISE ,failed -4464,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_multiindex[item_values2-item_index2-None-5-col_key2-col_key_index2-row_key1-None],"AssertionError: DataFrame.iloc[:, 1] (column name=""('b', 2)"") are different +3630,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[median1-1-True],AttributeError: can't set attribute,failed +3640,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[median1-1-False],AttributeError: can't set attribute,failed +3676,tests.integ.modin.binary.test_binary_op,test_binary_mod_between_series_and_list_like_deviating_behavior[list-mod],Failed: DID NOT RAISE ,failed +3678,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[median1-True-True],AttributeError: can't set attribute,failed +3680,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_multiindex[item_values2-item_index2-None-5-col_key2-col_key_index2-1-None],ValueError: buffer source array is read-only,failed +3681,tests.integ.modin.binary.test_binary_op,test_binary_mod_between_series_and_list_like_deviating_behavior[list-rmod],Failed: DID NOT RAISE ,failed +3684,tests.integ.modin.frame.test_idxmax_idxmin,test_idxmax_idxmin_df[True-0-idxmin-data9-index9],reason: Snowpark pandas returns a Series with None whereas pandas throws a ValueError,xfailed +3685,tests.integ.modin.binary.test_binary_op,test_binary_mod_between_series_and_list_like_deviating_behavior[ndarray-mod],Failed: DID NOT RAISE ,failed +3688,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[median1-True-False],AttributeError: can't set attribute,failed +3689,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_multiindex[item_values2-item_index2-None-5-col_key2-col_key_index2-row_key1-None],"AssertionError: DataFrame.iloc[:, 1] (column name=""('b', 2)"") are different DataFrame.iloc[:, 1] (column name=""('b', 2)"") values are different (40.0 %) [index]: [(x, 99), (y, 11), (x, 11), (y, 99), (z, -12)] [left]: [nan, 11.0, 101.0, nan, -6.0] [right]: [-998, 11, 101, -999, -6]",failed -4466,tests.integ.modin.frame.test_iloc,test_df_iloc_get_dataframe[key11-1-2],"ValueError: -Location based indexing can only have [integer, integer slice (START point is -INCLUDED, END point is EXCLUDED), listlike of integers, boolean array] types.",failed -4468,tests.integ.modin.binary.test_binary_op,test_binary_mod_between_df_and_list_like_on_axis_1_deviating_behavior[ndarray-rmod],Failed: DID NOT RAISE ,failed -4473,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[count-columns-False],AttributeError: can't set attribute,failed -4474,tests.integ.modin.binary.test_binary_op,test_binary_mod_between_df_and_list_like_on_axis_1_deviating_behavior[index-mod],Failed: DID NOT RAISE ,failed -4477,tests.integ.modin.frame.test_iloc,test_df_iloc_get_dataframe[key12-1-2],"ValueError: -Location based indexing can only have [integer, integer slice (START point is -INCLUDED, END point is EXCLUDED), listlike of integers, boolean array] types.",failed -4481,tests.integ.modin.binary.test_binary_op,test_binary_mod_between_df_and_list_like_on_axis_1_deviating_behavior[index-rmod],Failed: DID NOT RAISE ,failed -4482,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_multiindex[item_values2-item_index2-None-5-col_key2-col_key_index2-row_key2-row_key_index2],"AssertionError: DataFrame.iloc[:, 1] (column name=""('b', 2)"") are different +3693,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[median1-all-True],AttributeError: can't set attribute,failed +3698,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_multiindex[item_values2-item_index2-None-5-col_key2-col_key_index2-row_key2-row_key_index2],"AssertionError: DataFrame.iloc[:, 1] (column name=""('b', 2)"") are different DataFrame.iloc[:, 1] (column name=""('b', 2)"") values are different (40.0 %) [index]: [(x, 99), (y, 11), (x, 11), (y, 99), (z, -12)] [left]: [2.0, nan, nan, 56.0, -6.0] [right]: [2, -999, -998, 56, -6]",failed -4487,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[mean0-0-True],AttributeError: can't set attribute,failed -4488,tests.integ.modin.binary.test_binary_op,test_binary_mod_between_df_and_list_like_on_axis_1_deviating_behavior[index_with_name-mod],Failed: DID NOT RAISE ,failed -4490,tests.integ.modin.test_concat,test_concat_object_with_same_index_with_dup[inner],pandas.errors.InvalidIndexError: Reindexing only valid with uniquely valued Index objects,failed -4496,tests.integ.modin.binary.test_binary_op,test_binary_mod_between_df_and_list_like_on_axis_1_deviating_behavior[index_with_name-rmod],Failed: DID NOT RAISE ,failed -4501,tests.integ.modin.frame.test_iloc,test_df_iloc_get_dataframe[key17-1-0],"ValueError: -Location based indexing can only have [integer, integer slice (START point is -INCLUDED, END point is EXCLUDED), listlike of integers, boolean array] types.",failed -4502,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[mean0-0-False],AttributeError: can't set attribute,failed -4503,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_multiindex[item_values2-item_index2-None-5-col_key2-col_key_index2-row_key3-row_key_index3],"AssertionError: DataFrame.iloc[:, 1] (column name=""('b', 2)"") are different +3699,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[median1-all-False],AttributeError: can't set attribute,failed +3702,tests.integ.modin.frame.test_loc,test_df_loc_set_general_col_key_type_with_duplicate_columns[series-col_key6],ValueError: cannot reindex on an axis with duplicate labels,failed +3704,tests.integ.modin.binary.test_binary_op,test_binary_mod_between_series_and_list_like_deviating_behavior[ndarray-rmod],Failed: DID NOT RAISE ,failed +3706,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[median1-index-True],AttributeError: can't set attribute,failed +3707,tests.integ.modin.binary.test_binary_op,test_binary_mod_between_series_and_list_like_deviating_behavior[index-mod],Failed: DID NOT RAISE ,failed +3708,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_multiindex[item_values2-item_index2-None-5-col_key2-col_key_index2-row_key3-row_key_index3],"AssertionError: DataFrame.iloc[:, 1] (column name=""('b', 2)"") are different DataFrame.iloc[:, 1] (column name=""('b', 2)"") values are different (40.0 %) [index]: [(x, 99), (y, 11), (x, 11), (y, 99), (z, -12)] [left]: [2.0, nan, nan, 56.0, -6.0] [right]: [2, -998, -999, 56, -6]",failed -4504,tests.integ.modin.test_concat,test_concat_object_with_same_index_with_dup_sort[inner],pandas.errors.InvalidIndexError: Reindexing only valid with uniquely valued Index objects,failed -4516,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[mean0-1-True],AttributeError: can't set attribute,failed -4518,tests.integ.modin.test_concat,test_concat_object_with_same_index_with_dup_sort[outer],pandas.errors.InvalidIndexError: Reindexing only valid with uniquely valued Index objects,failed -4521,tests.integ.modin.frame.test_iloc,test_df_iloc_get_dataframe_with_range[key0],AttributeError: 'DataFrame' object has no attribute 'ordered_dataframe',failed -4527,tests.integ.modin.binary.test_binary_op,test_binary_pow_deviating_behavior_series[ser1-res1],"AssertionError: Attributes of Series are different - -Attribute ""dtype"" are different -[left]: object -[right]: float64",failed -4533,tests.integ.modin.binary.test_binary_op,test_binary_pow_deviating_behavior_series[ser2-res2],"AssertionError: Attributes of Series are different +3711,tests.integ.modin.binary.test_binary_op,test_binary_mod_between_series_and_list_like_deviating_behavior[index-rmod],Failed: DID NOT RAISE ,failed +3713,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[median1-index-False],AttributeError: can't set attribute,failed +3716,tests.integ.modin.binary.test_binary_op,test_binary_mod_between_series_and_list_like_deviating_behavior[index_with_name-mod],Failed: DID NOT RAISE ,failed +3719,tests.integ.modin.binary.test_binary_op,test_binary_mod_between_series_and_list_like_deviating_behavior[index_with_name-rmod],Failed: DID NOT RAISE ,failed +3722,tests.integ.modin.binary.test_binary_op,test_binary_mod_between_df_and_list_like_on_axis_0_deviating_behavior[list-mod],Failed: DID NOT RAISE ,failed +3724,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[median1-columns-True],AttributeError: can't set attribute,failed +3725,tests.integ.modin.frame.test_loc,test_df_loc_set_general_col_key_type_with_duplicate_columns[series-col_key8],"AssertionError: DataFrame.iloc[:, 0] (column name=""A"") are different -Attribute ""dtype"" are different -[left]: object -[right]: float64",failed -4536,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[mean0-1-False],AttributeError: can't set attribute,failed -4541,tests.integ.modin.frame.test_iloc,test_df_iloc_get_dataframe_with_range[key1],AttributeError: 'DataFrame' object has no attribute 'ordered_dataframe',failed -4544,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_multiindex[item_values2-item_index2-None-5-col_key3-col_key_index3-1-None],ValueError: buffer source array is read-only,failed -4550,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[mean0-True-True],AttributeError: can't set attribute,failed -4554,tests.integ.modin.frame.test_iloc,test_df_iloc_get_dataframe_with_range[key2],AttributeError: 'DataFrame' object has no attribute 'ordered_dataframe',failed -4559,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_multiindex[item_values2-item_index2-None-5-col_key3-col_key_index3-row_key1-None],"AssertionError: DataFrame.iloc[:, 1] (column name=""('b', 2)"") are different +DataFrame.iloc[:, 0] (column name=""A"") values are different (100.0 %) +[index]: [0, 1, 2] +[left]: [nan, 7.0, 4.0] +[right]: [1.0, 4.0, 7.0] +At positional index 0, first diff: nan != 1.0",failed +3728,tests.integ.modin.binary.test_binary_op,test_binary_mod_between_df_and_list_like_on_axis_0_deviating_behavior[list-rmod],Failed: DID NOT RAISE ,failed +3731,tests.integ.modin.binary.test_binary_op,test_binary_mod_between_df_and_list_like_on_axis_0_deviating_behavior[ndarray-mod],Failed: DID NOT RAISE ,failed +3733,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_multiindex[item_values2-item_index2-None-5-col_key3-col_key_index3-1-None],ValueError: buffer source array is read-only,failed +3735,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[median1-columns-False],AttributeError: can't set attribute,failed +3736,tests.integ.modin.binary.test_binary_op,test_binary_mod_between_df_and_list_like_on_axis_0_deviating_behavior[ndarray-rmod],Failed: DID NOT RAISE ,failed +3738,tests.integ.modin.binary.test_binary_op,test_binary_mod_between_df_and_list_like_on_axis_0_deviating_behavior[index-mod],Failed: DID NOT RAISE ,failed +3739,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_multiindex[item_values2-item_index2-None-5-col_key3-col_key_index3-row_key1-None],"AssertionError: DataFrame.iloc[:, 1] (column name=""('b', 2)"") are different DataFrame.iloc[:, 1] (column name=""('b', 2)"") values are different (40.0 %) [index]: [(x, 99), (y, 11), (x, 11), (y, 99), (z, -12)] [left]: [nan, 11.0, 101.0, nan, -6.0] [right]: [-996, 11, 101, -997, -6]",failed -4564,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[mean0-True-False],AttributeError: can't set attribute,failed -4565,tests.integ.modin.frame.test_iloc,test_df_iloc_get_dataframe_with_range[key3],AttributeError: 'DataFrame' object has no attribute 'ordered_dataframe',failed -4574,tests.integ.modin.frame.test_iloc,test_df_iloc_get_dataframe_with_range[key4],AttributeError: 'DataFrame' object has no attribute 'ordered_dataframe',failed -4576,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[mean0-all-True],AttributeError: can't set attribute,failed -4578,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_multiindex[item_values2-item_index2-None-5-col_key3-col_key_index3-row_key2-row_key_index2],"AssertionError: DataFrame.iloc[:, 1] (column name=""('b', 2)"") are different +3742,tests.integ.modin.binary.test_binary_op,test_binary_mod_between_df_and_list_like_on_axis_0_deviating_behavior[index-rmod],Failed: DID NOT RAISE ,failed +3743,tests.integ.modin.frame.test_loc,test_df_loc_set_general_col_key_type_with_duplicate_columns[series-col_key10],AssertionError: exception type does not match with expected type ,failed +3745,tests.integ.modin.binary.test_binary_op,test_binary_mod_between_df_and_list_like_on_axis_0_deviating_behavior[index_with_name-mod],Failed: DID NOT RAISE ,failed +3746,tests.integ.modin.binary.test_binary_op,test_binary_mod_between_df_and_list_like_on_axis_0_deviating_behavior[index_with_name-rmod],Failed: DID NOT RAISE ,failed +3749,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_multiindex[item_values2-item_index2-None-5-col_key3-col_key_index3-row_key2-row_key_index2],"AssertionError: DataFrame.iloc[:, 1] (column name=""('b', 2)"") are different DataFrame.iloc[:, 1] (column name=""('b', 2)"") values are different (40.0 %) [index]: [(x, 99), (y, 11), (x, 11), (y, 99), (z, -12)] [left]: [2.0, nan, nan, 56.0, -6.0] [right]: [2, -997, -996, 56, -6]",failed -4588,tests.integ.modin.frame.test_iloc,test_df_iloc_get_dataframe_with_range[key5],AttributeError: 'DataFrame' object has no attribute 'ordered_dataframe',failed -4590,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[mean0-all-False],AttributeError: can't set attribute,failed -4594,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_multiindex[item_values2-item_index2-None-5-col_key3-col_key_index3-row_key3-row_key_index3],"AssertionError: DataFrame.iloc[:, 1] (column name=""('b', 2)"") are different +3751,tests.integ.modin.binary.test_binary_op,test_binary_mod_between_df_and_list_like_on_axis_1_deviating_behavior[list-mod],Failed: DID NOT RAISE ,failed +3752,tests.integ.modin.binary.test_binary_op,test_binary_mod_between_df_and_list_like_on_axis_1_deviating_behavior[list-rmod],Failed: DID NOT RAISE ,failed +3754,tests.integ.modin.binary.test_binary_op,test_binary_mod_between_df_and_list_like_on_axis_1_deviating_behavior[ndarray-mod],Failed: DID NOT RAISE ,failed +3756,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_multiindex[item_values2-item_index2-None-5-col_key3-col_key_index3-row_key3-row_key_index3],"AssertionError: DataFrame.iloc[:, 1] (column name=""('b', 2)"") are different DataFrame.iloc[:, 1] (column name=""('b', 2)"") values are different (40.0 %) [index]: [(x, 99), (y, 11), (x, 11), (y, 99), (z, -12)] [left]: [2.0, nan, nan, 56.0, -6.0] [right]: [2, -996, -997, 56, -6]",failed -4599,tests.integ.modin.frame.test_iloc,test_df_iloc_get_dataframe_with_range[key6],AttributeError: 'DataFrame' object has no attribute 'ordered_dataframe',failed -4602,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[mean0-index-True],AttributeError: can't set attribute,failed -4605,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_multiindex[item_values3-item_index3-item_columns3-5-2-None-1-None],"AssertionError: DataFrame.iloc[:, 2] (column name=""('a', 2)"") are different +3757,tests.integ.modin.binary.test_binary_op,test_binary_mod_between_df_and_list_like_on_axis_1_deviating_behavior[ndarray-rmod],Failed: DID NOT RAISE ,failed +3758,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[count-0-True],AttributeError: can't set attribute,failed +3759,tests.integ.modin.binary.test_binary_op,test_binary_mod_between_df_and_list_like_on_axis_1_deviating_behavior[index-mod],Failed: DID NOT RAISE ,failed +3761,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_multiindex[item_values3-item_index3-item_columns3-5-2-None-1-None],"AssertionError: DataFrame.iloc[:, 2] (column name=""('a', 2)"") are different DataFrame.iloc[:, 2] (column name=""('a', 2)"") values are different (20.0 %) [index]: [(x, 99), (y, 11), (x, 11), (y, 99), (z, -12)] [left]: [3.0, nan, 98.0, 57.0, -7.0] [right]: [3, -999, 98, 57, -7]",failed -4612,tests.integ.modin.frame.test_iloc,test_df_iloc_get_dataframe_with_range[key7],AttributeError: 'DataFrame' object has no attribute 'ordered_dataframe',failed -4614,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[mean0-index-False],AttributeError: can't set attribute,failed -4615,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_multiindex[item_values3-item_index3-item_columns3-5-2-None-row_key1-None],"AssertionError: DataFrame.iloc[:, 2] (column name=""('a', 2)"") are different +3762,tests.integ.modin.binary.test_binary_op,test_binary_mod_between_df_and_list_like_on_axis_1_deviating_behavior[index-rmod],Failed: DID NOT RAISE ,failed +3764,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[count-0-False],AttributeError: can't set attribute,failed +3766,tests.integ.modin.binary.test_binary_op,test_binary_mod_between_df_and_list_like_on_axis_1_deviating_behavior[index_with_name-mod],Failed: DID NOT RAISE ,failed +3768,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_multiindex[item_values3-item_index3-item_columns3-5-2-None-row_key1-None],"AssertionError: DataFrame.iloc[:, 2] (column name=""('a', 2)"") are different DataFrame.iloc[:, 2] (column name=""('a', 2)"") values are different (40.0 %) [index]: [(x, 99), (y, 11), (x, 11), (y, 99), (z, -12)] [left]: [nan, 12.0, 98.0, nan, -7.0] [right]: [-998, 12, 98, -999, -7]",failed -4623,tests.integ.modin.test_concat,test_concat_timedelta_not_implemented,Failed: DID NOT RAISE ,failed -4625,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_multiindex[item_values3-item_index3-item_columns3-5-2-None-row_key2-row_key_index2],"AssertionError: DataFrame.iloc[:, 2] (column name=""('a', 2)"") are different +3770,tests.integ.modin.frame.test_loc,test_df_loc_set_general_key_with_duplicate_rows[series-item1],ValueError: cannot reindex on an axis with duplicate labels,failed +3772,tests.integ.modin.binary.test_binary_op,test_binary_mod_between_df_and_list_like_on_axis_1_deviating_behavior[index_with_name-rmod],Failed: DID NOT RAISE ,failed +3774,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[count-1-True],AttributeError: can't set attribute,failed +3781,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_multiindex[item_values3-item_index3-item_columns3-5-2-None-row_key2-row_key_index2],"AssertionError: DataFrame.iloc[:, 2] (column name=""('a', 2)"") are different DataFrame.iloc[:, 2] (column name=""('a', 2)"") values are different (40.0 %) [index]: [(x, 99), (y, 11), (x, 11), (y, 99), (z, -12)] [left]: [3.0, nan, nan, 57.0, -7.0] [right]: [3, -999, -998, 57, -7]",failed -4629,tests.integ.modin.binary.test_timedelta,test_timestamp_dataframe_minus_timestamp_series,TypeError: cannot subtract DatetimeArray from ndarray,failed -4636,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_multiindex[item_values3-item_index3-item_columns3-5-2-None-row_key3-row_key_index3],"AssertionError: DataFrame.iloc[:, 2] (column name=""('a', 2)"") are different +3787,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[count-1-False],AttributeError: can't set attribute,failed +3799,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_multiindex[item_values3-item_index3-item_columns3-5-2-None-row_key3-row_key_index3],"AssertionError: DataFrame.iloc[:, 2] (column name=""('a', 2)"") are different DataFrame.iloc[:, 2] (column name=""('a', 2)"") values are different (40.0 %) [index]: [(x, 99), (y, 11), (x, 11), (y, 99), (z, -12)] [left]: [3.0, nan, nan, 57.0, -7.0] [right]: [3, -998, -999, 57, -7]",failed -4637,tests.integ.modin.frame.test_iloc,test_df_iloc_get_dataframe_with_range[key8],AttributeError: 'DataFrame' object has no attribute 'ordered_dataframe',failed -4640,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[mean0-columns-True],AttributeError: can't set attribute,failed -4646,tests.integ.modin.frame.test_iloc,test_df_iloc_get_dataframe_with_range[key9],AttributeError: 'DataFrame' object has no attribute 'ordered_dataframe',failed -4651,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[mean0-columns-False],AttributeError: can't set attribute,failed -4665,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[mean1-0-True],AttributeError: can't set attribute,failed -4668,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_multiindex[item_values3-item_index3-item_columns3-5-col_key1-None-1-None],ValueError: buffer source array is read-only,failed -4680,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[mean1-0-False],AttributeError: can't set attribute,failed -4681,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_multiindex[item_values3-item_index3-item_columns3-5-col_key1-None-row_key1-None],"AssertionError: DataFrame.iloc[:, 1] (column name=""('b', 2)"") are different +3800,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[count-True-True],AttributeError: can't set attribute,failed +3808,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[count-True-False],AttributeError: can't set attribute,failed +3811,tests.integ.modin.binary.test_binary_op,test_binary_pow_deviating_behavior_series[ser1-res1],"AssertionError: Attributes of Series are different + +Attribute ""dtype"" are different +[left]: object +[right]: float64",failed +3814,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[count-all-True],AttributeError: can't set attribute,failed +3816,tests.integ.modin.frame.test_loc,test_df_loc_get_key_bool[series-key4],pandas.errors.IndexingError: Unalignable boolean Series provided as indexer (index of the boolean Series and of the indexed object do not match).,failed +3818,tests.integ.modin.binary.test_binary_op,test_binary_pow_deviating_behavior_series[ser2-res2],"AssertionError: Attributes of Series are different + +Attribute ""dtype"" are different +[left]: object +[right]: float64",failed +3842,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_multiindex[item_values3-item_index3-item_columns3-5-col_key1-None-1-None],ValueError: buffer source array is read-only,failed +3853,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[count-all-False],AttributeError: can't set attribute,failed +3856,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_multiindex[item_values3-item_index3-item_columns3-5-col_key1-None-row_key1-None],"AssertionError: DataFrame.iloc[:, 1] (column name=""('b', 2)"") are different DataFrame.iloc[:, 1] (column name=""('b', 2)"") values are different (40.0 %) [index]: [(x, 99), (y, 11), (x, 11), (y, 99), (z, -12)] [left]: [nan, 11.0, 101.0, nan, -6.0] [right]: [-996, 11, 101, -997, -6]",failed -4692,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[mean1-1-True],AttributeError: can't set attribute,failed -4695,tests.integ.modin.binary.test_timedelta,test_timestamp_series_minus_timestamp_dataframe,numpy.core._exceptions._UFuncBinaryResolutionError: ufunc 'subtract' cannot use operands with types dtype(',failed -4846,tests.integ.modin.test_cut,test_cut_labels_none_negative,Failed: DID NOT RAISE ,failed -4852,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[mean1-columns-True],AttributeError: can't set attribute,failed -4853,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_multiindex[item_values3-item_index3-item_columns3-5-col_key2-col_key_index2-row_key3-row_key_index3],"AssertionError: DataFrame.iloc[:, 1] (column name=""('b', 2)"") are different +3941,tests.integ.modin.frame.test_idxmax_idxmin,test_idxmax_idxmin_df[False-0-idxmin-data9-index9],reason: Snowpark pandas returns a Series with None whereas pandas throws a ValueError,xfailed +3952,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_multiindex[item_values3-item_index3-item_columns3-5-col_key2-col_key_index2-row_key3-row_key_index3],"AssertionError: DataFrame.iloc[:, 1] (column name=""('b', 2)"") are different DataFrame.iloc[:, 1] (column name=""('b', 2)"") values are different (40.0 %) [index]: [(x, 99), (y, 11), (x, 11), (y, 99), (z, -12)] [left]: [2.0, nan, nan, 56.0, -6.0] [right]: [2, -998, -999, 56, -6]",failed -4857,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[mean1-columns-False],AttributeError: can't set attribute,failed -4859,tests.integ.modin.binary.test_timedelta,test_timedelta_dataframe_plus_timestamp_series[add],numpy.core._exceptions._UFuncBinaryResolutionError: ufunc 'add' cannot use operands with types dtype('float64') and dtype(']",failed -4959,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_multiindex[item_values4-None-item_columns4-3-col_key1-None-row_key2-row_key_index2],"AssertionError: DataFrame.iloc[:, 1] (column name=""('b', 2)"") are different +[right]: [-998, 11, 101, -999, -6]",failed +4195,tests.integ.modin.frame.test_loc,test_df_loc_set_general_col_key_type[list-row_key1-col_key9],"KeyError: array(['1', '2'], dtype=', True, True, True, True, True, True, True, True, True, True, True]",failed +4205,tests.integ.modin.binary.test_binary_op,test_binary_comparison_method_between_series_numeric[eq-rhs0-lhs1],"AssertionError: Series are different Series values are different (11.11111 %) [index]: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17] [left]: [False, False, False, False, False, False, False, False, False, False, False, False, False, False, False, False, False, False] -[right]: [False, False, False, False, False, False, , False, False, False, False, False, False, False, False, False, False, ]",failed -4969,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[min1-0-False],AttributeError: can't set attribute,failed -4970,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_multiindex[item_values4-None-item_columns4-3-col_key1-None-row_key3-row_key_index3],"AssertionError: DataFrame.iloc[:, 1] (column name=""('b', 2)"") are different +[right]: [False, False, False, False, False, False, , False, False, False, False, False, , False, False, False, False, False]",failed +4206,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[mean1-columns-False],AttributeError: can't set attribute,failed +4211,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_multiindex[item_values4-None-item_columns4-3-col_key2-col_key_index2-row_key3-row_key_index3],"AssertionError: DataFrame.iloc[:, 1] (column name=""('b', 2)"") are different DataFrame.iloc[:, 1] (column name=""('b', 2)"") values are different (40.0 %) [index]: [(x, 99), (y, 11), (x, 11), (y, 99), (z, -12)] [left]: [2.0, nan, nan, 56.0, -6.0] -[right]: [2, -996, -997, 56, -6]",failed -4972,tests.integ.modin.frame.test_loc,test_df_loc_get_reversed_key_slice_with_unordered_nullable_index[first--1-1-None],KeyError: 2,failed -4973,tests.integ.modin.binary.test_binary_op,test_binary_comparison_method_between_series_numeric[eq-rhs0-lhs2],"AssertionError: Series are different +[right]: [2, -998, -999, 56, -6]",failed +4212,tests.integ.modin.frame.test_items,test_items[dataframe3],AssertionError: Got type: ,failed +4213,tests.integ.modin.frame.test_loc,test_df_loc_set_general_col_key_type[list-row_key1-col_key10],"KeyError: array(['E', 1, 'X', 2], dtype=object)",failed +4217,tests.integ.modin.frame.test_idxmax_idxmin,test_idxmax_idxmin_with_timedelta[1-idxmax],[XPASS(strict)] SNOW-1653126,failed +4218,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[min0-0-True],AttributeError: can't set attribute,failed +4219,tests.integ.modin.frame.test_idxmax_idxmin,test_idxmax_idxmin_with_timedelta[1-idxmin],[XPASS(strict)] SNOW-1653126,failed +4224,tests.integ.modin.binary.test_binary_op,test_binary_comparison_method_between_series_numeric[eq-rhs0-lhs2],TypeError: boolean value of NA is ambiguous,failed +4227,tests.integ.modin.frame.test_loc,test_df_loc_set_general_col_key_type_with_duplicate_columns[list-col_key1],"AssertionError: DataFrame.iloc[:, 0] (column name=""A"") are different -Series values are different (16.66667 %) -[index]: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17] -[left]: [False, False, False, False, False, False, False, False, False, False, False, False, False, False, False, False, False, False] -[right]: [False, , False, , False, False, False, False, False, False, False, False, False, False, False, False, False, ]",failed -4979,tests.integ.modin.binary.test_binary_op,test_binary_comparison_method_between_series_numeric[eq-rhs0-lhs3],"AssertionError: Series are different +DataFrame.iloc[:, 0] (column name=""A"") values are different (100.0 %) +[index]: [0, 1, 2] +[left]: [1, 4, 7] +[right]: [nan, 7.0, 4.0]",failed +4230,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_multiindex[item_values4-None-item_columns4-3-col_key3-col_key_index3-1-None],ValueError: buffer source array is read-only,failed +4234,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[min0-0-False],AttributeError: can't set attribute,failed +4235,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_multiindex[item_values4-None-item_columns4-3-col_key3-col_key_index3-row_key1-None],"AssertionError: DataFrame.iloc[:, 1] (column name=""('b', 2)"") are different -Series values are different (22.22222 %) -[index]: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17] -[left]: [False, False, False, False, False, False, False, False, False, False, False, False, False, False, False, False, False, False] -[right]: [False, , False, False, False, False, False, False, , , False, False, False, False, False, False, False, ]",failed -4985,tests.integ.modin.binary.test_binary_op,test_binary_comparison_method_between_series_numeric[eq-rhs1-lhs0],"AssertionError: Series are different +DataFrame.iloc[:, 1] (column name=""('b', 2)"") values are different (40.0 %) +[index]: [(x, 99), (y, 11), (x, 11), (y, 99), (z, -12)] +[left]: [nan, 11.0, 101.0, nan, -6.0] +[right]: [-996, 11, 101, -997, -6]",failed +4236,tests.integ.modin.binary.test_binary_op,test_binary_comparison_method_between_series_numeric[eq-rhs0-lhs3],TypeError: boolean value of NA is ambiguous,failed +4238,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[min0-1-True],AttributeError: can't set attribute,failed +4240,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_multiindex[item_values4-None-item_columns4-3-col_key3-col_key_index3-row_key2-row_key_index2],"AssertionError: DataFrame.iloc[:, 1] (column name=""('b', 2)"") are different + +DataFrame.iloc[:, 1] (column name=""('b', 2)"") values are different (40.0 %) +[index]: [(x, 99), (y, 11), (x, 11), (y, 99), (z, -12)] +[left]: [2.0, nan, nan, 56.0, -6.0] +[right]: [2, -997, -996, 56, -6]",failed +4241,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[min0-1-False],AttributeError: can't set attribute,failed +4243,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[min0-True-True],AttributeError: can't set attribute,failed +4246,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_multiindex[item_values4-None-item_columns4-3-col_key3-col_key_index3-row_key3-row_key_index3],"AssertionError: DataFrame.iloc[:, 1] (column name=""('b', 2)"") are different + +DataFrame.iloc[:, 1] (column name=""('b', 2)"") values are different (40.0 %) +[index]: [(x, 99), (y, 11), (x, 11), (y, 99), (z, -12)] +[left]: [2.0, nan, nan, 56.0, -6.0] +[right]: [2, -996, -997, 56, -6]",failed +4247,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[min0-True-False],AttributeError: can't set attribute,failed +4248,tests.integ.modin.binary.test_binary_op,test_binary_comparison_method_between_series_numeric[eq-rhs1-lhs0],"AssertionError: Series are different Series values are different (11.11111 %) [index]: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17] [left]: [False, False, False, False, False, False, False, False, False, False, False, False, False, False, False, False, False, False] -[right]: [False, False, False, False, False, False, , False, False, False, False, False, False, False, False, False, False, ]",failed -4986,tests.integ.modin.frame.test_loc,test_df_loc_get_reversed_key_slice_with_unordered_nullable_index[first--1-1-1],KeyError: 2,failed -4987,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_multiindex[item_values4-None-item_columns4-3-col_key2-col_key_index2-1-None],ValueError: buffer source array is read-only,failed -4988,tests.integ.modin.binary.test_binary_op,test_binary_arithmetic_ops_between_df_and_scalar_nan_behavior_deviates[10.001-add],"AssertionError: DataFrame.iloc[:, 0] (column name=""0"") are different - -DataFrame.iloc[:, 0] (column name=""0"") values are different (33.33333 %) -[index]: [0, 1, 2] -[left]: [nan, nan, nan] -[right]: [24.000999999999998, nan, nan] -At positional index 0, first diff: nan != 24.000999999999998",failed -4990,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[min1-1-True],AttributeError: can't set attribute,failed -4991,tests.integ.modin.binary.test_binary_op,test_binary_comparison_method_between_series_numeric[eq-rhs1-lhs1],"AssertionError: Series are different +[right]: [False, False, False, False, False, False, , False, False, False, False, False, , False, False, False, False, False]",failed +4250,tests.integ.modin.test_apply_persist,test_apply_existing_udf,TypeError: dummy() got an unexpected keyword argument 'snowflake_udf_params',failed +4251,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[min0-all-True],AttributeError: can't set attribute,failed +4252,tests.integ.modin.binary.test_binary_op,test_binary_comparison_method_between_series_numeric[eq-rhs1-lhs1],"AssertionError: Series are different Series values are different (5.55556 %) [index]: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17] -[left]: [True, True, True, True, True, True, False, True, True, True, True, True, True, True, True, True, True, True] -[right]: [True, True, True, True, True, True, , True, True, True, True, True, True, True, True, True, True, True]",failed -4992,tests.integ.modin.binary.test_binary_op,test_binary_arithmetic_ops_between_df_and_scalar_nan_behavior_deviates[10.001-radd],"AssertionError: DataFrame.iloc[:, 0] (column name=""0"") are different +[left]: [True, True, True, True, True, True, True, True, True, True, True, True, False, True, True, True, True, True] +[right]: [True, True, True, True, True, True, True, True, True, True, True, True, , True, True, True, True, True]",failed +4254,tests.integ.modin.frame.test_loc,test_df_loc_set_general_col_key_type_with_duplicate_columns[list-col_key6],ValueError: cannot reindex on an axis with duplicate labels,failed +4255,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[min0-all-False],AttributeError: can't set attribute,failed +4256,tests.integ.modin.test_apply_persist,test_apply_or_map_permanent_def[apply],TypeError: double() got an unexpected keyword argument 'snowflake_udf_params',failed +4260,tests.integ.modin.frame.test_idxmax_idxmin,test_idxmax_idxmin_empty_df_with_index[1-idxmax],reason: Snowpark pandas returns empty dataframe instead of ValueError,xfailed +4261,tests.integ.modin.frame.test_idxmax_idxmin,test_idxmax_idxmin_empty_df_with_index[1-idxmin],reason: Snowpark pandas returns empty dataframe instead of ValueError,xfailed +4263,tests.integ.modin.binary.test_binary_op,test_binary_comparison_method_between_series_numeric[eq-rhs1-lhs2],TypeError: boolean value of NA is ambiguous,failed +4264,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[min0-index-True],AttributeError: can't set attribute,failed +4265,tests.integ.modin.frame.test_idxmax_idxmin,test_idxmax_idxmin_crazy_column_names_axis_1[1-idxmax],[XPASS(strict)] Snowpark lit() cannot parse pd.Timestamp,failed +4267,tests.integ.modin.frame.test_idxmax_idxmin,test_idxmax_idxmin_crazy_column_names_axis_1[1-idxmin],[XPASS(strict)] Snowpark lit() cannot parse pd.Timestamp,failed +4268,tests.integ.modin.frame.test_loc,test_df_loc_set_general_col_key_type_with_duplicate_columns[list-col_key8],"AssertionError: DataFrame.iloc[:, 0] (column name=""A"") are different -DataFrame.iloc[:, 0] (column name=""0"") values are different (33.33333 %) +DataFrame.iloc[:, 0] (column name=""A"") values are different (100.0 %) [index]: [0, 1, 2] -[left]: [nan, nan, nan] -[right]: [24.000999999999998, nan, nan] -At positional index 0, first diff: nan != 24.000999999999998",failed -4993,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[min1-1-False],AttributeError: can't set attribute,failed -4994,tests.integ.modin.binary.test_binary_op,test_binary_arithmetic_ops_between_df_and_scalar_nan_behavior_deviates[10.001-sub],"AssertionError: DataFrame.iloc[:, 0] (column name=""0"") are different +[left]: [nan, 7.0, 4.0] +[right]: [1.0, 4.0, 7.0] +At positional index 0, first diff: nan != 1.0",failed +4269,tests.integ.modin.frame.test_idxmax_idxmin,test_idxmax_idxmin_multiindex_unsupported[0-idxmax],[XPASS(strict)] ,failed +4271,tests.integ.modin.frame.test_idxmax_idxmin,test_idxmax_idxmin_multiindex_unsupported[0-idxmin],[XPASS(strict)] ,failed +4275,tests.integ.modin.frame.test_idxmax_idxmin,test_idxmax_idxmin_multiindex_unsupported[1-idxmax],[XPASS(strict)] ,failed +4276,tests.integ.modin.test_apply_persist,test_apply_or_map_permanent_def[map],TypeError: double() got an unexpected keyword argument 'snowflake_udf_params',failed +4278,tests.integ.modin.frame.test_idxmax_idxmin,test_idxmax_idxmin_multiindex_unsupported[1-idxmin],[XPASS(strict)] ,failed +4280,tests.integ.modin.binary.test_binary_op,test_binary_comparison_method_between_series_numeric[eq-rhs1-lhs3],TypeError: boolean value of NA is ambiguous,failed +4283,tests.integ.modin.frame.test_loc,test_df_loc_set_general_col_key_type_with_duplicate_columns[list-col_key10],AssertionError: exception type does not match with expected type ,failed +4286,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[min0-index-False],AttributeError: can't set attribute,failed +4288,tests.integ.modin.binary.test_binary_op,test_binary_comparison_method_between_series_numeric[eq-rhs2-lhs0],TypeError: boolean value of NA is ambiguous,failed +4289,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[min0-columns-True],AttributeError: can't set attribute,failed +4291,tests.integ.modin.binary.test_binary_op,test_binary_comparison_method_between_series_numeric[eq-rhs2-lhs1],TypeError: boolean value of NA is ambiguous,failed +4292,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[min0-columns-False],AttributeError: can't set attribute,failed +4293,tests.integ.modin.test_apply_persist,test_apply_permanent_lambda,TypeError: () got an unexpected keyword argument 'snowflake_udf_params',failed +4295,tests.integ.modin.frame.test_loc,test_df_loc_set_general_key_with_duplicate_rows[list-item1],ValueError: cannot reindex on an axis with duplicate labels,failed +4297,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[min1-0-True],AttributeError: can't set attribute,failed +4302,tests.integ.modin.test_apply_persist,test_apply_named_udf_negative,TypeError: identity() got an unexpected keyword argument 'snowflake_udf_params',failed +4304,tests.integ.modin.frame.test_iloc,test_df_iloc_get_multiindex_key_negative,"ValueError: +Location based indexing can only have [integer, integer slice (START point is +INCLUDED, END point is EXCLUDED), listlike of integers, boolean array] types.",failed +4305,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[min1-0-False],AttributeError: can't set attribute,failed +4311,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[min1-1-True],AttributeError: can't set attribute,failed +4314,tests.integ.modin.test_apply_persist,test_grouby_apply_permanent,TypeError: sum_plus_one() got an unexpected keyword argument 'snowflake_udf_params',failed +4317,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[min1-1-False],AttributeError: can't set attribute,failed +4319,tests.integ.modin.binary.test_binary_op,test_binary_comparison_method_between_series_numeric[eq-rhs2-lhs2],TypeError: boolean value of NA is ambiguous,failed +4324,tests.integ.modin.test_apply_persist,test_apply_immutable,TypeError: immutable_f() got an unexpected keyword argument 'snowflake_udf_params',failed +4330,tests.integ.modin.binary.test_binary_op,test_binary_comparison_method_between_series_numeric[eq-rhs2-lhs3],TypeError: boolean value of NA is ambiguous,failed +4331,tests.integ.modin.frame.test_iloc,test_df_row_return_dataframe[key0-1-2],"ValueError: +Location based indexing can only have [integer, integer slice (START point is +INCLUDED, END point is EXCLUDED), listlike of integers, boolean array] types.",failed +4337,tests.integ.modin.frame.test_loc,test_df_loc_get_key_bool[list-key5],IndexError: positional indexers are out-of-bounds,failed +4346,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[min1-True-True],AttributeError: can't set attribute,failed +4350,tests.integ.modin.binary.test_binary_op,test_binary_comparison_method_between_series_numeric[eq-rhs3-lhs0],TypeError: boolean value of NA is ambiguous,failed +4352,tests.integ.modin.frame.test_iloc,test_df_row_return_dataframe[key5-1-2],"ValueError: +Location based indexing can only have [integer, integer slice (START point is +INCLUDED, END point is EXCLUDED), listlike of integers, boolean array] types.",failed +4358,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[min1-True-False],AttributeError: can't set attribute,failed +4370,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[min1-all-True],AttributeError: can't set attribute,failed +4373,tests.integ.modin.binary.test_binary_op,test_binary_comparison_method_between_series_numeric[eq-rhs3-lhs1],TypeError: boolean value of NA is ambiguous,failed +4374,tests.integ.modin.frame.test_iloc,test_df_row_return_dataframe[key10-1-2],"ValueError: +Location based indexing can only have [integer, integer slice (START point is +INCLUDED, END point is EXCLUDED), listlike of integers, boolean array] types.",failed +4380,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[min1-all-False],AttributeError: can't set attribute,failed +4383,tests.integ.modin.frame.test_iloc,test_df_row_return_dataframe[key11-1-2],"ValueError: +Location based indexing can only have [integer, integer slice (START point is +INCLUDED, END point is EXCLUDED), listlike of integers, boolean array] types.",failed +4390,tests.integ.modin.frame.test_iloc,test_df_row_return_dataframe[key12-1-2],"ValueError: +Location based indexing can only have [integer, integer slice (START point is +INCLUDED, END point is EXCLUDED), listlike of integers, boolean array] types.",failed +4391,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[min1-index-True],AttributeError: can't set attribute,failed +4396,tests.integ.modin.frame.test_iloc,test_df_row_return_dataframe[key13-1-2],"ValueError: +Location based indexing can only have [integer, integer slice (START point is +INCLUDED, END point is EXCLUDED), listlike of integers, boolean array] types.",failed +4401,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[min1-index-False],AttributeError: can't set attribute,failed +4414,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[min1-columns-True],AttributeError: can't set attribute,failed +4417,tests.integ.modin.frame.test_iloc,test_df_row_return_dataframe[key18-1-0],"ValueError: +Location based indexing can only have [integer, integer slice (START point is +INCLUDED, END point is EXCLUDED), listlike of integers, boolean array] types.",failed +4422,tests.integ.modin.binary.test_binary_op,test_binary_comparison_method_between_series_numeric[eq-rhs3-lhs2],TypeError: boolean value of NA is ambiguous,failed +4425,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[min1-columns-False],AttributeError: can't set attribute,failed +4442,tests.integ.modin.frame.test_loc,test_df_loc_set_series_and_list_like_row_key_negative[array],KeyError: array([3]),failed +4444,tests.integ.modin.binary.test_binary_op,test_binary_comparison_method_between_series_numeric[eq-rhs3-lhs3],TypeError: boolean value of NA is ambiguous,failed +4449,tests.integ.modin.frame.test_iloc,test_df_iloc_get_dataframe[key4-1-2],"ValueError: +Location based indexing can only have [integer, integer slice (START point is +INCLUDED, END point is EXCLUDED), listlike of integers, boolean array] types.",failed +4453,tests.integ.modin.binary.test_binary_op,test_binary_comparison_method_between_series_numeric[ne-rhs0-lhs0],"AssertionError: Series are different -DataFrame.iloc[:, 0] (column name=""0"") values are different (33.33333 %) -[index]: [0, 1, 2] -[left]: [nan, nan, nan] -[right]: [3.9990000000000006, nan, nan] -At positional index 0, first diff: nan != 3.9990000000000006",failed -4996,tests.integ.modin.binary.test_binary_op,test_binary_comparison_method_between_series_numeric[eq-rhs1-lhs2],"AssertionError: Series are different +Series values are different (5.55556 %) +[index]: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17] +[left]: [False, False, False, False, False, False, True, False, False, False, False, False, False, False, False, False, False, False] +[right]: [False, False, False, False, False, False, , False, False, False, False, False, False, False, False, False, False, False]",failed +4465,tests.integ.modin.binary.test_binary_op,test_binary_comparison_method_between_series_numeric[ne-rhs0-lhs1],"AssertionError: Series are different -Series values are different (22.22222 %) +Series values are different (11.11111 %) [index]: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17] -[left]: [False, False, False, False, False, False, False, False, False, False, False, False, False, False, False, False, False, False] -[right]: [False, , False, , False, False, , False, False, False, False, False, False, False, False, False, False, ]",failed -4997,tests.integ.modin.frame.test_loc,test_df_loc_get_reversed_key_slice_with_unordered_nullable_index[first--1-1-4],KeyError: 2,failed -4998,tests.integ.modin.binary.test_binary_op,test_binary_arithmetic_ops_between_df_and_scalar_nan_behavior_deviates[10.001-rsub],"AssertionError: DataFrame.iloc[:, 0] (column name=""0"") are different +[left]: [True, True, True, True, True, True, True, True, True, True, True, True, True, True, True, True, True, True] +[right]: [True, True, True, True, True, True, , True, True, True, True, True, , True, True, True, True, True]",failed +4466,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[min2-0-True],AttributeError: can't set attribute,failed +4471,tests.integ.modin.frame.test_iloc,test_df_iloc_get_dataframe[key9-1-2],"ValueError: +Location based indexing can only have [integer, integer slice (START point is +INCLUDED, END point is EXCLUDED), listlike of integers, boolean array] types.",failed +4476,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[min2-0-False],AttributeError: can't set attribute,failed +4479,tests.integ.modin.frame.test_itertuples,test_df_itertuples_tuple_data_negative,[XPASS(strict)] Native pandas retains the tuple value while Snowpark pandas converts it to list.,failed +4480,tests.integ.modin.frame.test_iloc,test_df_iloc_get_dataframe[key10-1-2],"ValueError: +Location based indexing can only have [integer, integer slice (START point is +INCLUDED, END point is EXCLUDED), listlike of integers, boolean array] types.",failed +4482,tests.integ.modin.frame.test_itertuples,test_df_itertuples_nan_data_negative,Native pandas retains the np.nan value while Snowpark pandas converts it to None.,xfailed +4483,tests.integ.modin.binary.test_binary_op,test_binary_comparison_method_between_series_numeric[ne-rhs0-lhs2],TypeError: boolean value of NA is ambiguous,failed +4486,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[min2-1-True],AttributeError: can't set attribute,failed +4487,tests.integ.modin.frame.test_iloc,test_df_iloc_get_dataframe[key11-1-2],"ValueError: +Location based indexing can only have [integer, integer slice (START point is +INCLUDED, END point is EXCLUDED), listlike of integers, boolean array] types.",failed +4490,tests.integ.modin.frame.test_loc,test_df_loc_set_general_col_key_type[array-row_key0-col_key6],"AssertionError: DataFrame are different -DataFrame.iloc[:, 0] (column name=""0"") values are different (33.33333 %) -[index]: [0, 1, 2] -[left]: [nan, nan, nan] -[right]: [-3.9990000000000006, nan, nan] -At positional index 0, first diff: nan != -3.9990000000000006",failed -5000,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[min1-True-True],AttributeError: can't set attribute,failed -5001,tests.integ.modin.binary.test_binary_op,test_binary_comparison_method_between_series_numeric[eq-rhs1-lhs3],"AssertionError: Series are different +DataFrame shape mismatch +[left]: (3, 8) +[right]: (3, 4)",failed +4492,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[min2-1-False],AttributeError: can't set attribute,failed +4496,tests.integ.modin.binary.test_binary_op,test_binary_comparison_method_between_series_numeric[ne-rhs0-lhs3],TypeError: boolean value of NA is ambiguous,failed +4499,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[min2-True-True],AttributeError: can't set attribute,failed +4501,tests.integ.modin.binary.test_binary_op,test_binary_comparison_method_between_series_numeric[ne-rhs1-lhs0],"AssertionError: Series are different -Series values are different (22.22222 %) +Series values are different (11.11111 %) [index]: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17] -[left]: [False, False, False, False, False, False, False, False, False, False, False, False, False, False, False, False, False, False] -[right]: [False, , False, False, False, False, , False, , , False, False, False, False, False, False, False, False]",failed -5003,tests.integ.modin.binary.test_binary_op,test_binary_arithmetic_ops_between_df_and_scalar_nan_behavior_deviates[10.001-mul],"AssertionError: DataFrame.iloc[:, 0] (column name=""0"") are different +[left]: [True, True, True, True, True, True, True, True, True, True, True, True, True, True, True, True, True, True] +[right]: [True, True, True, True, True, True, , True, True, True, True, True, , True, True, True, True, True]",failed +4503,tests.integ.modin.frame.test_loc,test_df_loc_set_general_col_key_type[array-row_key0-col_key8],"AssertionError: DataFrame.iloc[:, 0] (column name=""D"") are different -DataFrame.iloc[:, 0] (column name=""0"") values are different (33.33333 %) +DataFrame.iloc[:, 0] (column name=""D"") values are different (66.66667 %) [index]: [0, 1, 2] -[left]: [nan, nan, nan] -[right]: [140.01399999999998, nan, nan] -At positional index 0, first diff: nan != 140.01399999999998",failed -5004,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_multiindex[item_values4-None-item_columns4-3-col_key2-col_key_index2-row_key1-None],"AssertionError: DataFrame.iloc[:, 1] (column name=""('b', 2)"") are different - -DataFrame.iloc[:, 1] (column name=""('b', 2)"") values are different (40.0 %) -[index]: [(x, 99), (y, 11), (x, 11), (y, 99), (z, -12)] -[left]: [nan, 11.0, 101.0, nan, -6.0] -[right]: [-998, 11, 101, -999, -6]",failed -5005,tests.integ.modin.binary.test_binary_op,test_binary_comparison_method_between_series_numeric[eq-rhs2-lhs0],"AssertionError: Series are different +[left]: [nan, 4.0, nan] +[right]: [1.0, 4.0, 7.0] +At positional index 0, first diff: nan != 1.0",failed +4506,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[min2-True-False],AttributeError: can't set attribute,failed +4508,tests.integ.modin.frame.test_iloc,test_df_iloc_get_dataframe[key12-1-2],"ValueError: +Location based indexing can only have [integer, integer slice (START point is +INCLUDED, END point is EXCLUDED), listlike of integers, boolean array] types.",failed +4512,tests.integ.modin.frame.test_loc,test_df_loc_set_general_col_key_type[array-row_key0-col_key9],"KeyError: array(['1', '2'], dtype=', False, , False, False, False, False, False, False, False, False, False, False, False, False, False, ]",failed -5006,tests.integ.modin.binary.test_binary_op,test_binary_arithmetic_ops_between_df_and_scalar_nan_behavior_deviates[10.001-rmul],"AssertionError: DataFrame.iloc[:, 0] (column name=""0"") are different +[left]: [False, False, False, False, False, False, False, False, False, False, False, False, True, False, False, False, False, False] +[right]: [False, False, False, False, False, False, False, False, False, False, False, False, , False, False, False, False, False]",failed +4533,tests.integ.modin.frame.test_iloc,test_df_iloc_get_dataframe_with_range[key0],AttributeError: 'DataFrame' object has no attribute 'ordered_dataframe',failed +4534,tests.integ.modin.frame.test_loc,test_df_loc_set_general_col_key_type[array-row_key1-col_key1],"AssertionError: DataFrame.iloc[:, 3] (column name=""A"") are different -DataFrame.iloc[:, 0] (column name=""0"") values are different (33.33333 %) +DataFrame.iloc[:, 3] (column name=""A"") values are different (100.0 %) [index]: [0, 1, 2] -[left]: [nan, nan, nan] -[right]: [140.01399999999998, nan, nan] -At positional index 0, first diff: nan != 140.01399999999998",failed -5007,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[min1-True-False],AttributeError: can't set attribute,failed -5009,tests.integ.modin.binary.test_binary_op,test_binary_arithmetic_ops_between_df_and_scalar_nan_behavior_deviates[10.001-truediv],"AssertionError: DataFrame.iloc[:, 0] (column name=""0"") are different +[left]: [1, 4, 7] +[right]: [nan, 7.0, 4.0]",failed +4536,tests.integ.modin.binary.test_binary_op,test_binary_comparison_method_between_series_numeric[ne-rhs1-lhs2],TypeError: boolean value of NA is ambiguous,failed +4539,tests.integ.modin.frame.test_iloc,test_df_iloc_get_dataframe_with_range[key1],AttributeError: 'DataFrame' object has no attribute 'ordered_dataframe',failed +4540,tests.integ.modin.frame.test_loc,test_df_loc_set_general_col_key_type[array-row_key1-col_key2],"AssertionError: DataFrame.iloc[:, 4] (column name=""Y"") are different -DataFrame.iloc[:, 0] (column name=""0"") values are different (33.33333 %) +DataFrame.iloc[:, 4] (column name=""Y"") values are different (100.0 %) [index]: [0, 1, 2] -[left]: [nan, nan, nan] -[right]: [1.3998600139986002, nan, nan] -At positional index 0, first diff: nan != 1.3998600139986002",failed -5010,tests.integ.modin.frame.test_loc,test_df_loc_get_reversed_key_slice_with_unordered_nullable_index[first--1-1-6],KeyError: 2,failed -5011,tests.integ.modin.binary.test_binary_op,test_binary_comparison_method_between_series_numeric[eq-rhs2-lhs1],"AssertionError: Series are different +[left]: [1, 4, 7] +[right]: [nan, nan, nan]",failed +4541,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[min2-all-False],AttributeError: can't set attribute,failed +4546,tests.integ.modin.frame.test_iloc,test_df_iloc_get_dataframe_with_range[key2],AttributeError: 'DataFrame' object has no attribute 'ordered_dataframe',failed +4548,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[min2-index-True],AttributeError: can't set attribute,failed +4550,tests.integ.modin.binary.test_binary_op,test_binary_comparison_method_between_series_numeric[ne-rhs1-lhs3],TypeError: boolean value of NA is ambiguous,failed +4553,tests.integ.modin.frame.test_iloc,test_df_iloc_get_dataframe_with_range[key3],AttributeError: 'DataFrame' object has no attribute 'ordered_dataframe',failed +4555,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[min2-index-False],AttributeError: can't set attribute,failed +4558,tests.integ.modin.frame.test_loc,test_df_loc_set_general_col_key_type[array-row_key1-col_key6],"AssertionError: DataFrame are different -Series values are different (22.22222 %) -[index]: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17] -[left]: [False, False, False, False, False, False, False, False, False, False, False, False, False, False, False, False, False, False] -[right]: [False, , False, , False, False, , False, False, False, False, False, False, False, False, False, False, ]",failed -5012,tests.integ.modin.binary.test_binary_op,test_binary_arithmetic_ops_between_df_and_scalar_nan_behavior_deviates[10.001-rtruediv],"AssertionError: DataFrame.iloc[:, 0] (column name=""0"") are different +DataFrame shape mismatch +[left]: (3, 8) +[right]: (3, 4)",failed +4559,tests.integ.modin.frame.test_iloc,test_df_iloc_get_dataframe_with_range[key4],AttributeError: 'DataFrame' object has no attribute 'ordered_dataframe',failed +4564,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[min2-columns-True],AttributeError: can't set attribute,failed +4565,tests.integ.modin.binary.test_binary_op,test_binary_comparison_method_between_series_numeric[ne-rhs2-lhs0],TypeError: boolean value of NA is ambiguous,failed +4567,tests.integ.modin.frame.test_iloc,test_df_iloc_get_dataframe_with_range[key5],AttributeError: 'DataFrame' object has no attribute 'ordered_dataframe',failed +4571,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[min2-columns-False],AttributeError: can't set attribute,failed +4572,tests.integ.modin.frame.test_loc,test_df_loc_set_general_col_key_type[array-row_key1-col_key8],"AssertionError: DataFrame.iloc[:, 0] (column name=""D"") are different -DataFrame.iloc[:, 0] (column name=""0"") values are different (33.33333 %) +DataFrame.iloc[:, 0] (column name=""D"") values are different (100.0 %) [index]: [0, 1, 2] [left]: [nan, nan, nan] -[right]: [0.7143571428571428, nan, nan] -At positional index 0, first diff: nan != 0.7143571428571428",failed -5013,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_multiindex[item_values4-None-item_columns4-3-col_key2-col_key_index2-row_key2-row_key_index2],"AssertionError: DataFrame.iloc[:, 1] (column name=""('b', 2)"") are different +[right]: [1.0, 4.0, 7.0] +At positional index 0, first diff: nan != 1.0",failed +4577,tests.integ.modin.binary.test_binary_op,test_binary_comparison_method_between_series_numeric[ne-rhs2-lhs1],TypeError: boolean value of NA is ambiguous,failed +4578,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[max0-0-True],AttributeError: can't set attribute,failed +4582,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[max0-0-False],AttributeError: can't set attribute,failed +4586,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[max0-1-True],AttributeError: can't set attribute,failed +4593,tests.integ.modin.frame.test_iloc,test_df_iloc_get_dataframe_with_range[key6],AttributeError: 'DataFrame' object has no attribute 'ordered_dataframe',failed +4594,tests.integ.modin.frame.test_iloc,test_df_iloc_get_dataframe_with_range[key7],AttributeError: 'DataFrame' object has no attribute 'ordered_dataframe',failed +4596,tests.integ.modin.frame.test_loc,test_df_loc_set_general_col_key_type[array-row_key1-col_key9],"KeyError: array(['1', '2'], dtype=' does not match with expected type ,failed +4690,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[max0-columns-True],AttributeError: can't set attribute,failed +4697,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[max0-columns-False],AttributeError: can't set attribute,failed +4698,tests.integ.modin.binary.test_binary_op,test_binary_comparison_method_between_series_numeric[ne-rhs3-lhs3],TypeError: boolean value of NA is ambiguous,failed +4699,tests.integ.modin.frame.test_iloc,test_df_iloc_get_col_key_out_of_bounds[col_key3-2],IndexError: positional indexers are out-of-bounds,failed +4704,tests.integ.modin.binary.test_binary_op,test_binary_comparison_method_between_series_numeric[gt-rhs0-lhs0],"AssertionError: Series are different + +Series values are different (5.55556 %) [index]: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17] [left]: [False, False, False, False, False, False, False, False, False, False, False, False, False, False, False, False, False, False] -[right]: [True, , True, , True, True, True, True, True, True, True, True, True, True, True, True, True, ]",failed -5016,tests.integ.modin.binary.test_binary_op,test_binary_arithmetic_ops_between_df_and_scalar_nan_behavior_deviates[10.001-floordiv],"AssertionError: DataFrame.iloc[:, 0] (column name=""0"") are different +[right]: [False, False, False, False, False, False, , False, False, False, False, False, False, False, False, False, False, False]",failed +4706,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[max1-0-True],AttributeError: can't set attribute,failed +4708,tests.integ.modin.binary.test_binary_op,test_binary_comparison_method_between_series_numeric[gt-rhs0-lhs1],"AssertionError: Series are different -DataFrame.iloc[:, 0] (column name=""0"") values are different (33.33333 %) -[index]: [0, 1, 2] -[left]: [nan, nan, nan] -[right]: [1.0, nan, nan] -At positional index 0, first diff: nan != 1.0",failed -5018,tests.integ.modin.binary.test_binary_op,test_binary_arithmetic_ops_between_df_and_scalar_nan_behavior_deviates[10.001-rfloordiv],"AssertionError: DataFrame.iloc[:, 0] (column name=""0"") are different +Series values are different (11.11111 %) +[index]: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17] +[left]: [True, False, False, True, True, True, False, True, False, True, False, False, False, True, True, True, True, False] +[right]: [True, False, False, True, True, True, , True, False, True, False, False, , True, True, True, True, False]",failed +4709,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[max1-0-False],AttributeError: can't set attribute,failed +4711,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[max1-1-True],AttributeError: can't set attribute,failed +4713,tests.integ.modin.binary.test_binary_op,test_binary_comparison_method_between_series_numeric[gt-rhs0-lhs2],TypeError: '>' not supported between instances of 'NoneType' and 'float',failed +4714,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[max1-1-False],AttributeError: can't set attribute,failed +4720,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[max1-True-True],AttributeError: can't set attribute,failed +4721,tests.integ.modin.binary.test_binary_op,test_binary_comparison_method_between_series_numeric[gt-rhs0-lhs3],TypeError: '>' not supported between instances of 'NoneType' and 'float',failed +4724,tests.integ.modin.frame.test_loc,test_df_loc_set_general_key_with_duplicate_rows[array-item1],ValueError: cannot reindex on an axis with duplicate labels,failed +4728,tests.integ.modin.binary.test_binary_op,test_binary_comparison_method_between_series_numeric[gt-rhs1-lhs0],"AssertionError: Series are different -DataFrame.iloc[:, 0] (column name=""0"") values are different (33.33333 %) -[index]: [0, 1, 2] -[left]: [nan, nan, nan] -[right]: [0.0, nan, nan] -At positional index 0, first diff: nan != 0.0",failed -5019,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[min1-all-False],AttributeError: can't set attribute,failed -5020,tests.integ.modin.binary.test_binary_op,test_binary_comparison_method_between_series_numeric[eq-rhs2-lhs3],"AssertionError: Series are different +Series values are different (11.11111 %) +[index]: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17] +[left]: [False, True, True, False, False, False, False, False, True, False, True, True, False, False, False, False, False, True] +[right]: [False, True, True, False, False, False, , False, True, False, True, True, , False, False, False, False, True]",failed +4729,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[max1-True-False],AttributeError: can't set attribute,failed +4744,tests.integ.modin.frame.test_loc,test_df_loc_get_key_bool[array-key5],IndexError: positional indexers are out-of-bounds,failed +4749,tests.integ.modin.binary.test_binary_op,test_binary_comparison_method_between_series_numeric[gt-rhs1-lhs1],"AssertionError: Series are different -Series values are different (27.77778 %) +Series values are different (5.55556 %) [index]: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17] [left]: [False, False, False, False, False, False, False, False, False, False, False, False, False, False, False, False, False, False] -[right]: [False, , False, , False, False, False, False, , , False, False, False, False, False, False, False, ]",failed -5022,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_multiindex[item_values4-None-item_columns4-3-col_key2-col_key_index2-row_key3-row_key_index3],"AssertionError: DataFrame.iloc[:, 1] (column name=""('b', 2)"") are different +[right]: [False, False, False, False, False, False, False, False, False, False, False, False, , False, False, False, False, False]",failed +4751,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[max1-all-True],AttributeError: can't set attribute,failed +4757,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[max1-all-False],AttributeError: can't set attribute,failed +4762,tests.integ.modin.binary.test_binary_op,test_binary_comparison_method_between_series_numeric[gt-rhs1-lhs2],TypeError: '>' not supported between instances of 'NoneType' and 'float',failed +4764,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[max1-index-True],AttributeError: can't set attribute,failed +4770,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[max1-index-False],AttributeError: can't set attribute,failed +4774,tests.integ.modin.binary.test_binary_op,test_binary_comparison_method_between_series_numeric[gt-rhs1-lhs3],TypeError: '>' not supported between instances of 'NoneType' and 'float',failed +4777,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[max1-columns-True],AttributeError: can't set attribute,failed +4780,tests.integ.modin.frame.test_iloc,test_df_iloc_get_row_input_snowpark_pandas_return_dataframe[Index-2],"ValueError: +Location based indexing can only have [integer, integer slice (START point is +INCLUDED, END point is EXCLUDED), listlike of integers, boolean array] types.",failed +4784,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[max1-columns-False],AttributeError: can't set attribute,failed +4786,tests.integ.modin.binary.test_binary_op,test_binary_comparison_method_between_series_numeric[gt-rhs2-lhs0],TypeError: '>' not supported between instances of 'float' and 'NoneType',failed +4790,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[max2-0-True],AttributeError: can't set attribute,failed +4797,tests.integ.modin.binary.test_binary_op,test_binary_comparison_method_between_series_numeric[gt-rhs2-lhs1],TypeError: '>' not supported between instances of 'float' and 'NoneType',failed +4800,tests.integ.modin.frame.test_loc,test_df_loc_set_series_and_list_like_row_key_negative[index],"KeyError: Index([3], dtype='int64')",failed +4808,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[max2-0-False],AttributeError: can't set attribute,failed +4813,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[max2-1-True],AttributeError: can't set attribute,failed +4818,tests.integ.modin.binary.test_binary_op,test_binary_comparison_method_between_series_numeric[gt-rhs2-lhs2],TypeError: '>' not supported between instances of 'NoneType' and 'NoneType',failed +4820,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[max2-1-False],AttributeError: can't set attribute,failed +4825,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[max2-True-True],AttributeError: can't set attribute,failed +4829,tests.integ.modin.binary.test_binary_op,test_binary_comparison_method_between_series_numeric[gt-rhs2-lhs3],TypeError: '>' not supported between instances of 'float' and 'NoneType',failed +4831,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[max2-True-False],AttributeError: can't set attribute,failed +4836,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[max2-all-True],AttributeError: can't set attribute,failed +4840,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[max2-all-False],AttributeError: can't set attribute,failed +4841,tests.integ.modin.binary.test_binary_op,test_binary_comparison_method_between_series_numeric[gt-rhs3-lhs0],TypeError: '>' not supported between instances of 'float' and 'NoneType',failed +4842,tests.integ.modin.frame.test_iloc,test_df_iloc_get_row_input_snowpark_pandas_return_dataframe[Series-2],"ValueError: +Location based indexing can only have [integer, integer slice (START point is +INCLUDED, END point is EXCLUDED), listlike of integers, boolean array] types.",failed +4845,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[max2-index-True],AttributeError: can't set attribute,failed +4850,tests.integ.modin.binary.test_binary_op,test_binary_comparison_method_between_series_numeric[gt-rhs3-lhs1],TypeError: '>' not supported between instances of 'float' and 'NoneType',failed +4864,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[max2-index-False],AttributeError: can't set attribute,failed +4871,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[max2-columns-True],AttributeError: can't set attribute,failed +4874,tests.integ.modin.binary.test_binary_op,test_binary_comparison_method_between_series_numeric[gt-rhs3-lhs2],TypeError: '>' not supported between instances of 'NoneType' and 'float',failed +4876,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[max2-columns-False],AttributeError: can't set attribute,failed +4881,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[sum0-0-True],AttributeError: can't set attribute,failed +4887,tests.integ.modin.binary.test_binary_op,test_binary_comparison_method_between_series_numeric[gt-rhs3-lhs3],TypeError: '>' not supported between instances of 'NoneType' and 'NoneType',failed +4889,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[sum0-0-False],AttributeError: can't set attribute,failed +4892,tests.integ.modin.binary.test_binary_op,test_binary_comparison_method_between_series_numeric[ge-rhs0-lhs0],"AssertionError: Series are different -DataFrame.iloc[:, 1] (column name=""('b', 2)"") values are different (40.0 %) -[index]: [(x, 99), (y, 11), (x, 11), (y, 99), (z, -12)] -[left]: [2.0, nan, nan, 56.0, -6.0] -[right]: [2, -998, -999, 56, -6]",failed -5024,tests.integ.modin.binary.test_binary_op,test_binary_comparison_method_between_series_numeric[eq-rhs3-lhs0],"AssertionError: Series are different +Series values are different (5.55556 %) +[index]: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17] +[left]: [True, True, True, True, True, True, False, True, True, True, True, True, True, True, True, True, True, True] +[right]: [True, True, True, True, True, True, , True, True, True, True, True, True, True, True, True, True, True]",failed +4895,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[sum0-1-True],AttributeError: can't set attribute,failed +4896,tests.integ.modin.binary.test_binary_op,test_binary_comparison_method_between_series_numeric[ge-rhs0-lhs1],"AssertionError: Series are different -Series values are different (22.22222 %) +Series values are different (11.11111 %) [index]: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17] -[left]: [False, False, False, False, False, False, False, False, False, False, False, False, False, False, False, False, False, False] -[right]: [False, , False, False, False, False, False, False, , , False, False, False, False, False, False, False, ]",failed -5025,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[min1-index-True],AttributeError: can't set attribute,failed -5026,tests.integ.modin.frame.test_loc,test_df_loc_get_reversed_key_slice_with_unordered_nullable_index[first--1-4-None],"AssertionError: DataFrame are different +[left]: [True, False, False, True, True, True, False, True, False, True, False, False, False, True, True, True, True, False] +[right]: [True, False, False, True, True, True, , True, False, True, False, False, , True, True, True, True, False]",failed +4901,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[sum0-1-False],AttributeError: can't set attribute,failed +4906,tests.integ.modin.frame.test_loc,test_df_loc_set_general_col_key_type[index-row_key0-col_key6],"AssertionError: DataFrame are different DataFrame shape mismatch -[left]: (5, 8) -[right]: (1, 8)",failed -5028,tests.integ.modin.binary.test_binary_op,test_binary_comparison_method_between_series_numeric[eq-rhs3-lhs1],"AssertionError: Series are different +[left]: (3, 8) +[right]: (3, 4)",failed +4907,tests.integ.modin.binary.test_binary_op,test_binary_comparison_method_between_series_numeric[ge-rhs0-lhs2],TypeError: '>=' not supported between instances of 'NoneType' and 'float',failed +4916,tests.integ.modin.binary.test_binary_op,test_binary_comparison_method_between_series_numeric[ge-rhs0-lhs3],TypeError: '>=' not supported between instances of 'NoneType' and 'float',failed +4920,tests.integ.modin.binary.test_binary_op,test_binary_comparison_method_between_series_numeric[ge-rhs1-lhs0],"AssertionError: Series are different -Series values are different (22.22222 %) +Series values are different (11.11111 %) [index]: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17] -[left]: [False, False, False, False, False, False, False, False, False, False, False, False, False, False, False, False, False, False] -[right]: [False, , False, False, False, False, , False, , , False, False, False, False, False, False, False, False]",failed -5030,tests.integ.modin.binary.test_binary_op,test_binary_arithmetic_ops_between_df_and_scalar_nan_behavior_deviates[10.001-mod],"AssertionError: DataFrame.iloc[:, 0] (column name=""0"") are different +[left]: [False, True, True, False, False, False, False, False, True, False, True, True, False, False, False, False, False, True] +[right]: [False, True, True, False, False, False, , False, True, False, True, True, , False, False, False, False, True]",failed +4924,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[sum0-True-True],AttributeError: can't set attribute,failed +4925,tests.integ.modin.binary.test_binary_op,test_binary_comparison_method_between_series_numeric[ge-rhs1-lhs1],"AssertionError: Series are different -DataFrame.iloc[:, 0] (column name=""0"") values are different (33.33333 %) -[index]: [0, 1, 2] -[left]: [nan, nan, nan] -[right]: [3.9990000000000006, nan, nan] -At positional index 0, first diff: nan != 3.9990000000000006",failed -5031,tests.integ.modin.frame.test_loc,test_df_loc_get_reversed_key_slice_with_unordered_nullable_index[first--1-4-4],"AssertionError: DataFrame are different +Series values are different (5.55556 %) +[index]: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17] +[left]: [True, True, True, True, True, True, True, True, True, True, True, True, False, True, True, True, True, True] +[right]: [True, True, True, True, True, True, True, True, True, True, True, True, , True, True, True, True, True]",failed +4927,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[sum0-True-False],AttributeError: can't set attribute,failed +4932,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[sum0-all-True],AttributeError: can't set attribute,failed +4935,tests.integ.modin.frame.test_loc,test_df_loc_set_general_col_key_type[index-row_key0-col_key8],"AssertionError: DataFrame.iloc[:, 0] (column name=""D"") are different -DataFrame shape mismatch -[left]: (5, 8) -[right]: (1, 8)",failed -5032,tests.integ.modin.binary.test_binary_op,test_binary_comparison_method_between_series_numeric[eq-rhs3-lhs2],"AssertionError: Series are different +DataFrame.iloc[:, 0] (column name=""D"") values are different (66.66667 %) +[index]: [0, 1, 2] +[left]: [nan, 4.0, nan] +[right]: [1.0, 4.0, 7.0] +At positional index 0, first diff: nan != 1.0",failed +4937,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[sum0-all-False],AttributeError: can't set attribute,failed +4940,tests.integ.modin.frame.test_iloc,test_df_iloc_get_row_input_snowpark_pandas_return_dataframe[emptyFloatSeries-2],"ValueError: +Location based indexing can only have [integer, integer slice (START point is +INCLUDED, END point is EXCLUDED), listlike of integers, boolean array] types.",failed +4941,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[sum0-index-True],AttributeError: can't set attribute,failed +4943,tests.integ.modin.binary.test_binary_op,test_binary_comparison_method_between_series_numeric[ge-rhs1-lhs2],TypeError: '>=' not supported between instances of 'NoneType' and 'float',failed +4947,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[sum0-index-False],AttributeError: can't set attribute,failed +4950,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[sum0-columns-True],AttributeError: can't set attribute,failed +4952,tests.integ.modin.binary.test_binary_op,test_binary_comparison_method_between_series_numeric[ge-rhs1-lhs3],TypeError: '>=' not supported between instances of 'NoneType' and 'float',failed +4955,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[sum0-columns-False],AttributeError: can't set attribute,failed +4958,tests.integ.modin.binary.test_binary_op,test_binary_comparison_method_between_series_numeric[ge-rhs2-lhs0],TypeError: '>=' not supported between instances of 'float' and 'NoneType',failed +4962,tests.integ.modin.frame.test_loc,test_df_loc_set_general_col_key_type[index-row_key0-col_key9],"KeyError: array(['1', '2'], dtype='=' not supported between instances of 'float' and 'NoneType',failed +4965,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[sum1-0-True],AttributeError: can't set attribute,failed +4968,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[sum1-0-False],AttributeError: can't set attribute,failed +4973,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[sum1-1-True],AttributeError: can't set attribute,failed +4978,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[sum1-1-False],AttributeError: can't set attribute,failed +4983,tests.integ.modin.binary.test_binary_op,test_binary_comparison_method_between_series_numeric[ge-rhs2-lhs2],TypeError: '>=' not supported between instances of 'NoneType' and 'NoneType',failed +4985,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[sum1-True-True],AttributeError: can't set attribute,failed +4988,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[sum1-True-False],AttributeError: can't set attribute,failed +4993,tests.integ.modin.binary.test_binary_op,test_binary_comparison_method_between_series_numeric[ge-rhs2-lhs3],TypeError: '>=' not supported between instances of 'float' and 'NoneType',failed +5015,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[sum1-all-True],AttributeError: can't set attribute,failed +5016,tests.integ.modin.frame.test_loc,test_df_loc_set_general_col_key_type[index-row_key0-col_key10],"KeyError: array(['E', 1, 'X', 2], dtype=object)",failed +5019,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[sum1-all-False],AttributeError: can't set attribute,failed +5020,tests.integ.modin.binary.test_binary_op,test_binary_comparison_method_between_series_numeric[ge-rhs3-lhs0],TypeError: '>=' not supported between instances of 'float' and 'NoneType',failed +5025,tests.integ.modin.binary.test_binary_op,test_binary_comparison_method_between_series_numeric[ge-rhs3-lhs1],TypeError: '>=' not supported between instances of 'float' and 'NoneType',failed +5029,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[sum1-index-True],AttributeError: can't set attribute,failed +5032,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[sum1-index-False],AttributeError: can't set attribute,failed +5033,tests.integ.modin.frame.test_loc,test_df_loc_set_general_col_key_type[index-row_key1-col_key1],"AssertionError: DataFrame.iloc[:, 3] (column name=""A"") are different -Series values are different (27.77778 %) -[index]: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17] -[left]: [False, False, False, False, False, False, False, False, False, False, False, False, False, False, False, False, False, False] -[right]: [False, , False, , False, False, False, False, , , False, False, False, False, False, False, False, ]",failed -5035,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_multiindex[item_values4-None-item_columns4-3-col_key3-col_key_index3-1-None],ValueError: buffer source array is read-only,failed -5036,tests.integ.modin.frame.test_iloc,test_df_iloc_get_row_input_snowpark_pandas_return_dataframe[emptyFloatSeries-2],"ValueError: +DataFrame.iloc[:, 3] (column name=""A"") values are different (100.0 %) +[index]: [0, 1, 2] +[left]: [1, 4, 7] +[right]: [nan, 7.0, 4.0]",failed +5036,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[sum1-columns-True],AttributeError: can't set attribute,failed +5037,tests.integ.modin.frame.test_iloc,test_df_iloc_get_col_input_snowpark_pandas_return_dataframe[Index-2],"ValueError: Location based indexing can only have [integer, integer slice (START point is INCLUDED, END point is EXCLUDED), listlike of integers, boolean array] types.",failed -5037,tests.integ.modin.binary.test_binary_op,test_binary_arithmetic_ops_between_df_and_scalar_nan_behavior_deviates[10.001-rmod],"AssertionError: DataFrame.iloc[:, 0] (column name=""0"") are different +5038,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[True-0--8],IndexError: index -8 is out of bounds for axis 0 with size 7,failed +5039,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[sum1-columns-False],AttributeError: can't set attribute,failed +5041,tests.integ.modin.binary.test_binary_op,test_binary_comparison_method_between_series_numeric[ge-rhs3-lhs2],TypeError: '>=' not supported between instances of 'NoneType' and 'float',failed +5042,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[sum2-0-True],AttributeError: can't set attribute,failed +5044,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[True-0-7],IndexError: positional indexers are out-of-bounds,failed +5045,tests.integ.modin.frame.test_loc,test_df_loc_set_general_col_key_type[index-row_key1-col_key2],"AssertionError: DataFrame.iloc[:, 4] (column name=""Y"") are different -DataFrame.iloc[:, 0] (column name=""0"") values are different (33.33333 %) +DataFrame.iloc[:, 4] (column name=""Y"") values are different (100.0 %) [index]: [0, 1, 2] -[left]: [nan, nan, nan] -[right]: [10.001, nan, nan] -At positional index 0, first diff: nan != 10.001",failed -5038,tests.integ.modin.binary.test_binary_op,test_binary_comparison_method_between_series_numeric[eq-rhs3-lhs3],"AssertionError: Series are different +[left]: [1, 4, 7] +[right]: [nan, nan, nan]",failed +5046,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[sum2-0-False],AttributeError: can't set attribute,failed +5047,tests.integ.modin.binary.test_binary_op,test_binary_comparison_method_between_series_numeric[ge-rhs3-lhs3],TypeError: '>=' not supported between instances of 'NoneType' and 'NoneType',failed +5049,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[True-0-52879115],IndexError: positional indexers are out-of-bounds,failed +5050,tests.integ.modin.binary.test_binary_op,test_binary_comparison_method_between_series_numeric[lt-rhs0-lhs0],"AssertionError: Series are different -Series values are different (100.0 %) +Series values are different (5.55556 %) [index]: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17] [left]: [False, False, False, False, False, False, False, False, False, False, False, False, False, False, False, False, False, False] -[right]: [True, , True, True, True, True, True, True, , , True, True, True, True, True, True, True, True]",failed -5039,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[min1-index-False],AttributeError: can't set attribute,failed -5040,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_multiindex[item_values4-None-item_columns4-3-col_key3-col_key_index3-row_key1-None],"AssertionError: DataFrame.iloc[:, 1] (column name=""('b', 2)"") are different +[right]: [False, False, False, False, False, False, , False, False, False, False, False, False, False, False, False, False, False]",failed +5051,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[sum2-1-True],AttributeError: can't set attribute,failed +5053,tests.integ.modin.binary.test_binary_op,test_binary_comparison_method_between_series_numeric[lt-rhs0-lhs1],"AssertionError: Series are different -DataFrame.iloc[:, 1] (column name=""('b', 2)"") values are different (40.0 %) -[index]: [(x, 99), (y, 11), (x, 11), (y, 99), (z, -12)] -[left]: [nan, 11.0, 101.0, nan, -6.0] -[right]: [-996, 11, 101, -997, -6]",failed -5041,tests.integ.modin.binary.test_binary_op,test_binary_arithmetic_ops_between_df_and_scalar_nan_behavior_deviates[10.001-pow],"AssertionError: DataFrame.iloc[:, 0] (column name=""0"") are different +Series values are different (11.11111 %) +[index]: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17] +[left]: [False, True, True, False, False, False, False, False, True, False, True, True, False, False, False, False, False, True] +[right]: [False, True, True, False, False, False, , False, True, False, True, True, , False, False, False, False, True]",failed +5054,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[True-0--9028751],IndexError: index -9028751 is out of bounds for axis 0 with size 7,failed +5058,tests.integ.modin.binary.test_binary_op,test_binary_comparison_method_between_series_numeric[lt-rhs0-lhs2],TypeError: '<' not supported between instances of 'NoneType' and 'float',failed +5060,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[sum2-1-False],AttributeError: can't set attribute,failed +5063,tests.integ.modin.binary.test_binary_op,test_binary_comparison_method_between_series_numeric[lt-rhs0-lhs3],TypeError: '<' not supported between instances of 'NoneType' and 'float',failed +5064,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[sum2-True-True],AttributeError: can't set attribute,failed +5068,tests.integ.modin.binary.test_binary_op,test_binary_comparison_method_between_series_numeric[lt-rhs1-lhs0],"AssertionError: Series are different -DataFrame.iloc[:, 0] (column name=""0"") values are different (33.33333 %) -[index]: [0, 1, 2] -[left]: [nan, nan, nan] -[right]: [290019022754.90625, nan, nan] -At positional index 0, first diff: nan != 290019022754.90625",failed -5043,tests.integ.modin.binary.test_binary_op,test_binary_arithmetic_ops_between_df_and_scalar_nan_behavior_deviates[10.001-rpow],"AssertionError: DataFrame.iloc[:, 0] (column name=""0"") are different +Series values are different (11.11111 %) +[index]: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17] +[left]: [True, False, False, True, True, True, False, True, False, True, False, False, False, True, True, True, True, False] +[right]: [True, False, False, True, True, True, , True, False, True, False, False, , True, True, True, True, False]",failed +5069,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[sum2-True-False],AttributeError: can't set attribute,failed +5071,tests.integ.modin.binary.test_binary_op,test_binary_comparison_method_between_series_numeric[lt-rhs1-lhs1],"AssertionError: Series are different -DataFrame.iloc[:, 0] (column name=""0"") values are different (33.33333 %) +Series values are different (5.55556 %) +[index]: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17] +[left]: [False, False, False, False, False, False, False, False, False, False, False, False, False, False, False, False, False, False] +[right]: [False, False, False, False, False, False, False, False, False, False, False, False, , False, False, False, False, False]",failed +5073,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[sum2-all-True],AttributeError: can't set attribute,failed +5075,tests.integ.modin.frame.test_iloc,test_df_iloc_get_col_input_snowpark_pandas_return_dataframe[Series-2],"ValueError: +Location based indexing can only have [integer, integer slice (START point is +INCLUDED, END point is EXCLUDED), listlike of integers, boolean array] types.",failed +5078,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[sum2-all-False],AttributeError: can't set attribute,failed +5081,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[sum2-index-True],AttributeError: can't set attribute,failed +5083,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[True--3--8],IndexError: index -8 is out of bounds for axis 0 with size 7,failed +5084,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[sum2-index-False],AttributeError: can't set attribute,failed +5087,tests.integ.modin.binary.test_binary_op,test_binary_comparison_method_between_series_numeric[lt-rhs1-lhs2],TypeError: '<' not supported between instances of 'NoneType' and 'float',failed +5088,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[sum2-columns-True],AttributeError: can't set attribute,failed +5092,tests.integ.modin.binary.test_binary_op,test_binary_comparison_method_between_series_numeric[lt-rhs1-lhs3],TypeError: '<' not supported between instances of 'NoneType' and 'float',failed +5095,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[True--3-7],IndexError: positional indexers are out-of-bounds,failed +5096,tests.integ.modin.binary.test_binary_op,test_binary_comparison_method_between_series_numeric[lt-rhs2-lhs0],TypeError: '<' not supported between instances of 'float' and 'NoneType',failed +5097,tests.integ.modin.frame.test_loc,test_df_loc_set_general_col_key_type[index-row_key1-col_key6],"AssertionError: DataFrame are different + +DataFrame shape mismatch +[left]: (3, 8) +[right]: (3, 4)",failed +5098,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[sum2-columns-False],AttributeError: can't set attribute,failed +5131,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[True--3-52879115],IndexError: positional indexers are out-of-bounds,failed +5155,tests.integ.modin.binary.test_binary_op,test_binary_comparison_method_between_series_numeric[lt-rhs2-lhs1],TypeError: '<' not supported between instances of 'float' and 'NoneType',failed +5161,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[True--3--9028751],IndexError: index -9028751 is out of bounds for axis 0 with size 7,failed +5162,tests.integ.modin.crosstab.test_crosstab,test_values[median0-True],AttributeError: can't set attribute,failed +5166,tests.integ.modin.crosstab.test_crosstab,test_values[median0-False],AttributeError: can't set attribute,failed +5170,tests.integ.modin.crosstab.test_crosstab,test_values[median1-True],AttributeError: can't set attribute,failed +5171,tests.integ.modin.frame.test_loc,test_df_loc_set_general_col_key_type[index-row_key1-col_key8],"AssertionError: DataFrame.iloc[:, 0] (column name=""D"") are different + +DataFrame.iloc[:, 0] (column name=""D"") values are different (100.0 %) [index]: [0, 1, 2] [left]: [nan, nan, nan] -[right]: [100140091036409.94, nan, nan] -At positional index 0, first diff: nan != 100140091036409.94",failed -5045,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[min1-columns-True],AttributeError: can't set attribute,failed -5046,tests.integ.modin.frame.test_loc,test_df_loc_get_reversed_key_slice_with_unordered_nullable_index[first--1-6-None],KeyError: 7,failed -5049,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_multiindex[item_values4-None-item_columns4-3-col_key3-col_key_index3-row_key2-row_key_index2],"AssertionError: DataFrame.iloc[:, 1] (column name=""('b', 2)"") are different - -DataFrame.iloc[:, 1] (column name=""('b', 2)"") values are different (40.0 %) -[index]: [(x, 99), (y, 11), (x, 11), (y, 99), (z, -12)] -[left]: [2.0, nan, nan, 56.0, -6.0] -[right]: [2, -997, -996, 56, -6]",failed -5053,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[min1-columns-False],AttributeError: can't set attribute,failed -5055,tests.integ.modin.binary.test_binary_op,test_binary_comparison_method_between_series_numeric[ne-rhs0-lhs0],"AssertionError: Series are different +[right]: [1.0, 4.0, 7.0] +At positional index 0, first diff: nan != 1.0",failed +5174,tests.integ.modin.binary.test_binary_op,test_binary_comparison_method_between_series_numeric[lt-rhs2-lhs2],TypeError: '<' not supported between instances of 'NoneType' and 'NoneType',failed +5175,tests.integ.modin.crosstab.test_crosstab,test_values[median1-False],AttributeError: can't set attribute,failed +5178,tests.integ.modin.crosstab.test_crosstab,test_values[count-True],AttributeError: can't set attribute,failed +5181,tests.integ.modin.binary.test_binary_op,test_binary_comparison_method_between_series_numeric[lt-rhs2-lhs3],TypeError: '<' not supported between instances of 'float' and 'NoneType',failed +5182,tests.integ.modin.crosstab.test_crosstab,test_values[count-False],AttributeError: can't set attribute,failed +5185,tests.integ.modin.binary.test_binary_op,test_binary_comparison_method_between_series_numeric[lt-rhs3-lhs0],TypeError: '<' not supported between instances of 'float' and 'NoneType',failed +5186,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[True-4--8],IndexError: index -8 is out of bounds for axis 0 with size 7,failed +5188,tests.integ.modin.binary.test_binary_op,test_binary_comparison_method_between_series_numeric[lt-rhs3-lhs1],TypeError: '<' not supported between instances of 'float' and 'NoneType',failed +5190,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[True-4-7],IndexError: positional indexers are out-of-bounds,failed +5191,tests.integ.modin.crosstab.test_crosstab,test_values[mean0-True],AttributeError: can't set attribute,failed +5193,tests.integ.modin.frame.test_loc,test_df_loc_set_general_col_key_type[index-row_key1-col_key9],"KeyError: array(['1', '2'], dtype=']",failed -5059,tests.integ.modin.frame.test_loc,test_df_loc_get_reversed_key_slice_with_unordered_nullable_index[first--1-6-1],KeyError: 7,failed -5060,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[amin-0-True],AttributeError: can't set attribute,failed -5061,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_multiindex[item_values4-None-item_columns4-3-col_key3-col_key_index3-row_key3-row_key_index3],"AssertionError: DataFrame.iloc[:, 1] (column name=""('b', 2)"") are different - -DataFrame.iloc[:, 1] (column name=""('b', 2)"") values are different (40.0 %) -[index]: [(x, 99), (y, 11), (x, 11), (y, 99), (z, -12)] -[left]: [2.0, nan, nan, 56.0, -6.0] -[right]: [2, -996, -997, 56, -6]",failed -5062,tests.integ.modin.binary.test_binary_op,test_binary_comparison_method_between_series_numeric[ne-rhs0-lhs1],"AssertionError: Series are different +[left]: [True, True, True, True, True, True, False, True, True, True, True, True, True, True, True, True, True, True] +[right]: [True, True, True, True, True, True, , True, True, True, True, True, True, True, True, True, True, True]",failed +5217,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[True--7-0],IndexError: index -7 is out of bounds for axis 0 with size 6,failed +5218,tests.integ.modin.crosstab.test_crosstab,test_values[min0-False],AttributeError: can't set attribute,failed +5220,tests.integ.modin.binary.test_binary_op,test_binary_comparison_method_between_series_numeric[le-rhs0-lhs1],"AssertionError: Series are different Series values are different (11.11111 %) [index]: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17] -[left]: [True, True, True, True, True, True, True, True, True, True, True, True, True, True, True, True, True, True] -[right]: [True, True, True, True, True, True, , True, True, True, True, True, True, True, True, True, True, ]",failed -5067,tests.integ.modin.binary.test_binary_op,test_binary_comparison_method_between_series_numeric[ne-rhs0-lhs2],"AssertionError: Series are different +[left]: [False, True, True, False, False, False, False, False, True, False, True, True, False, False, False, False, False, True] +[right]: [False, True, True, False, False, False, , False, True, False, True, True, , False, False, False, False, True]",failed +5222,tests.integ.modin.frame.test_iloc,test_df_iloc_get_empty,IndexError: single positional indexer is out-of-bounds,failed +5223,tests.integ.modin.crosstab.test_crosstab,test_values[min1-True],AttributeError: can't set attribute,failed +5224,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[True--7--3],IndexError: index -7 is out of bounds for axis 0 with size 6,failed +5226,tests.integ.modin.frame.test_iloc,test_df_iloc_get_diff2native,"ValueError: +Location based indexing can only have [integer, integer slice (START point is +INCLUDED, END point is EXCLUDED), listlike of integers, boolean array] types.",failed +5227,tests.integ.modin.binary.test_binary_op,test_binary_comparison_method_between_series_numeric[le-rhs0-lhs2],TypeError: '<=' not supported between instances of 'NoneType' and 'float',failed +5228,tests.integ.modin.crosstab.test_crosstab,test_values[min1-False],AttributeError: can't set attribute,failed +5230,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[True--7-4],IndexError: index -7 is out of bounds for axis 0 with size 6,failed +5231,tests.integ.modin.frame.test_loc,test_df_loc_set_general_col_key_type[index-row_key1-col_key10],"KeyError: array(['E', 1, 'X', 2], dtype=object)",failed +5237,tests.integ.modin.binary.test_binary_op,test_binary_comparison_method_between_series_numeric[le-rhs0-lhs3],TypeError: '<=' not supported between instances of 'NoneType' and 'float',failed +5239,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[True--7--7],IndexError: index -7 is out of bounds for axis 0 with size 6,failed +5243,tests.integ.modin.binary.test_binary_op,test_binary_comparison_method_between_series_numeric[le-rhs1-lhs0],"AssertionError: Series are different -Series values are different (16.66667 %) +Series values are different (11.11111 %) [index]: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17] -[left]: [True, True, True, True, True, True, True, True, True, True, True, True, True, True, True, True, True, True] -[right]: [True, , True, , True, True, True, True, True, True, True, True, True, True, True, True, True, ]",failed -5068,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[amin-0-False],AttributeError: can't set attribute,failed -5071,tests.integ.modin.binary.test_binary_op,test_binary_comparison_method_between_series_numeric[ne-rhs0-lhs3],"AssertionError: Series are different +[left]: [True, False, False, True, True, True, False, True, False, True, False, False, False, True, True, True, True, False] +[right]: [True, False, False, True, True, True, , True, False, True, False, False, , True, True, True, True, False]",failed +5248,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[True--7-6],IndexError: index -7 is out of bounds for axis 0 with size 6,failed +5250,tests.integ.modin.binary.test_binary_op,test_binary_comparison_method_between_series_numeric[le-rhs1-lhs1],"AssertionError: Series are different -Series values are different (22.22222 %) +Series values are different (5.55556 %) [index]: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17] -[left]: [True, True, True, True, True, True, True, True, True, True, True, True, True, True, True, True, True, True] -[right]: [True, , True, True, True, True, True, True, , , True, True, True, True, True, True, True, ]",failed -5073,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[amin-1-True],AttributeError: can't set attribute,failed -5074,tests.integ.modin.frame.test_loc,test_df_loc_get_reversed_key_slice_with_unordered_nullable_index[first--1-6-4],KeyError: 7,failed -5078,tests.integ.modin.binary.test_binary_op,test_binary_comparison_method_between_series_numeric[ne-rhs1-lhs0],"AssertionError: Series are different - -Series values are different (11.11111 %) -[index]: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17] -[left]: [True, True, True, True, True, True, True, True, True, True, True, True, True, True, True, True, True, True] -[right]: [True, True, True, True, True, True, , True, True, True, True, True, True, True, True, True, True, ]",failed -5083,tests.integ.modin.binary.test_binary_op,test_binary_comparison_method_between_series_numeric[ne-rhs1-lhs1],"AssertionError: Series are different - -Series values are different (5.55556 %) -[index]: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17] -[left]: [False, False, False, False, False, False, True, False, False, False, False, False, False, False, False, False, False, False] -[right]: [False, False, False, False, False, False, , False, False, False, False, False, False, False, False, False, False, False]",failed -5087,tests.integ.modin.frame.test_loc,test_df_loc_get_reversed_key_slice_with_unordered_nullable_index[first--1-6-6],KeyError: 7,failed -5088,tests.integ.modin.binary.test_binary_op,test_binary_comparison_method_between_series_numeric[ne-rhs1-lhs2],"AssertionError: Series are different - -Series values are different (22.22222 %) -[index]: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17] -[left]: [True, True, True, True, True, True, True, True, True, True, True, True, True, True, True, True, True, True] -[right]: [True, , True, , True, True, , True, True, True, True, True, True, True, True, True, True, ]",failed -5093,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[amin-1-False],AttributeError: can't set attribute,failed -5097,tests.integ.modin.binary.test_binary_op,test_binary_comparison_method_between_series_numeric[ne-rhs1-lhs3],"AssertionError: Series are different - -Series values are different (22.22222 %) -[index]: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17] -[left]: [True, True, True, True, True, True, True, True, True, True, True, True, True, True, True, True, True, True] -[right]: [True, , True, True, True, True, , True, , , True, True, True, True, True, True, True, True]",failed -5105,tests.integ.modin.binary.test_binary_op,test_binary_comparison_method_between_series_numeric[ne-rhs2-lhs0],"AssertionError: Series are different - -Series values are different (16.66667 %) -[index]: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17] -[left]: [True, True, True, True, True, True, True, True, True, True, True, True, True, True, True, True, True, True] -[right]: [True, , True, , True, True, True, True, True, True, True, True, True, True, True, True, True, ]",failed -5106,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[amin-True-True],AttributeError: can't set attribute,failed -5109,tests.integ.modin.binary.test_binary_op,test_binary_comparison_method_between_series_numeric[ne-rhs2-lhs1],"AssertionError: Series are different - -Series values are different (22.22222 %) -[index]: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17] -[left]: [True, True, True, True, True, True, True, True, True, True, True, True, True, True, True, True, True, True] -[right]: [True, , True, , True, True, , True, True, True, True, True, True, True, True, True, True, ]",failed -5113,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[amin-True-False],AttributeError: can't set attribute,failed -5115,tests.integ.modin.binary.test_binary_op,test_binary_comparison_method_between_series_numeric[ne-rhs2-lhs2],"AssertionError: Series are different - -Series values are different (100.0 %) -[index]: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17] -[left]: [True, True, True, True, True, True, True, True, True, True, True, True, True, True, True, True, True, True] -[right]: [False, , False, , False, False, False, False, False, False, False, False, False, False, False, False, False, ]",failed -5117,tests.integ.modin.frame.test_iloc,test_df_iloc_get_col_input_snowpark_pandas_return_dataframe[Index-2],"ValueError: -Location based indexing can only have [integer, integer slice (START point is -INCLUDED, END point is EXCLUDED), listlike of integers, boolean array] types.",failed -5120,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[amin-all-True],AttributeError: can't set attribute,failed -5122,tests.integ.modin.binary.test_binary_op,test_binary_comparison_method_between_series_numeric[ne-rhs2-lhs3],"AssertionError: Series are different - -Series values are different (27.77778 %) -[index]: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17] -[left]: [True, True, True, True, True, True, True, True, True, True, True, True, True, True, True, True, True, True] -[right]: [True, , True, , True, True, True, True, , , True, True, True, True, True, True, True, ]",failed -5125,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[amin-all-False],AttributeError: can't set attribute,failed -5128,tests.integ.modin.binary.test_binary_op,test_binary_comparison_method_between_series_numeric[ne-rhs3-lhs0],"AssertionError: Series are different - -Series values are different (22.22222 %) -[index]: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17] -[left]: [True, True, True, True, True, True, True, True, True, True, True, True, True, True, True, True, True, True] -[right]: [True, , True, True, True, True, True, True, , , True, True, True, True, True, True, True, ]",failed -5130,tests.integ.modin.frame.test_loc,test_df_loc_get_reversed_key_slice_with_unordered_nullable_index[first--2-1-None],KeyError: 3,failed -5132,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[amin-index-True],AttributeError: can't set attribute,failed -5133,tests.integ.modin.binary.test_binary_op,test_binary_comparison_method_between_series_numeric[ne-rhs3-lhs1],"AssertionError: Series are different - -Series values are different (22.22222 %) -[index]: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17] -[left]: [True, True, True, True, True, True, True, True, True, True, True, True, True, True, True, True, True, True] -[right]: [True, , True, True, True, True, , True, , , True, True, True, True, True, True, True, True]",failed -5139,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[amin-index-False],AttributeError: can't set attribute,failed -5142,tests.integ.modin.frame.test_iloc,test_df_iloc_get_multiindex_key_negative,"ValueError: -Location based indexing can only have [integer, integer slice (START point is -INCLUDED, END point is EXCLUDED), listlike of integers, boolean array] types.",failed -5143,tests.integ.modin.frame.test_apply,test_apply_axis1_with_3rd_party_libraries_and_decorator[packages0-7],"TypeError: The input of UDF ""TESTDB_SNOWPANDAS"".""PUBLIC"".SNOWPARK_TEMP_FUNCTION_TVJR42YQJ6 must be Column, column name, or a list of them",failed -5145,tests.integ.modin.frame.test_loc,test_df_loc_get_reversed_key_slice_with_unordered_nullable_index[first--2-1-1],KeyError: 3,failed -5156,tests.integ.modin.binary.test_binary_op,test_binary_comparison_method_between_series_numeric[ne-rhs3-lhs2],"AssertionError: Series are different - -Series values are different (27.77778 %) -[index]: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17] -[left]: [True, True, True, True, True, True, True, True, True, True, True, True, True, True, True, True, True, True] -[right]: [True, , True, , True, True, True, True, , , True, True, True, True, True, True, True, ]",failed -5162,tests.integ.modin.frame.test_loc,test_df_loc_get_reversed_key_slice_with_unordered_nullable_index[first--2-1-4],KeyError: 3,failed -5163,tests.integ.modin.binary.test_binary_op,test_binary_comparison_method_between_series_numeric[ne-rhs3-lhs3],"AssertionError: Series are different - -Series values are different (100.0 %) -[index]: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17] -[left]: [True, True, True, True, True, True, True, True, True, True, True, True, True, True, True, True, True, True] -[right]: [False, , False, False, False, False, False, False, , , False, False, False, False, False, False, False, False]",failed -5167,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[amin-columns-True],AttributeError: can't set attribute,failed -5171,tests.integ.modin.binary.test_binary_op,test_binary_comparison_method_between_series_numeric[gt-rhs0-lhs0],"AssertionError: Series are different - -Series values are different (5.55556 %) -[index]: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17] -[left]: [False, False, False, False, False, False, False, False, False, False, False, False, False, False, False, False, False, False] -[right]: [False, False, False, False, False, False, False, False, False, False, False, False, False, False, False, False, False, ]",failed -5175,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[amin-columns-False],AttributeError: can't set attribute,failed -5178,tests.integ.modin.binary.test_binary_op,test_binary_comparison_method_between_series_numeric[gt-rhs0-lhs1],"AssertionError: Series are different - -Series values are different (11.11111 %) -[index]: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17] -[left]: [True, True, True, True, False, True, False, False, False, False, True, True, True, False, True, True, True, False] -[right]: [True, True, True, True, False, True, , False, False, False, True, True, True, False, True, True, True, ]",failed -5180,tests.integ.modin.frame.test_iloc,test_df_iloc_get_col_input_snowpark_pandas_return_dataframe[Series-2],"ValueError: -Location based indexing can only have [integer, integer slice (START point is -INCLUDED, END point is EXCLUDED), listlike of integers, boolean array] types.",failed -5181,tests.integ.modin.frame.test_loc,test_df_loc_get_reversed_key_slice_with_unordered_nullable_index[first--2-1-6],KeyError: 3,failed -5186,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[max0-0-True],AttributeError: can't set attribute,failed -5189,tests.integ.modin.frame.test_loc,test_df_loc_get_reversed_key_slice_with_unordered_nullable_index[first--2-4-None],"AssertionError: DataFrame are different - -DataFrame shape mismatch -[left]: (4, 8) -[right]: (1, 8)",failed -5194,tests.integ.modin.binary.test_binary_op,test_binary_comparison_method_between_series_numeric[gt-rhs0-lhs2],TypeError: boolean value of NA is ambiguous,failed -5196,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[max0-0-False],AttributeError: can't set attribute,failed -5205,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[max0-1-True],AttributeError: can't set attribute,failed -5211,tests.integ.modin.binary.test_binary_op,test_binary_comparison_method_between_series_numeric[gt-rhs0-lhs3],TypeError: '>' not supported between instances of 'NoneType' and 'float',failed -5215,tests.integ.modin.frame.test_loc,test_df_loc_get_reversed_key_slice_with_unordered_nullable_index[first--2-4-1],"AssertionError: DataFrame are different - -DataFrame shape mismatch -[left]: (1, 8) -[right]: (0, 8)",failed -5216,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[max0-1-False],AttributeError: can't set attribute,failed -5220,tests.integ.modin.binary.test_binary_op,test_binary_comparison_method_between_series_numeric[gt-rhs1-lhs0],"AssertionError: Series are different - -Series values are different (11.11111 %) -[index]: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17] -[left]: [False, False, False, False, True, False, False, True, True, True, False, False, False, True, False, False, False, False] -[right]: [False, False, False, False, True, False, , True, True, True, False, False, False, True, False, False, False, ]",failed -5223,tests.integ.modin.frame.test_loc,test_df_loc_get_reversed_key_slice_with_unordered_nullable_index[first--2-4-4],"AssertionError: DataFrame are different - -DataFrame shape mismatch -[left]: (4, 8) -[right]: (1, 8)",failed -5226,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[max0-True-True],AttributeError: can't set attribute,failed -5229,tests.integ.modin.binary.test_binary_op,test_binary_comparison_method_between_series_numeric[gt-rhs1-lhs1],"AssertionError: Series are different - -Series values are different (5.55556 %) -[index]: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17] -[left]: [False, False, False, False, False, False, False, False, False, False, False, False, False, False, False, False, False, False] -[right]: [False, False, False, False, False, False, , False, False, False, False, False, False, False, False, False, False, False]",failed -5232,tests.integ.modin.frame.test_loc,test_df_loc_get_reversed_key_slice_with_unordered_nullable_index[first--2-4-6],"AssertionError: DataFrame are different - -DataFrame shape mismatch -[left]: (1, 8) -[right]: (0, 8)",failed -5236,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[max0-True-False],AttributeError: can't set attribute,failed -5248,tests.integ.modin.frame.test_loc,test_df_loc_get_reversed_key_slice_with_unordered_nullable_index[first--2-6-None],KeyError: 8,failed -5257,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[max0-all-True],AttributeError: can't set attribute,failed -5262,tests.integ.modin.binary.test_binary_op,test_binary_comparison_method_between_series_numeric[gt-rhs1-lhs2],TypeError: boolean value of NA is ambiguous,failed -5266,tests.integ.modin.frame.test_loc,test_df_loc_get_reversed_key_slice_with_unordered_nullable_index[first--2-6-1],KeyError: 8,failed -5268,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[max0-all-False],AttributeError: can't set attribute,failed -5277,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[max0-index-True],AttributeError: can't set attribute,failed -5278,tests.integ.modin.binary.test_binary_op,test_binary_comparison_method_between_series_numeric[gt-rhs1-lhs3],TypeError: '>' not supported between instances of 'NoneType' and 'float',failed -5286,tests.integ.modin.frame.test_loc,test_df_loc_get_reversed_key_slice_with_unordered_nullable_index[first--2-6-4],KeyError: 8,failed -5288,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[max0-index-False],AttributeError: can't set attribute,failed -5296,tests.integ.modin.binary.test_binary_op,test_binary_comparison_method_between_series_numeric[gt-rhs2-lhs0],TypeError: boolean value of NA is ambiguous,failed -5298,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[max0-columns-True],AttributeError: can't set attribute,failed -5306,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[max0-columns-False],AttributeError: can't set attribute,failed -5313,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[max1-0-True],AttributeError: can't set attribute,failed -5314,tests.integ.modin.binary.test_binary_op,test_binary_comparison_method_between_series_numeric[gt-rhs2-lhs1],TypeError: boolean value of NA is ambiguous,failed -5324,tests.integ.modin.frame.test_loc,test_df_loc_get_reversed_key_slice_with_unordered_nullable_index[first--2-6-6],KeyError: 8,failed -5333,tests.integ.modin.frame.test_iloc,test_df_iloc_get_col_input_snowpark_pandas_return_dataframe[emptyFloatSeries-2],"ValueError: -Location based indexing can only have [integer, integer slice (START point is -INCLUDED, END point is EXCLUDED), listlike of integers, boolean array] types.",failed -5338,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[max1-0-False],AttributeError: can't set attribute,failed -5347,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[max1-1-True],AttributeError: can't set attribute,failed -5351,tests.integ.modin.binary.test_binary_op,test_binary_comparison_method_between_series_numeric[gt-rhs2-lhs2],TypeError: boolean value of NA is ambiguous,failed -5358,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[max1-1-False],AttributeError: can't set attribute,failed -5360,tests.integ.modin.frame.test_loc,test_df_loc_get_reversed_key_slice_with_unordered_nullable_index[first--9-1-None],KeyError: 10,failed -5371,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[max1-True-True],AttributeError: can't set attribute,failed -5374,tests.integ.modin.binary.test_binary_op,test_binary_comparison_method_between_series_numeric[gt-rhs2-lhs3],TypeError: boolean value of NA is ambiguous,failed -5379,tests.integ.modin.frame.test_loc,test_df_loc_get_reversed_key_slice_with_unordered_nullable_index[first--9-1-1],KeyError: 10,failed -5381,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[max1-True-False],AttributeError: can't set attribute,failed -5389,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[max1-all-True],AttributeError: can't set attribute,failed -5391,tests.integ.modin.binary.test_binary_op,test_binary_comparison_method_between_series_numeric[gt-rhs3-lhs0],TypeError: '>' not supported between instances of 'float' and 'NoneType',failed -5397,tests.integ.modin.frame.test_iloc,test_df_iloc_get_empty,IndexError: single positional indexer is out-of-bounds,failed -5398,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[max1-all-False],AttributeError: can't set attribute,failed -5400,tests.integ.modin.frame.test_loc,test_df_loc_get_reversed_key_slice_with_unordered_nullable_index[first--9-1-4],KeyError: 10,failed -5405,tests.integ.modin.frame.test_iloc,test_df_iloc_get_diff2native,"ValueError: -Location based indexing can only have [integer, integer slice (START point is -INCLUDED, END point is EXCLUDED), listlike of integers, boolean array] types.",failed -5407,tests.integ.modin.binary.test_binary_op,test_binary_comparison_method_between_series_numeric[gt-rhs3-lhs1],TypeError: '>' not supported between instances of 'float' and 'NoneType',failed -5417,tests.integ.modin.frame.test_loc,test_df_loc_get_reversed_key_slice_with_unordered_nullable_index[first--9-1-6],KeyError: 10,failed -5422,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[max1-index-True],AttributeError: can't set attribute,failed -5426,tests.integ.modin.binary.test_binary_op,test_binary_comparison_method_between_series_numeric[gt-rhs3-lhs2],TypeError: boolean value of NA is ambiguous,failed -5433,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[max1-index-False],AttributeError: can't set attribute,failed -5441,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[max1-columns-True],AttributeError: can't set attribute,failed -5452,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[max1-columns-False],AttributeError: can't set attribute,failed -5465,tests.integ.modin.binary.test_binary_op,test_binary_comparison_method_between_series_numeric[gt-rhs3-lhs3],TypeError: '>' not supported between instances of 'NoneType' and 'NoneType',failed -5466,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[amax-0-True],AttributeError: can't set attribute,failed -5468,tests.integ.modin.frame.test_loc,test_df_loc_get_reversed_key_slice_with_unordered_nullable_index[first--9-4-None],KeyError: 13,failed -5476,tests.integ.modin.binary.test_binary_op,test_binary_comparison_method_between_series_numeric[ge-rhs0-lhs0],"AssertionError: Series are different - -Series values are different (5.55556 %) -[index]: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17] -[left]: [True, True, True, True, True, True, True, True, True, True, True, True, True, True, True, True, True, False] -[right]: [True, True, True, True, True, True, True, True, True, True, True, True, True, True, True, True, True, ]",failed -5478,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[amax-0-False],AttributeError: can't set attribute,failed -5482,tests.integ.modin.frame.test_iloc,test_df_iloc_set_different_incompatible_types[5-123],Failed: DID NOT RAISE ,failed -5485,tests.integ.modin.binary.test_binary_op,test_binary_comparison_method_between_series_numeric[ge-rhs0-lhs1],"AssertionError: Series are different - -Series values are different (11.11111 %) -[index]: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17] -[left]: [True, True, True, True, False, True, False, False, False, False, True, True, True, False, True, True, True, False] -[right]: [True, True, True, True, False, True, , False, False, False, True, True, True, False, True, True, True, ]",failed -5487,tests.integ.modin.frame.test_iloc,test_df_iloc_set_different_incompatible_types[5-99.99],Failed: DID NOT RAISE ,failed -5490,tests.integ.modin.frame.test_loc,test_df_loc_get_reversed_key_slice_with_unordered_nullable_index[first--9-4-1],KeyError: 13,failed -5492,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[amax-1-True],AttributeError: can't set attribute,failed -5494,tests.integ.modin.frame.test_iloc,test_df_iloc_set_different_incompatible_types[5-True],Failed: DID NOT RAISE ,failed -5498,tests.integ.modin.frame.test_iloc,test_df_iloc_set_different_incompatible_types[5-abc],Failed: DID NOT RAISE ,failed -5503,tests.integ.modin.frame.test_iloc,test_df_iloc_set_different_incompatible_types[5-item_value4],Failed: DID NOT RAISE ,failed -5504,tests.integ.modin.binary.test_binary_op,test_binary_comparison_method_between_series_numeric[ge-rhs0-lhs2],TypeError: boolean value of NA is ambiguous,failed -5508,tests.integ.modin.frame.test_iloc,test_df_iloc_set_different_incompatible_types[5-item_value5],Failed: DID NOT RAISE ,failed -5510,tests.integ.modin.frame.test_loc,test_df_loc_get_reversed_key_slice_with_unordered_nullable_index[first--9-4-4],KeyError: 13,failed -5512,tests.integ.modin.frame.test_iloc,test_df_iloc_set_different_incompatible_types[6-123],Failed: DID NOT RAISE ,failed -5515,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[amax-1-False],AttributeError: can't set attribute,failed -5517,tests.integ.modin.frame.test_iloc,test_df_iloc_set_different_incompatible_types[6-99.99],Failed: DID NOT RAISE ,failed -5519,tests.integ.modin.binary.test_binary_op,test_binary_comparison_method_between_series_numeric[ge-rhs0-lhs3],TypeError: '>=' not supported between instances of 'NoneType' and 'float',failed -5520,tests.integ.modin.frame.test_iloc,test_df_iloc_set_different_incompatible_types[6-True],Failed: DID NOT RAISE ,failed -5523,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[amax-True-True],AttributeError: can't set attribute,failed -5524,tests.integ.modin.binary.test_binary_op,test_binary_arithmetic_ops_with_non_scalar_fill_value_negative[fill_value0-add],"AssertionError: Regex pattern did not match. - Regex: 'Only scalars can be used as fill_value.' - Input: 'NumPy boolean array indexing assignment cannot assign 3 input values to the 1 output values where the mask is true'",failed -5525,tests.integ.modin.frame.test_iloc,test_df_iloc_set_different_incompatible_types[6-abc],Failed: DID NOT RAISE ,failed -5526,tests.integ.modin.binary.test_binary_op,test_binary_comparison_method_between_series_numeric[ge-rhs1-lhs0],"AssertionError: Series are different +[left]: [True, True, True, True, True, True, True, True, True, True, True, True, False, True, True, True, True, True] +[right]: [True, True, True, True, True, True, True, True, True, True, True, True, , True, True, True, True, True]",failed +5255,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[True--7--6],IndexError: index -7 is out of bounds for axis 0 with size 6,failed +5259,tests.integ.modin.crosstab.test_crosstab,test_values[min2-True],AttributeError: can't set attribute,failed +5263,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[True--7--8],IndexError: index -8 is out of bounds for axis 0 with size 7,failed +5266,tests.integ.modin.crosstab.test_crosstab,test_values[min2-False],AttributeError: can't set attribute,failed +5267,tests.integ.modin.frame.test_iloc,test_df_iloc_set_different_incompatible_types[5-123],Failed: DID NOT RAISE ,failed +5268,tests.integ.modin.frame.test_loc,test_df_loc_set_general_col_key_type_with_duplicate_columns[index-col_key1],"AssertionError: DataFrame.iloc[:, 0] (column name=""A"") are different -Series values are different (11.11111 %) -[index]: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17] -[left]: [False, False, False, False, True, False, False, True, True, True, False, False, False, True, False, False, False, False] -[right]: [False, False, False, False, True, False, , True, True, True, False, False, False, True, False, False, False, ]",failed -5528,tests.integ.modin.frame.test_loc,test_df_loc_get_reversed_key_slice_with_unordered_nullable_index[first--9-4-6],KeyError: 13,failed -5530,tests.integ.modin.frame.test_iloc,test_df_iloc_set_different_incompatible_types[6-item_value4],Failed: DID NOT RAISE ,failed -5532,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[amax-True-False],AttributeError: can't set attribute,failed -5534,tests.integ.modin.frame.test_iloc,test_df_iloc_set_different_incompatible_types[6-item_value5],Failed: DID NOT RAISE ,failed -5539,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[amax-all-True],AttributeError: can't set attribute,failed -5540,tests.integ.modin.frame.test_loc,test_df_loc_get_reversed_key_slice_with_unordered_nullable_index[first--9-6-None],KeyError: 15,failed -5541,tests.integ.modin.binary.test_binary_op,test_binary_arithmetic_ops_with_non_scalar_fill_value_negative[fill_value0-radd],"AssertionError: Regex pattern did not match. - Regex: 'Only scalars can be used as fill_value.' - Input: 'NumPy boolean array indexing assignment cannot assign 3 input values to the 1 output values where the mask is true'",failed -5546,tests.integ.modin.binary.test_binary_op,test_binary_comparison_method_between_series_numeric[ge-rhs1-lhs1],"AssertionError: Series are different +DataFrame.iloc[:, 0] (column name=""A"") values are different (100.0 %) +[index]: [0, 1, 2] +[left]: [1, 4, 7] +[right]: [nan, 7.0, 4.0]",failed +5269,tests.integ.modin.frame.test_iloc,test_df_iloc_set_different_incompatible_types[5-99.99],Failed: DID NOT RAISE ,failed +5272,tests.integ.modin.crosstab.test_crosstab,test_values[max0-True],AttributeError: can't set attribute,failed +5273,tests.integ.modin.frame.test_iloc,test_df_iloc_set_different_incompatible_types[5-True],Failed: DID NOT RAISE ,failed +5274,tests.integ.modin.binary.test_binary_op,test_binary_comparison_method_between_series_numeric[le-rhs1-lhs2],TypeError: '<=' not supported between instances of 'NoneType' and 'float',failed +5275,tests.integ.modin.frame.test_iloc,test_df_iloc_set_different_incompatible_types[5-abc],Failed: DID NOT RAISE ,failed +5277,tests.integ.modin.frame.test_iloc,test_df_iloc_set_different_incompatible_types[5-item_value4],Failed: DID NOT RAISE ,failed +5278,tests.integ.modin.crosstab.test_crosstab,test_values[max0-False],AttributeError: can't set attribute,failed +5279,tests.integ.modin.frame.test_iloc,test_df_iloc_set_different_incompatible_types[5-item_value5],Failed: DID NOT RAISE ,failed +5280,tests.integ.modin.frame.test_iloc,test_df_iloc_set_different_incompatible_types[6-123],Failed: DID NOT RAISE ,failed +5282,tests.integ.modin.crosstab.test_crosstab,test_values[max1-True],AttributeError: can't set attribute,failed +5283,tests.integ.modin.binary.test_binary_op,test_binary_comparison_method_between_series_numeric[le-rhs1-lhs3],TypeError: '<=' not supported between instances of 'NoneType' and 'float',failed +5284,tests.integ.modin.frame.test_iloc,test_df_iloc_set_different_incompatible_types[6-99.99],Failed: DID NOT RAISE ,failed +5285,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[True--7-7],IndexError: positional indexers are out-of-bounds,failed +5287,tests.integ.modin.crosstab.test_crosstab,test_values[max1-False],AttributeError: can't set attribute,failed +5288,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[True--7-52879115],IndexError: positional indexers are out-of-bounds,failed +5290,tests.integ.modin.binary.test_binary_op,test_binary_comparison_method_between_series_numeric[le-rhs2-lhs0],TypeError: '<=' not supported between instances of 'float' and 'NoneType',failed +5292,tests.integ.modin.crosstab.test_crosstab,test_values[max2-True],AttributeError: can't set attribute,failed +5293,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[True--7--9028751],IndexError: index -9028751 is out of bounds for axis 0 with size 7,failed +5294,tests.integ.modin.frame.test_iloc,test_df_iloc_set_different_incompatible_types[6-True],Failed: DID NOT RAISE ,failed +5296,tests.integ.modin.frame.test_iloc,test_df_iloc_set_different_incompatible_types[6-abc],Failed: DID NOT RAISE ,failed +5297,tests.integ.modin.crosstab.test_crosstab,test_values[max2-False],AttributeError: can't set attribute,failed +5298,tests.integ.modin.binary.test_binary_op,test_binary_comparison_method_between_series_numeric[le-rhs2-lhs1],TypeError: '<=' not supported between instances of 'float' and 'NoneType',failed +5299,tests.integ.modin.frame.test_iloc,test_df_iloc_set_different_incompatible_types[6-item_value4],Failed: DID NOT RAISE ,failed +5301,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[True-6-0],IndexError: positional indexers are out-of-bounds,failed +5303,tests.integ.modin.frame.test_iloc,test_df_iloc_set_different_incompatible_types[6-item_value5],Failed: DID NOT RAISE ,failed +5305,tests.integ.modin.frame.test_iloc,test_df_iloc_set_negative[key1-val1],Failed: DID NOT RAISE ,failed +5306,tests.integ.modin.binary.test_binary_op,test_binary_comparison_method_between_series_numeric[le-rhs2-lhs2],TypeError: '<=' not supported between instances of 'NoneType' and 'NoneType',failed +5308,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[True-6--3],IndexError: positional indexers are out-of-bounds,failed +5309,tests.integ.modin.frame.test_iloc,test_df_iloc_set_negative[key2-val2],Failed: DID NOT RAISE ,failed +5313,tests.integ.modin.crosstab.test_crosstab,test_values[sum0-True],AttributeError: can't set attribute,failed +5315,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[True-6-4],IndexError: positional indexers are out-of-bounds,failed +5317,tests.integ.modin.crosstab.test_crosstab,test_values[sum0-False],AttributeError: can't set attribute,failed +5318,tests.integ.modin.frame.test_iloc,test_df_iloc_set_snowpark_pandas_input_negative_incompatible_types[series],Failed: DID NOT RAISE ,failed +5320,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[True-6--7],IndexError: positional indexers are out-of-bounds,failed +5321,tests.integ.modin.binary.test_binary_op,test_binary_comparison_method_between_series_numeric[le-rhs2-lhs3],TypeError: '<=' not supported between instances of 'float' and 'NoneType',failed +5322,tests.integ.modin.crosstab.test_crosstab,test_values[sum1-True],AttributeError: can't set attribute,failed +5323,tests.integ.modin.frame.test_loc,test_df_loc_set_general_col_key_type_with_duplicate_columns[index-col_key6],ValueError: cannot reindex on an axis with duplicate labels,failed +5325,tests.integ.modin.crosstab.test_crosstab,test_values[sum1-False],AttributeError: can't set attribute,failed +5327,tests.integ.modin.binary.test_binary_op,test_binary_comparison_method_between_series_numeric[le-rhs3-lhs0],TypeError: '<=' not supported between instances of 'float' and 'NoneType',failed +5328,tests.integ.modin.frame.test_iloc,test_df_iloc_set_snowpark_pandas_input_negative_incompatible_types[series_broadcast],"ValueError: could not broadcast input array from shape (3,) into shape (3, 7)",failed +5329,tests.integ.modin.crosstab.test_crosstab,test_values[sum2-True],AttributeError: can't set attribute,failed +5332,tests.integ.modin.binary.test_binary_op,test_binary_comparison_method_between_series_numeric[le-rhs3-lhs1],TypeError: '<=' not supported between instances of 'float' and 'NoneType',failed +5333,tests.integ.modin.crosstab.test_crosstab,test_values[sum2-False],AttributeError: can't set attribute,failed +5334,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[True-6-6],IndexError: positional indexers are out-of-bounds,failed +5335,tests.integ.modin.frame.test_iloc,test_df_iloc_set_snowpark_pandas_input_negative_incompatible_types[df_broadcast],Failed: DID NOT RAISE ,failed +5338,tests.integ.modin.crosstab.test_crosstab,test_values_series_like[median0-True],"AssertionError: DataFrame.index are different -Series values are different (5.55556 %) -[index]: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17] -[left]: [True, True, True, True, True, True, False, True, True, True, True, True, True, True, True, True, True, True] -[right]: [True, True, True, True, True, True, , True, True, True, True, True, True, True, True, True, True, True]",failed -5547,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[amax-all-False],AttributeError: can't set attribute,failed -5552,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[amax-index-True],AttributeError: can't set attribute,failed -5553,tests.integ.modin.frame.test_iloc,test_df_iloc_set_negative[key1-val1],Failed: DID NOT RAISE ,failed -5555,tests.integ.modin.binary.test_binary_op,test_binary_comparison_method_between_series_numeric[ge-rhs1-lhs2],TypeError: boolean value of NA is ambiguous,failed -5556,tests.integ.modin.frame.test_iloc,test_df_iloc_set_negative[key2-val2],Failed: DID NOT RAISE ,failed -5557,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[amax-index-False],AttributeError: can't set attribute,failed -5563,tests.integ.modin.frame.test_loc,test_df_loc_get_reversed_key_slice_with_unordered_nullable_index[first--9-6-1],KeyError: 15,failed -5566,tests.integ.modin.binary.test_binary_op,test_binary_comparison_method_between_series_numeric[ge-rhs1-lhs3],TypeError: '>=' not supported between instances of 'NoneType' and 'float',failed -5567,tests.integ.modin.binary.test_binary_op,test_binary_arithmetic_ops_with_non_scalar_fill_value_negative[fill_value0-sub],"AssertionError: Regex pattern did not match. - Regex: 'Only scalars can be used as fill_value.' - Input: 'NumPy boolean array indexing assignment cannot assign 3 input values to the 1 output values where the mask is true'",failed -5569,tests.integ.modin.frame.test_iloc,test_df_iloc_set_snowpark_pandas_input_negative_incompatible_types[series],Failed: DID NOT RAISE ,failed -5572,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[amax-columns-True],AttributeError: can't set attribute,failed -5573,tests.integ.modin.binary.test_binary_op,test_binary_comparison_method_between_series_numeric[ge-rhs2-lhs0],TypeError: boolean value of NA is ambiguous,failed -5574,tests.integ.modin.frame.test_loc,test_df_loc_get_reversed_key_slice_with_unordered_nullable_index[first--9-6-4],KeyError: 15,failed -5576,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[amax-columns-False],AttributeError: can't set attribute,failed -5577,tests.integ.modin.binary.test_binary_op,test_binary_arithmetic_ops_with_non_scalar_fill_value_negative[fill_value0-rsub],"AssertionError: Regex pattern did not match. - Regex: 'Only scalars can be used as fill_value.' - Input: 'NumPy boolean array indexing assignment cannot assign 3 input values to the 1 output values where the mask is true'",failed -5580,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[sum0-0-True],AttributeError: can't set attribute,failed -5582,tests.integ.modin.binary.test_binary_op,test_binary_comparison_method_between_series_numeric[ge-rhs2-lhs1],TypeError: boolean value of NA is ambiguous,failed -5583,tests.integ.modin.frame.test_iloc,test_df_iloc_set_snowpark_pandas_input_negative_incompatible_types[series_broadcast],"ValueError: could not broadcast input array from shape (3,) into shape (3, 7)",failed -5586,tests.integ.modin.frame.test_loc,test_df_loc_get_reversed_key_slice_with_unordered_nullable_index[first--9-6-6],KeyError: 15,failed -5587,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[sum0-0-False],AttributeError: can't set attribute,failed -5590,tests.integ.modin.binary.test_binary_op,test_binary_arithmetic_ops_with_non_scalar_fill_value_negative[fill_value0-mul],"AssertionError: Regex pattern did not match. - Regex: 'Only scalars can be used as fill_value.' - Input: 'NumPy boolean array indexing assignment cannot assign 3 input values to the 1 output values where the mask is true'",failed -5593,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[sum0-1-True],AttributeError: can't set attribute,failed -5596,tests.integ.modin.frame.test_iloc,test_df_iloc_set_snowpark_pandas_input_negative_incompatible_types[df_broadcast],Failed: DID NOT RAISE ,failed -5597,tests.integ.modin.frame.test_loc,test_df_loc_get_with_non_monotonic_index_get_key_slice[key0-expected_index0],"KeyError: ""Cannot get left slice bound for non-unique label: 'b'""",failed -5600,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[sum0-1-False],AttributeError: can't set attribute,failed -5605,tests.integ.modin.binary.test_binary_op,test_binary_comparison_method_between_series_numeric[ge-rhs2-lhs2],TypeError: boolean value of NA is ambiguous,failed -5606,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_duplicates_2d,"AssertionError: DataFrame.iloc[:, 0] (column name=""A"") are different +Attribute ""names"" are different +[left]: ['row_0'] +[right]: ['species']",failed +5339,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_duplicates_2d,"AssertionError: DataFrame.iloc[:, 0] (column name=""A"") are different DataFrame.iloc[:, 0] (column name=""A"") values are different (50.0 %) [index]: [0, 1, 2, 3] [left]: [nan, nan, 3.0, 4.0] [right]: [72, 73, 3, 4]",failed -5607,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[sum0-True-True],AttributeError: can't set attribute,failed -5612,tests.integ.modin.frame.test_loc,test_df_loc_get_with_non_monotonic_index_get_key_slice[key1-expected_index1],KeyError: 'a',failed -5617,tests.integ.modin.binary.test_binary_op,test_binary_arithmetic_ops_with_non_scalar_fill_value_negative[fill_value0-rmul],"AssertionError: Regex pattern did not match. - Regex: 'Only scalars can be used as fill_value.' - Input: 'NumPy boolean array indexing assignment cannot assign 3 input values to the 1 output values where the mask is true'",failed -5618,tests.integ.modin.binary.test_binary_op,test_binary_comparison_method_between_series_numeric[ge-rhs2-lhs3],TypeError: boolean value of NA is ambiguous,failed -5625,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[sum0-True-False],AttributeError: can't set attribute,failed -5629,tests.integ.modin.binary.test_binary_op,test_binary_comparison_method_between_series_numeric[ge-rhs3-lhs0],TypeError: '>=' not supported between instances of 'float' and 'NoneType',failed -5630,tests.integ.modin.binary.test_binary_op,test_binary_arithmetic_ops_with_non_scalar_fill_value_negative[fill_value0-truediv],"AssertionError: Regex pattern did not match. - Regex: 'Only scalars can be used as fill_value.' - Input: 'NumPy boolean array indexing assignment cannot assign 3 input values to the 1 output values where the mask is true'",failed -5633,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[sum0-all-True],AttributeError: can't set attribute,failed -5637,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[sum0-all-False],AttributeError: can't set attribute,failed -5639,tests.integ.modin.frame.test_loc,test_df_loc_get_with_non_monotonic_index_get_key_slice[key2-expected_index2],KeyError: 'f',failed -5641,tests.integ.modin.binary.test_binary_op,test_binary_comparison_method_between_series_numeric[ge-rhs3-lhs1],TypeError: '>=' not supported between instances of 'float' and 'NoneType',failed -5644,tests.integ.modin.binary.test_binary_op,test_binary_arithmetic_ops_with_non_scalar_fill_value_negative[fill_value0-rtruediv],"AssertionError: Regex pattern did not match. - Regex: 'Only scalars can be used as fill_value.' - Input: 'NumPy boolean array indexing assignment cannot assign 3 input values to the 1 output values where the mask is true'",failed -5645,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[sum0-index-True],AttributeError: can't set attribute,failed -5649,tests.integ.modin.frame.test_loc,test_df_loc_get_with_non_monotonic_index_get_key_slice[key3-expected_index3],"KeyError: ""Cannot get left slice bound for non-unique label: 'd'""",failed -5651,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[sum0-index-False],AttributeError: can't set attribute,failed -5654,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice_negative[key0-ValueError-slice step cannot be zero],"AssertionError: Regex pattern did not match. - Regex: 'slice step cannot be zero' - Input: 'Step must not be zero'",failed -5657,tests.integ.modin.frame.test_iloc,test_df_iloc_get_key_bool[row-list-key5],IndexError: positional indexers are out-of-bounds,failed -5658,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[sum0-columns-True],AttributeError: can't set attribute,failed -5660,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice_negative[key1-TypeError-slice step must be integer],"AssertionError: Regex pattern did not match. - Regex: 'slice step must be integer' - Input: ""Wrong type for value 1.1""",failed -5663,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[sum0-columns-False],AttributeError: can't set attribute,failed -5666,tests.integ.modin.binary.test_binary_op,test_binary_comparison_method_between_series_numeric[ge-rhs3-lhs2],TypeError: boolean value of NA is ambiguous,failed -5671,tests.integ.modin.binary.test_binary_op,test_binary_arithmetic_ops_with_non_scalar_fill_value_negative[fill_value0-floordiv],"AssertionError: Regex pattern did not match. - Regex: 'Only scalars can be used as fill_value.' - Input: 'NumPy boolean array indexing assignment cannot assign 3 input values to the 1 output values where the mask is true'",failed -5672,tests.integ.modin.frame.test_iloc,test_df_iloc_get_key_bool[row-series-key0],pandas.errors.IndexingError: Unalignable boolean Series provided as indexer (index of the boolean Series and of the indexed object do not match).,failed -5675,tests.integ.modin.binary.test_binary_op,test_binary_comparison_method_between_series_numeric[ge-rhs3-lhs3],TypeError: '>=' not supported between instances of 'NoneType' and 'NoneType',failed -5680,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[sum1-0-True],AttributeError: can't set attribute,failed -5681,tests.integ.modin.binary.test_binary_op,test_binary_comparison_method_between_series_numeric[lt-rhs0-lhs0],"AssertionError: Series are different - -Series values are different (5.55556 %) -[index]: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17] -[left]: [False, False, False, False, False, False, False, False, False, False, False, False, False, False, False, False, False, False] -[right]: [False, False, False, False, False, False, False, False, False, False, False, False, False, False, False, False, False, ]",failed -5683,tests.integ.modin.binary.test_binary_op,test_binary_arithmetic_ops_with_non_scalar_fill_value_negative[fill_value0-rfloordiv],"AssertionError: Regex pattern did not match. - Regex: 'Only scalars can be used as fill_value.' - Input: 'NumPy boolean array indexing assignment cannot assign 3 input values to the 1 output values where the mask is true'",failed -5686,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[sum1-0-False],AttributeError: can't set attribute,failed -5687,tests.integ.modin.binary.test_binary_op,test_binary_comparison_method_between_series_numeric[lt-rhs0-lhs1],"AssertionError: Series are different - -Series values are different (11.11111 %) -[index]: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17] -[left]: [False, False, False, False, True, False, False, True, True, True, False, False, False, True, False, False, False, False] -[right]: [False, False, False, False, True, False, , True, True, True, False, False, False, True, False, False, False, ]",failed -5688,tests.integ.modin.frame.test_loc,test_df_loc_self_df_set_aligned_row_key[df2],ValueError: cannot reindex on an axis with duplicate labels,failed -5694,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[sum1-1-True],AttributeError: can't set attribute,failed -5697,tests.integ.modin.frame.test_iloc,test_df_iloc_get_key_bool[row-series-key1],pandas.errors.IndexingError: Unalignable boolean Series provided as indexer (index of the boolean Series and of the indexed object do not match).,failed -5698,tests.integ.modin.binary.test_binary_op,test_binary_arithmetic_ops_with_non_scalar_fill_value_negative[fill_value0-mod],"AssertionError: Regex pattern did not match. - Regex: 'Only scalars can be used as fill_value.' - Input: 'NumPy boolean array indexing assignment cannot assign 3 input values to the 1 output values where the mask is true'",failed -5700,tests.integ.modin.binary.test_binary_op,test_binary_comparison_method_between_series_numeric[lt-rhs0-lhs2],TypeError: boolean value of NA is ambiguous,failed -5701,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[sum1-1-False],AttributeError: can't set attribute,failed -5707,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[sum1-True-True],AttributeError: can't set attribute,failed -5711,tests.integ.modin.frame.test_loc,test_df_loc_set_scalar_row_key_enlargement[data_index0-c-T-97],"KeyError: array(['T'], dtype=', False, False, False, True, True, True, False, True, True, True, ]",failed -5730,tests.integ.modin.frame.test_loc,test_df_loc_set_scalar_row_key_enlargement[data_index0-a-col_key5-95],SNOW-1057861: Investigate locset behavior with missing index value,xfailed -5733,tests.integ.modin.binary.test_binary_op,test_binary_comparison_method_between_series_numeric[lt-rhs1-lhs1],"AssertionError: Series are different - -Series values are different (5.55556 %) -[index]: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17] -[left]: [False, False, False, False, False, False, False, False, False, False, False, False, False, False, False, False, False, False] -[right]: [False, False, False, False, False, False, , False, False, False, False, False, False, False, False, False, False, False]",failed -5738,tests.integ.modin.crosstab.test_crosstab,test_normalize_and_values[sum1-all-False],AttributeError: can't set attribute,failed -5739,tests.integ.modin.binary.test_binary_op,test_binary_arithmetic_ops_with_non_scalar_fill_value_negative[fill_value0-pow],"AssertionError: Regex pattern did not match. - Regex: 'Only scalars can be used as fill_value.' - Input: 'NumPy boolean array indexing assignment cannot assign 3 input values to the 1 output values where the mask is true'",failed -5741,tests.integ.modin.frame.test_iloc,test_df_iloc_get_key_bool[row-series-key4],pandas.errors.IndexingError: Unalignable boolean Series provided as indexer (index of the boolean Series and of the indexed object do not match).,failed -5743,tests.integ.modin.frame.test_loc,test_df_loc_set_scalar_row_key_enlargement[data_index0-x-D-94],"KeyError: array(['x'], dtype=']",failed -5928,tests.integ.modin.crosstab.test_crosstab,test_values[median0-False],AttributeError: can't set attribute,failed -5931,tests.integ.modin.binary.test_binary_op,test_binary_comparison_method_between_series_numeric[le-rhs0-lhs1],"AssertionError: Series are different - -Series values are different (11.11111 %) -[index]: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17] -[left]: [False, False, False, False, True, False, False, True, True, True, False, False, False, True, False, False, False, False] -[right]: [False, False, False, False, True, False, , True, True, True, False, False, False, True, False, False, False, ]",failed -5934,tests.integ.modin.binary.test_binary_op,test_binary_arithmetic_ops_with_non_scalar_fill_value_negative[fill_value1-truediv],"AssertionError: Regex pattern did not match. - Regex: 'Only scalars can be used as fill_value.' - Input: 'NumPy boolean array indexing assignment cannot assign 0 input values to the 1 output values where the mask is true'",failed -5936,tests.integ.modin.crosstab.test_crosstab,test_values[median1-True],AttributeError: can't set attribute,failed -5937,tests.integ.modin.frame.test_loc,test_df_loc_set_scalar_row_key_enlargement[data_index1-x-D-94],"KeyError: array(['x'], dtype=', False, False, False, True, True, True, False, True, True, True, ]",failed -5965,tests.integ.modin.binary.test_binary_op,test_binary_arithmetic_ops_with_non_scalar_fill_value_negative[fill_value1-rfloordiv],"AssertionError: Regex pattern did not match. - Regex: 'Only scalars can be used as fill_value.' - Input: 'NumPy boolean array indexing assignment cannot assign 0 input values to the 1 output values where the mask is true'",failed -5966,tests.integ.modin.binary.test_binary_op,test_binary_comparison_method_between_series_numeric[le-rhs1-lhs1],"AssertionError: Series are different - -Series values are different (5.55556 %) -[index]: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17] -[left]: [True, True, True, True, True, True, False, True, True, True, True, True, True, True, True, True, True, True] -[right]: [True, True, True, True, True, True, , True, True, True, True, True, True, True, True, True, True, True]",failed -5969,tests.integ.modin.crosstab.test_crosstab,test_values[mean0-True],AttributeError: can't set attribute,failed -5973,tests.integ.modin.binary.test_binary_op,test_binary_comparison_method_between_series_numeric[le-rhs1-lhs2],TypeError: boolean value of NA is ambiguous,failed -5974,tests.integ.modin.crosstab.test_crosstab,test_values[mean0-False],AttributeError: can't set attribute,failed -5977,tests.integ.modin.frame.test_loc,test_df_loc_set_scalar_row_key_enlargement[data_index1-u-col_key12-90],SNOW-1321196: pandas 2.2.1 migration test failure,xfailed -5979,tests.integ.modin.crosstab.test_crosstab,test_values[mean1-True],AttributeError: can't set attribute,failed -5981,tests.integ.modin.binary.test_binary_op,test_binary_comparison_method_between_series_numeric[le-rhs1-lhs3],TypeError: '<=' not supported between instances of 'NoneType' and 'float',failed -5983,tests.integ.modin.binary.test_binary_op,test_binary_arithmetic_ops_with_non_scalar_fill_value_negative[fill_value1-mod],"AssertionError: Regex pattern did not match. - Regex: 'Only scalars can be used as fill_value.' - Input: 'NumPy boolean array indexing assignment cannot assign 0 input values to the 1 output values where the mask is true'",failed -5984,tests.integ.modin.crosstab.test_crosstab,test_values[mean1-False],AttributeError: can't set attribute,failed -5986,tests.integ.modin.frame.test_loc,test_df_loc_set_scalar_row_key_enlargement[data_index1-v-col_key13-95],SNOW-1321196: pandas 2.2.1 migration test failure,xfailed -5990,tests.integ.modin.binary.test_binary_op,test_binary_comparison_method_between_series_numeric[le-rhs2-lhs0],TypeError: boolean value of NA is ambiguous,failed -5991,tests.integ.modin.crosstab.test_crosstab,test_values[min0-True],AttributeError: can't set attribute,failed -5994,tests.integ.modin.binary.test_binary_op,test_binary_arithmetic_ops_with_non_scalar_fill_value_negative[fill_value1-rmod],"AssertionError: Regex pattern did not match. - Regex: 'Only scalars can be used as fill_value.' - Input: 'NumPy boolean array indexing assignment cannot assign 0 input values to the 1 output values where the mask is true'",failed -5999,tests.integ.modin.binary.test_binary_op,test_binary_arithmetic_ops_with_non_scalar_fill_value_negative[fill_value1-pow],"AssertionError: Regex pattern did not match. - Regex: 'Only scalars can be used as fill_value.' - Input: 'NumPy boolean array indexing assignment cannot assign 0 input values to the 1 output values where the mask is true'",failed -6000,tests.integ.modin.crosstab.test_crosstab,test_values[min0-False],AttributeError: can't set attribute,failed -6001,tests.integ.modin.binary.test_binary_op,test_binary_comparison_method_between_series_numeric[le-rhs2-lhs1],TypeError: boolean value of NA is ambiguous,failed -6002,tests.integ.modin.frame.test_loc,test_df_loc_set_scalar_row_key_enlargement[data_index1-y-col_key16-item_values16],ValueError: cannot reindex on an axis with duplicate labels,failed -6005,tests.integ.modin.crosstab.test_crosstab,test_values[min1-True],AttributeError: can't set attribute,failed -6007,tests.integ.modin.binary.test_binary_op,test_binary_comparison_method_between_series_numeric[le-rhs2-lhs2],TypeError: boolean value of NA is ambiguous,failed -6009,tests.integ.modin.crosstab.test_crosstab,test_values[min1-False],AttributeError: can't set attribute,failed -6010,tests.integ.modin.frame.test_loc,test_df_loc_set_scalar_row_key_enlargement[data_index1-y-col_key17-item_values17],ValueError: cannot reindex on an axis with duplicate labels,failed -6037,tests.integ.modin.crosstab.test_crosstab,test_values[amin-True],AttributeError: can't set attribute,failed -6038,tests.integ.modin.binary.test_binary_op,test_binary_comparison_method_between_series_numeric[le-rhs2-lhs3],TypeError: boolean value of NA is ambiguous,failed -6039,tests.integ.modin.binary.test_binary_op,test_binary_arithmetic_ops_with_non_scalar_fill_value_negative[fill_value1-rpow],"AssertionError: Regex pattern did not match. - Regex: 'Only scalars can be used as fill_value.' - Input: 'NumPy boolean array indexing assignment cannot assign 0 input values to the 1 output values where the mask is true'",failed -6040,tests.integ.modin.frame.test_loc,test_df_loc_set_scalar_row_key_enlargement[data_index1-u-col_key18-item_values18],SNOW-1321196: pandas 2.2.1 migration test failure,xfailed -6042,tests.integ.modin.binary.test_binary_op,test_binary_arithmetic_ops_with_single_element_list_like_fill_value_negative[add],Failed: DID NOT RAISE ,failed -6044,tests.integ.modin.crosstab.test_crosstab,test_values[amin-False],AttributeError: can't set attribute,failed -6045,tests.integ.modin.frame.test_loc,test_df_loc_set_scalar_row_key_enlargement_deviates_from_native_pandas[data_index0-a-col_key0-95],"KeyError: array(['T', 'T'], dtype=object)",failed -6046,tests.integ.modin.binary.test_binary_op,test_binary_arithmetic_ops_with_single_element_list_like_fill_value_negative[radd],Failed: DID NOT RAISE ,failed -6047,tests.integ.modin.binary.test_binary_op,test_binary_comparison_method_between_series_numeric[le-rhs3-lhs0],TypeError: '<=' not supported between instances of 'float' and 'NoneType',failed -6050,tests.integ.modin.crosstab.test_crosstab,test_values[max0-True],AttributeError: can't set attribute,failed -6052,tests.integ.modin.binary.test_binary_op,test_binary_arithmetic_ops_with_single_element_list_like_fill_value_negative[sub],Failed: DID NOT RAISE ,failed -6053,tests.integ.modin.binary.test_binary_op,test_binary_arithmetic_ops_with_single_element_list_like_fill_value_negative[rsub],Failed: DID NOT RAISE ,failed -6055,tests.integ.modin.crosstab.test_crosstab,test_values[max0-False],AttributeError: can't set attribute,failed -6057,tests.integ.modin.binary.test_binary_op,test_binary_arithmetic_ops_with_single_element_list_like_fill_value_negative[mul],Failed: DID NOT RAISE ,failed -6058,tests.integ.modin.frame.test_loc,test_df_loc_set_scalar_row_key_enlargement_deviates_from_native_pandas[data_index0-w-col_key1-91],"KeyError: array(['V', 'T'], dtype=object)",failed -6060,tests.integ.modin.binary.test_binary_op,test_binary_arithmetic_ops_with_single_element_list_like_fill_value_negative[rmul],Failed: DID NOT RAISE ,failed -6062,tests.integ.modin.binary.test_binary_op,test_binary_arithmetic_ops_with_single_element_list_like_fill_value_negative[truediv],Failed: DID NOT RAISE ,failed -6063,tests.integ.modin.frame.test_loc,test_df_loc_set_scalar_row_key_enlargement_deviates_from_native_pandas[data_index0-u-col_key2-90],"KeyError: array(['T'], dtype=object)",failed -6064,tests.integ.modin.binary.test_binary_op,test_binary_comparison_method_between_series_numeric[le-rhs3-lhs1],TypeError: '<=' not supported between instances of 'float' and 'NoneType',failed -6068,tests.integ.modin.binary.test_binary_op,test_binary_arithmetic_ops_with_single_element_list_like_fill_value_negative[rtruediv],Failed: DID NOT RAISE ,failed -6069,tests.integ.modin.frame.test_loc,test_df_loc_set_scalar_row_key_enlargement_deviates_from_native_pandas[data_index0-v-col_key3-95],"KeyError: array(['T', 'T'], dtype=object)",failed -6070,tests.integ.modin.crosstab.test_crosstab,test_values[max1-True],AttributeError: can't set attribute,failed -6071,tests.integ.modin.binary.test_binary_op,test_binary_arithmetic_ops_with_single_element_list_like_fill_value_negative[floordiv],Failed: DID NOT RAISE ,failed -6074,tests.integ.modin.binary.test_binary_op,test_binary_comparison_method_between_series_numeric[le-rhs3-lhs2],TypeError: boolean value of NA is ambiguous,failed -6075,tests.integ.modin.binary.test_binary_op,test_binary_arithmetic_ops_with_single_element_list_like_fill_value_negative[rfloordiv],Failed: DID NOT RAISE ,failed -6076,tests.integ.modin.frame.test_loc,test_df_loc_set_scalar_row_key_enlargement_deviates_from_native_pandas[data_index0-u-col_key4-item_values4],"KeyError: array(['X', 'T'], dtype=object)",failed -6077,tests.integ.modin.crosstab.test_crosstab,test_values[max1-False],AttributeError: can't set attribute,failed -6079,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[True-0--8],IndexError: index -8 is out of bounds for axis 0 with size 7,failed -6080,tests.integ.modin.binary.test_binary_op,test_binary_arithmetic_ops_with_single_element_list_like_fill_value_negative[mod],Failed: DID NOT RAISE ,failed -6081,tests.integ.modin.frame.test_loc,test_df_loc_set_scalar_row_key_enlargement_deviates_from_native_pandas[data_index1-a-col_key0-95],"KeyError: array(['T', 'T'], dtype=object)",failed -6082,tests.integ.modin.binary.test_binary_op,test_binary_arithmetic_ops_with_single_element_list_like_fill_value_negative[rmod],Failed: DID NOT RAISE ,failed -6083,tests.integ.modin.binary.test_binary_op,test_binary_comparison_method_between_series_numeric[le-rhs3-lhs3],TypeError: '<=' not supported between instances of 'NoneType' and 'NoneType',failed -6084,tests.integ.modin.crosstab.test_crosstab,test_values[amax-True],AttributeError: can't set attribute,failed -6086,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[True-0-7],IndexError: positional indexers are out-of-bounds,failed -6087,tests.integ.modin.binary.test_binary_op,test_binary_arithmetic_ops_with_single_element_list_like_fill_value_negative[pow],Failed: DID NOT RAISE ,failed -6088,tests.integ.modin.binary.test_binary_op,test_binary_comparison_method_between_series_different_types[eq],Failed: DID NOT RAISE ,failed -6089,tests.integ.modin.crosstab.test_crosstab,test_values[amax-False],AttributeError: can't set attribute,failed -6090,tests.integ.modin.binary.test_binary_op,test_binary_arithmetic_ops_with_single_element_list_like_fill_value_negative[rpow],Failed: DID NOT RAISE ,failed -6091,tests.integ.modin.binary.test_binary_op,test_binary_comparison_method_between_series_different_types[ne],Failed: DID NOT RAISE ,failed -6095,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[True-0-52879115],IndexError: positional indexers are out-of-bounds,failed -6097,tests.integ.modin.crosstab.test_crosstab,test_values[sum0-True],AttributeError: can't set attribute,failed -6100,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[True-0--9028751],IndexError: index -9028751 is out of bounds for axis 0 with size 7,failed -6101,tests.integ.modin.crosstab.test_crosstab,test_values[sum0-False],AttributeError: can't set attribute,failed -6104,tests.integ.modin.frame.test_loc,test_df_loc_set_scalar_row_key_enlargement_deviates_from_native_pandas[data_index1-w-col_key1-91],ValueError: cannot reindex on an axis with duplicate labels,failed -6108,tests.integ.modin.crosstab.test_crosstab,test_values[sum1-True],AttributeError: can't set attribute,failed -6112,tests.integ.modin.binary.test_binary_op,test_binary_comparison_method_between_series_different_types[gt],TypeError: '>' not supported between instances of 'str' and 'int',failed -6114,tests.integ.modin.frame.test_loc,test_df_loc_set_scalar_row_key_enlargement_deviates_from_native_pandas[data_index1-u-col_key2-90],ValueError: cannot reindex on an axis with duplicate labels,failed -6116,tests.integ.modin.frame.test_iloc,test_df_iloc_get_key_bool[row-index-key5],IndexError: positional indexers are out-of-bounds,failed -6120,tests.integ.modin.frame.test_iloc,test_df_iloc_get_key_bool[row-ndarray-key0],"ValueError: -Location based indexing can only have [integer, integer slice (START point is -INCLUDED, END point is EXCLUDED), listlike of integers, boolean array] types.",failed -6122,tests.integ.modin.binary.test_binary_op,test_binary_comparison_method_between_series_different_types[ge],TypeError: '>=' not supported between instances of 'str' and 'int',failed -6124,tests.integ.modin.crosstab.test_crosstab,test_values[sum1-False],AttributeError: can't set attribute,failed -6125,tests.integ.modin.frame.test_loc,test_df_loc_set_scalar_row_key_enlargement_deviates_from_native_pandas[data_index1-v-col_key3-95],ValueError: cannot reindex on an axis with duplicate labels,failed -6132,tests.integ.modin.crosstab.test_crosstab,test_values[sum2-True],AttributeError: can't set attribute,failed -6133,tests.integ.modin.binary.test_binary_op,test_binary_comparison_method_between_series_different_types[lt],TypeError: '<' not supported between instances of 'str' and 'int',failed -6139,tests.integ.modin.crosstab.test_crosstab,test_values[sum2-False],AttributeError: can't set attribute,failed -6143,tests.integ.modin.binary.test_binary_op,test_binary_comparison_method_between_series_different_types[le],TypeError: '<=' not supported between instances of 'str' and 'int',failed -6145,tests.integ.modin.crosstab.test_crosstab,test_values_series_like[median0-True],"AssertionError: DataFrame.index are different +5340,tests.integ.modin.crosstab.test_crosstab,test_values_series_like[median0-False],"AssertionError: DataFrame.index are different Attribute ""names"" are different [left]: ['row_0'] [right]: ['species']",failed -6148,tests.integ.modin.binary.test_binary_op,test_binary_comparison_method_between_series_variant[eq-rhs0-lhs0],assert True is None,failed -6149,tests.integ.modin.crosstab.test_crosstab,test_values_series_like[median0-False],"AssertionError: DataFrame.index are different +5343,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[True-6--6],IndexError: positional indexers are out-of-bounds,failed +5344,tests.integ.modin.binary.test_binary_op,test_binary_comparison_method_between_series_numeric[le-rhs3-lhs2],TypeError: '<=' not supported between instances of 'NoneType' and 'float',failed +5345,tests.integ.modin.frame.test_loc,test_df_loc_set_general_col_key_type_with_duplicate_columns[index-col_key8],"AssertionError: DataFrame.iloc[:, 0] (column name=""A"") are different -Attribute ""names"" are different -[left]: ['row_0'] -[right]: ['species']",failed -6150,tests.integ.modin.frame.test_loc,test_df_loc_set_scalar_row_key_enlargement_deviates_from_native_pandas[data_index1-u-col_key4-item_values4],ValueError: cannot reindex on an axis with duplicate labels,failed -6155,tests.integ.modin.crosstab.test_crosstab,test_values_series_like[median1-True],"AssertionError: DataFrame.index are different +DataFrame.iloc[:, 0] (column name=""A"") values are different (100.0 %) +[index]: [0, 1, 2] +[left]: [nan, 7.0, 4.0] +[right]: [1.0, 4.0, 7.0] +At positional index 0, first diff: nan != 1.0",failed +5346,tests.integ.modin.crosstab.test_crosstab,test_values_series_like[median1-True],"AssertionError: DataFrame.index are different Attribute ""names"" are different [left]: ['row_0'] [right]: ['species']",failed -6156,tests.integ.modin.binary.test_binary_op,test_binary_comparison_method_between_series_variant[ne-rhs0-lhs0],assert False is None,failed -6157,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[True--3--8],IndexError: index -8 is out of bounds for axis 0 with size 7,failed -6158,tests.integ.modin.frame.test_loc,test_df_loc_set_scalar_with_item_negative[None-item_value0-True-True],Failed: DID NOT RAISE ,failed -6160,tests.integ.modin.frame.test_iloc,test_df_iloc_get_key_bool[row-ndarray-key5],IndexError: positional indexers are out-of-bounds,failed -6163,tests.integ.modin.crosstab.test_crosstab,test_values_series_like[median1-False],"AssertionError: DataFrame.index are different +5349,tests.integ.modin.crosstab.test_crosstab,test_values_series_like[median1-False],"AssertionError: DataFrame.index are different Attribute ""names"" are different [left]: ['row_0'] [right]: ['species']",failed -6164,tests.integ.modin.frame.test_loc,test_df_loc_set_scalar_with_item_negative[a-item_value1-True-True],Failed: DID NOT RAISE ,failed -6168,tests.integ.modin.crosstab.test_crosstab,test_values_series_like[count-True],"AssertionError: DataFrame.index are different +5351,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[True-6--8],IndexError: index -8 is out of bounds for axis 0 with size 7,failed +5353,tests.integ.modin.crosstab.test_crosstab,test_values_series_like[count-True],"AssertionError: DataFrame.index are different Attribute ""names"" are different [left]: ['row_0'] [right]: ['species']",failed -6171,tests.integ.modin.frame.test_loc,test_df_loc_set_scalar_with_item_negative[a-item_value3-True-True],Failed: DID NOT RAISE ,failed -6172,tests.integ.modin.crosstab.test_crosstab,test_values_series_like[count-False],"AssertionError: DataFrame.index are different +5356,tests.integ.modin.crosstab.test_crosstab,test_values_series_like[count-False],"AssertionError: DataFrame.index are different Attribute ""names"" are different [left]: ['row_0'] [right]: ['species']",failed -6177,tests.integ.modin.crosstab.test_crosstab,test_values_series_like[mean0-True],"AssertionError: DataFrame.index are different +5358,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[True-6-7],IndexError: positional indexers are out-of-bounds,failed +5359,tests.integ.modin.crosstab.test_crosstab,test_values_series_like[mean0-True],"AssertionError: DataFrame.index are different Attribute ""names"" are different [left]: ['row_0'] [right]: ['species']",failed -6179,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[True--3-7],IndexError: positional indexers are out-of-bounds,failed -6183,tests.integ.modin.binary.test_binary_op,test_binary_comparison_method_between_series_variant[gt-rhs0-lhs0],TypeError: '>' not supported between instances of 'NoneType' and 'NoneType',failed -6184,tests.integ.modin.crosstab.test_crosstab,test_values_series_like[mean0-False],"AssertionError: DataFrame.index are different +5361,tests.integ.modin.frame.test_loc,test_df_loc_set_general_col_key_type_with_duplicate_columns[index-col_key10],AssertionError: exception type does not match with expected type ,failed +5362,tests.integ.modin.crosstab.test_crosstab,test_values_series_like[mean0-False],"AssertionError: DataFrame.index are different Attribute ""names"" are different [left]: ['row_0'] [right]: ['species']",failed -6188,tests.integ.modin.crosstab.test_crosstab,test_values_series_like[mean1-True],"AssertionError: DataFrame.index are different +5363,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[True-6-52879115],IndexError: positional indexers are out-of-bounds,failed +5364,tests.integ.modin.crosstab.test_crosstab,test_values_series_like[mean1-True],"AssertionError: DataFrame.index are different Attribute ""names"" are different [left]: ['row_0'] [right]: ['species']",failed -6190,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[True--3-52879115],IndexError: positional indexers are out-of-bounds,failed -6191,tests.integ.modin.frame.test_loc,test_empty_df_loc_set_scalar,ValueError: cannot set a frame with no defined columns,failed -6192,tests.integ.modin.crosstab.test_crosstab,test_values_series_like[mean1-False],"AssertionError: DataFrame.index are different +5367,tests.integ.modin.binary.test_binary_op,test_binary_comparison_method_between_series_numeric[le-rhs3-lhs3],TypeError: '<=' not supported between instances of 'NoneType' and 'NoneType',failed +5368,tests.integ.modin.crosstab.test_crosstab,test_values_series_like[mean1-False],"AssertionError: DataFrame.index are different Attribute ""names"" are different [left]: ['row_0'] [right]: ['species']",failed -6193,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_1[list0-add],"ValueError: Unable to coerce to Series, length must be 3: given 2",failed -6195,tests.integ.modin.crosstab.test_crosstab,test_values_series_like[min0-True],"AssertionError: DataFrame.index are different +5370,tests.integ.modin.binary.test_binary_op,test_binary_comparison_method_between_series_different_types[eq],Failed: DID NOT RAISE ,failed +5371,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[True-6--9028751],IndexError: index -9028751 is out of bounds for axis 0 with size 7,failed +5373,tests.integ.modin.crosstab.test_crosstab,test_values_series_like[min0-True],"AssertionError: DataFrame.index are different Attribute ""names"" are different [left]: ['row_0'] [right]: ['species']",failed -6196,tests.integ.modin.binary.test_binary_op,test_binary_comparison_method_between_series_variant[ge-rhs0-lhs0],TypeError: '>=' not supported between instances of 'NoneType' and 'NoneType',failed -6197,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[True--3--9028751],IndexError: index -9028751 is out of bounds for axis 0 with size 7,failed -6199,tests.integ.modin.frame.test_loc,test_empty_df_loc_set_series_and_list[native_item0],"AssertionError: DataFrame.index are different - -DataFrame.index values are different (100.0 %) -[left]: RangeIndex(start=0, stop=3, step=1) -[right]: Index([None, None, None], dtype='object') -At positional index 0, first diff: 0 != None",failed -6200,tests.integ.modin.crosstab.test_crosstab,test_values_series_like[min0-False],"AssertionError: DataFrame.index are different +5375,tests.integ.modin.binary.test_binary_op,test_binary_comparison_method_between_series_different_types[ne],Failed: DID NOT RAISE ,failed +5376,tests.integ.modin.crosstab.test_crosstab,test_values_series_like[min0-False],"AssertionError: DataFrame.index are different Attribute ""names"" are different [left]: ['row_0'] [right]: ['species']",failed -6201,tests.integ.modin.crosstab.test_crosstab,test_values_series_like[min1-True],"AssertionError: DataFrame.index are different +5378,tests.integ.modin.frame.test_iloc,test_df_iloc_get_key_bool[row-list-key5],IndexError: positional indexers are out-of-bounds,failed +5380,tests.integ.modin.crosstab.test_crosstab,test_values_series_like[min1-True],"AssertionError: DataFrame.index are different Attribute ""names"" are different [left]: ['row_0'] [right]: ['species']",failed -6203,tests.integ.modin.frame.test_loc,test_empty_df_loc_set_series_and_list[native_item1],"AssertionError: DataFrame.index are different - -DataFrame.index values are different (100.0 %) -[left]: RangeIndex(start=0, stop=3, step=1) -[right]: Index([None, None, None], dtype='object') -At positional index 0, first diff: 0 != None",failed -6205,tests.integ.modin.binary.test_binary_op,test_binary_comparison_method_between_series_variant[lt-rhs0-lhs0],TypeError: '<' not supported between instances of 'NoneType' and 'NoneType',failed -6206,tests.integ.modin.crosstab.test_crosstab,test_values_series_like[min1-False],"AssertionError: DataFrame.index are different +5382,tests.integ.modin.crosstab.test_crosstab,test_values_series_like[min1-False],"AssertionError: DataFrame.index are different Attribute ""names"" are different [left]: ['row_0'] [right]: ['species']",failed -6210,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_1[list0-radd],"ValueError: Unable to coerce to Series, length must be 3: given 2",failed -6211,tests.integ.modin.crosstab.test_crosstab,test_values_series_like[amin-True],"AssertionError: DataFrame.index are different +5383,tests.integ.modin.binary.test_binary_op,test_binary_comparison_method_between_series_different_types[gt],TypeError: '>' not supported between instances of 'str' and 'int',failed +5385,tests.integ.modin.crosstab.test_crosstab,test_values_series_like[min2-True],"AssertionError: DataFrame.index are different Attribute ""names"" are different [left]: ['row_0'] [right]: ['species']",failed -6214,tests.integ.modin.crosstab.test_crosstab,test_values_series_like[amin-False],"AssertionError: DataFrame.index are different +5387,tests.integ.modin.frame.test_iloc,test_df_iloc_get_key_bool[row-series-key0],pandas.errors.IndexingError: Unalignable boolean Series provided as indexer (index of the boolean Series and of the indexed object do not match).,failed +5389,tests.integ.modin.crosstab.test_crosstab,test_values_series_like[min2-False],"AssertionError: DataFrame.index are different Attribute ""names"" are different [left]: ['row_0'] [right]: ['species']",failed -6215,tests.integ.modin.binary.test_binary_op,test_binary_comparison_method_between_series_variant[le-rhs0-lhs0],TypeError: '<=' not supported between instances of 'NoneType' and 'NoneType',failed -6216,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_1[list0-sub],"ValueError: Unable to coerce to Series, length must be 3: given 2",failed -6219,tests.integ.modin.crosstab.test_crosstab,test_values_series_like[max0-True],"AssertionError: DataFrame.index are different +5390,tests.integ.modin.binary.test_binary_op,test_binary_comparison_method_between_series_different_types[ge],TypeError: '>=' not supported between instances of 'str' and 'int',failed +5391,tests.integ.modin.crosstab.test_crosstab,test_values_series_like[max0-True],"AssertionError: DataFrame.index are different Attribute ""names"" are different [left]: ['row_0'] [right]: ['species']",failed -6222,tests.integ.modin.frame.test_loc,test_empty_df_loc_set_series_and_list[native_item3],"AssertionError: DataFrame.index are different - -DataFrame.index values are different (100.0 %) -[left]: RangeIndex(start=0, stop=3, step=1) -[right]: Index(['a', 'b', 'c'], dtype='object') -At positional index 0, first diff: 0 != a",failed -6224,tests.integ.modin.crosstab.test_crosstab,test_values_series_like[max0-False],"AssertionError: DataFrame.index are different +5394,tests.integ.modin.crosstab.test_crosstab,test_values_series_like[max0-False],"AssertionError: DataFrame.index are different Attribute ""names"" are different [left]: ['row_0'] [right]: ['species']",failed -6226,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_1[list0-rsub],"ValueError: Unable to coerce to Series, length must be 3: given 2",failed -6229,tests.integ.modin.crosstab.test_crosstab,test_values_series_like[max1-True],"AssertionError: DataFrame.index are different +5396,tests.integ.modin.crosstab.test_crosstab,test_values_series_like[max1-True],"AssertionError: DataFrame.index are different Attribute ""names"" are different [left]: ['row_0'] [right]: ['species']",failed -6232,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_1[list0-mul],"ValueError: Unable to coerce to Series, length must be 3: given 2",failed -6233,tests.integ.modin.crosstab.test_crosstab,test_values_series_like[max1-False],"AssertionError: DataFrame.index are different +5398,tests.integ.modin.binary.test_binary_op,test_binary_comparison_method_between_series_different_types[lt],TypeError: '<' not supported between instances of 'str' and 'int',failed +5401,tests.integ.modin.binary.test_binary_op,test_binary_comparison_method_between_series_different_types[le],TypeError: '<=' not supported between instances of 'str' and 'int',failed +5403,tests.integ.modin.frame.test_iloc,test_df_iloc_get_key_bool[row-series-key1],pandas.errors.IndexingError: Unalignable boolean Series provided as indexer (index of the boolean Series and of the indexed object do not match).,failed +5404,tests.integ.modin.crosstab.test_crosstab,test_values_series_like[max1-False],"AssertionError: DataFrame.index are different Attribute ""names"" are different [left]: ['row_0'] [right]: ['species']",failed -6235,tests.integ.modin.crosstab.test_crosstab,test_values_series_like[amax-True],"AssertionError: DataFrame.index are different +5405,tests.integ.modin.frame.test_loc,test_df_loc_set_general_key_with_duplicate_rows[index-item1],ValueError: cannot reindex on an axis with duplicate labels,failed +5406,tests.integ.modin.crosstab.test_crosstab,test_values_series_like[max2-True],"AssertionError: DataFrame.index are different Attribute ""names"" are different [left]: ['row_0'] [right]: ['species']",failed -6236,tests.integ.modin.frame.test_loc,test_empty_df_loc_set_series_and_list[native_item5],"AssertionError: DataFrame.index are different - -DataFrame.index values are different (100.0 %) -[left]: RangeIndex(start=0, stop=4, step=1) -[right]: Index(['a', None, None, 'd'], dtype='object') -At positional index 0, first diff: 0 != a",failed -6238,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_1[list0-rmul],"ValueError: Unable to coerce to Series, length must be 3: given 2",failed -6240,tests.integ.modin.crosstab.test_crosstab,test_values_series_like[amax-False],"AssertionError: DataFrame.index are different +5408,tests.integ.modin.crosstab.test_crosstab,test_values_series_like[max2-False],"AssertionError: DataFrame.index are different Attribute ""names"" are different [left]: ['row_0'] [right]: ['species']",failed -6244,tests.integ.modin.crosstab.test_crosstab,test_values_series_like[sum0-True],"AssertionError: DataFrame.index are different +5410,tests.integ.modin.frame.test_iloc,test_df_iloc_get_key_bool[row-series-key2],pandas.errors.IndexingError: Unalignable boolean Series provided as indexer (index of the boolean Series and of the indexed object do not match).,failed +5411,tests.integ.modin.crosstab.test_crosstab,test_values_series_like[sum0-True],"AssertionError: DataFrame.index are different Attribute ""names"" are different [left]: ['row_0'] [right]: ['species']",failed -6245,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_1[list0-truediv],"ValueError: Unable to coerce to Series, length must be 3: given 2",failed -6247,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[True-4--8],IndexError: index -8 is out of bounds for axis 0 with size 7,failed -6248,tests.integ.modin.crosstab.test_crosstab,test_values_series_like[sum0-False],"AssertionError: DataFrame.index are different +5413,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[True--6--8],IndexError: index -8 is out of bounds for axis 0 with size 7,failed +5414,tests.integ.modin.binary.test_binary_op,test_binary_comparison_method_between_series_variant[eq-rhs0-lhs0],assert np.True_ is None,failed +5415,tests.integ.modin.crosstab.test_crosstab,test_values_series_like[sum0-False],"AssertionError: DataFrame.index are different Attribute ""names"" are different [left]: ['row_0'] [right]: ['species']",failed -6251,tests.integ.modin.crosstab.test_crosstab,test_values_series_like[sum1-True],"AssertionError: DataFrame.index are different +5417,tests.integ.modin.crosstab.test_crosstab,test_values_series_like[sum1-True],"AssertionError: DataFrame.index are different Attribute ""names"" are different [left]: ['row_0'] [right]: ['species']",failed -6253,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_1[list0-rtruediv],"ValueError: Unable to coerce to Series, length must be 3: given 2",failed -6254,tests.integ.modin.binary.test_binary_op,test_binary_method_datetime_with_dateoffset_replacement[dateoffset0],pandas._libs.tslibs.np_datetime.OutOfBoundsDatetime: Cannot cast 0001-01-02 03:04:05 to unit='ns' without overflow.,failed -6255,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[True-4-7],IndexError: positional indexers are out-of-bounds,failed -6256,tests.integ.modin.binary.test_binary_op,test_binary_method_datetime_with_dateoffset_replacement[dateoffset1],Failed: DID NOT RAISE ,failed -6257,tests.integ.modin.crosstab.test_crosstab,test_values_series_like[sum1-False],"AssertionError: DataFrame.index are different +5418,tests.integ.modin.binary.test_binary_op,test_binary_comparison_method_between_series_variant[ne-rhs0-lhs0],assert np.False_ is None,failed +5419,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[True--6-7],IndexError: positional indexers are out-of-bounds,failed +5420,tests.integ.modin.crosstab.test_crosstab,test_values_series_like[sum1-False],"AssertionError: DataFrame.index are different Attribute ""names"" are different [left]: ['row_0'] [right]: ['species']",failed -6260,tests.integ.modin.binary.test_binary_op,test_binary_method_datetime_with_dateoffset_replacement[dateoffset2],Failed: DID NOT RAISE ,failed -6262,tests.integ.modin.crosstab.test_crosstab,test_values_series_like[sum2-True],"AssertionError: DataFrame.index are different +5421,tests.integ.modin.frame.test_iloc,test_df_iloc_get_key_bool[row-series-key3],pandas.errors.IndexingError: Unalignable boolean Series provided as indexer (index of the boolean Series and of the indexed object do not match).,failed +5424,tests.integ.modin.crosstab.test_crosstab,test_values_series_like[sum2-True],"AssertionError: DataFrame.index are different Attribute ""names"" are different [left]: ['row_0'] [right]: ['species']",failed -6263,tests.integ.modin.binary.test_binary_op,test_binary_method_datetime_with_dateoffset_replacement[dateoffset3],Failed: DID NOT RAISE ,failed -6265,tests.integ.modin.binary.test_binary_op,test_binary_method_datetime_with_dateoffset_replacement[dateoffset4],Failed: DID NOT RAISE ,failed -6266,tests.integ.modin.crosstab.test_crosstab,test_values_series_like[sum2-False],"AssertionError: DataFrame.index are different +5425,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[True--6-52879115],IndexError: positional indexers are out-of-bounds,failed +5426,tests.integ.modin.binary.test_binary_op,test_binary_comparison_method_between_series_variant[gt-rhs0-lhs0],TypeError: '>' not supported between instances of 'NoneType' and 'NoneType',failed +5427,tests.integ.modin.crosstab.test_crosstab,test_values_series_like[sum2-False],"AssertionError: DataFrame.index are different Attribute ""names"" are different [left]: ['row_0'] [right]: ['species']",failed -6267,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[True-4-52879115],IndexError: positional indexers are out-of-bounds,failed -6270,tests.integ.modin.binary.test_binary_op,test_binary_method_datetime_with_dateoffset_replacement[dateoffset5],Failed: DID NOT RAISE ,failed -6271,tests.integ.modin.binary.test_binary_op,test_binary_method_datetime_with_dateoffset_replacement[dateoffset6],Failed: DID NOT RAISE ,failed -6273,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[True-4--9028751],IndexError: index -9028751 is out of bounds for axis 0 with size 7,failed -6274,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_1[list0-floordiv],"ValueError: Unable to coerce to Series, length must be 3: given 2",failed -6276,tests.integ.modin.binary.test_binary_op,test_binary_method_datetime_with_dateoffset_replacement[dateoffset7],Failed: DID NOT RAISE ,failed -6278,tests.integ.modin.binary.test_binary_op,test_binary_method_datetime_with_dateoffset_replacement[dateoffset8],Failed: DID NOT RAISE ,failed -6280,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_1[list0-rfloordiv],"ValueError: Unable to coerce to Series, length must be 3: given 2",failed -6281,tests.integ.modin.binary.test_binary_op,test_binary_method_datetime_with_dateoffset_replacement[dateoffset9],Failed: DID NOT RAISE ,failed -6283,tests.integ.modin.crosstab.test_crosstab,test_aggfuncs_that_may_produce_nan[std0-True],AttributeError: can't set attribute,failed -6284,tests.integ.modin.binary.test_binary_op,test_binary_add_dataframe_and_series_axis0[df0-s0],"AssertionError: DataFrame are different +5429,tests.integ.modin.frame.test_iloc,test_df_iloc_get_key_bool[row-series-key4],pandas.errors.IndexingError: Unalignable boolean Series provided as indexer (index of the boolean Series and of the indexed object do not match).,failed +5430,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[True--6--9028751],IndexError: index -9028751 is out of bounds for axis 0 with size 7,failed +5432,tests.integ.modin.crosstab.test_crosstab,test_aggfuncs_that_may_produce_nan[std0-True],AttributeError: can't set attribute,failed +5434,tests.integ.modin.binary.test_binary_op,test_binary_comparison_method_between_series_variant[ge-rhs0-lhs0],TypeError: '>=' not supported between instances of 'NoneType' and 'NoneType',failed +5435,tests.integ.modin.crosstab.test_crosstab,test_aggfuncs_that_may_produce_nan[std0-False],AttributeError: can't set attribute,failed +5436,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[True--8-0],IndexError: index -8 is out of bounds for axis 0 with size 7,failed +5438,tests.integ.modin.crosstab.test_crosstab,test_aggfuncs_that_may_produce_nan[std1-True],AttributeError: can't set attribute,failed +5439,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[True--8--3],IndexError: index -8 is out of bounds for axis 0 with size 7,failed +5441,tests.integ.modin.binary.test_binary_op,test_binary_comparison_method_between_series_variant[lt-rhs0-lhs0],TypeError: '<' not supported between instances of 'NoneType' and 'NoneType',failed +5443,tests.integ.modin.crosstab.test_crosstab,test_aggfuncs_that_may_produce_nan[std1-False],AttributeError: can't set attribute,failed +5444,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[True--8-4],IndexError: index -8 is out of bounds for axis 0 with size 7,failed +5445,tests.integ.modin.crosstab.test_crosstab,test_aggfuncs_that_may_produce_nan[var0-True],AttributeError: can't set attribute,failed +5447,tests.integ.modin.frame.test_iloc,test_df_iloc_get_key_bool[row-series-key5],pandas.errors.IndexingError: Unalignable boolean Series provided as indexer (index of the boolean Series and of the indexed object do not match).,failed +5448,tests.integ.modin.binary.test_binary_op,test_binary_comparison_method_between_series_variant[le-rhs0-lhs0],TypeError: '<=' not supported between instances of 'NoneType' and 'NoneType',failed +5452,tests.integ.modin.crosstab.test_crosstab,test_aggfuncs_that_may_produce_nan[var0-False],AttributeError: can't set attribute,failed +5459,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[True--8--7],IndexError: index -8 is out of bounds for axis 0 with size 7,failed +5460,tests.integ.modin.crosstab.test_crosstab,test_aggfuncs_that_may_produce_nan[var1-True],AttributeError: can't set attribute,failed +5462,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[True--8-6],IndexError: index -8 is out of bounds for axis 0 with size 7,failed +5463,tests.integ.modin.crosstab.test_crosstab,test_aggfuncs_that_may_produce_nan[var1-False],AttributeError: can't set attribute,failed +5465,tests.integ.modin.frame.test_loc,test_df_loc_get_key_bool[index-key5],IndexError: positional indexers are out-of-bounds,failed +5466,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[True--8--6],IndexError: index -8 is out of bounds for axis 0 with size 7,failed +5467,tests.integ.modin.crosstab.test_crosstab,test_aggfuncs_that_may_produce_nan[skew-True],AttributeError: can't set attribute,failed +5469,tests.integ.modin.crosstab.test_crosstab,test_aggfuncs_that_may_produce_nan[skew-False],AttributeError: can't set attribute,failed +5470,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[True--8--8],IndexError: index -8 is out of bounds for axis 0 with size 7,failed +5472,tests.integ.modin.crosstab.test_crosstab,test_values_unsupported_aggfunc,AttributeError: can't set attribute,failed +5473,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[True--8-7],IndexError: index -8 is out of bounds for axis 0 with size 7,failed +5474,tests.integ.modin.crosstab.test_crosstab,test_values_series_like_unsupported_aggfunc,Failed: DID NOT RAISE ,failed +5478,tests.integ.modin.binary.test_binary_op,test_binary_method_datetime_with_dateoffset_replacement[dateoffset0],pandas._libs.tslibs.np_datetime.OutOfBoundsDatetime: Cannot cast 0001-01-02 03:04:05 to unit='ns' without overflow.,failed +5479,tests.integ.modin.binary.test_binary_op,test_binary_method_datetime_with_dateoffset_replacement[dateoffset1],Failed: DID NOT RAISE ,failed +5480,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[True--8-52879115],IndexError: index -8 is out of bounds for axis 0 with size 7,failed +5481,tests.integ.modin.binary.test_binary_op,test_binary_method_datetime_with_dateoffset_replacement[dateoffset2],Failed: DID NOT RAISE ,failed +5483,tests.integ.modin.binary.test_binary_op,test_binary_method_datetime_with_dateoffset_replacement[dateoffset3],Failed: DID NOT RAISE ,failed +5484,tests.integ.modin.binary.test_binary_op,test_binary_method_datetime_with_dateoffset_replacement[dateoffset4],Failed: DID NOT RAISE ,failed +5485,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[True--8--9028751],IndexError: index -9028751 is out of bounds for axis 0 with size 7,failed +5487,tests.integ.modin.binary.test_binary_op,test_binary_method_datetime_with_dateoffset_replacement[dateoffset5],Failed: DID NOT RAISE ,failed +5488,tests.integ.modin.binary.test_binary_op,test_binary_method_datetime_with_dateoffset_replacement[dateoffset6],Failed: DID NOT RAISE ,failed +5489,tests.integ.modin.binary.test_binary_op,test_binary_method_datetime_with_dateoffset_replacement[dateoffset7],Failed: DID NOT RAISE ,failed +5491,tests.integ.modin.binary.test_binary_op,test_binary_method_datetime_with_dateoffset_replacement[dateoffset8],Failed: DID NOT RAISE ,failed +5492,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[True-7-0],IndexError: positional indexers are out-of-bounds,failed +5493,tests.integ.modin.binary.test_binary_op,test_binary_method_datetime_with_dateoffset_replacement[dateoffset9],Failed: DID NOT RAISE ,failed +5495,tests.integ.modin.binary.test_binary_op,test_binary_add_dataframe_and_series_axis0[df0-s0],"AssertionError: DataFrame are different DataFrame shape mismatch [left]: (5, 3) [right]: (4, 5)",failed -6285,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_1[list0-mod],"ValueError: Unable to coerce to Series, length must be 3: given 2",failed -6287,tests.integ.modin.frame.test_loc,test_df_loc_set_key_slice[False-None-1-1],ValueError: Incompatible indexer with DataFrame,failed -6288,tests.integ.modin.crosstab.test_crosstab,test_aggfuncs_that_may_produce_nan[std0-False],AttributeError: can't set attribute,failed -6289,tests.integ.modin.binary.test_binary_op,test_binary_add_dataframe_and_series_axis0[df1-s1],"AssertionError: DataFrame are different +5497,tests.integ.modin.binary.test_binary_op,test_binary_add_dataframe_and_series_axis0[df1-s1],"AssertionError: DataFrame are different DataFrame shape mismatch [left]: (4, 3) [right]: (4, 6)",failed -6290,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[True--7-0],IndexError: index -7 is out of bounds for axis 0 with size 6,failed -6291,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_1[list0-rmod],"ValueError: Unable to coerce to Series, length must be 3: given 2",failed -6293,tests.integ.modin.crosstab.test_crosstab,test_aggfuncs_that_may_produce_nan[std1-True],AttributeError: can't set attribute,failed -6295,tests.integ.modin.binary.test_binary_op,test_binary_op_between_dataframe_and_series_axis0[df0-s0-add0],"AssertionError: DataFrame are different +5499,tests.integ.modin.binary.test_binary_op,test_binary_op_between_dataframe_and_series_axis0[df0-s0-add0],"AssertionError: DataFrame are different DataFrame shape mismatch [left]: (5, 3) [right]: (4, 5)",failed -6298,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[True--7--3],IndexError: index -7 is out of bounds for axis 0 with size 6,failed -6299,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_1[list0-pow],"ValueError: Unable to coerce to Series, length must be 3: given 2",failed -6300,tests.integ.modin.crosstab.test_crosstab,test_aggfuncs_that_may_produce_nan[std1-False],AttributeError: can't set attribute,failed -6301,tests.integ.modin.binary.test_binary_op,test_binary_op_between_dataframe_and_series_axis0[df0-s0-sub0],"AssertionError: DataFrame are different +5500,tests.integ.modin.binary.test_binary_op,test_binary_op_between_dataframe_and_series_axis0[df0-s0-sub0],"AssertionError: DataFrame are different DataFrame shape mismatch [left]: (5, 3) [right]: (4, 5)",failed -6304,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[True--7-4],IndexError: index -7 is out of bounds for axis 0 with size 6,failed -6305,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_1[list0-rpow],"ValueError: Unable to coerce to Series, length must be 3: given 2",failed -6307,tests.integ.modin.binary.test_binary_op,test_binary_op_between_dataframe_and_series_axis0[df0-s0-truediv],"AssertionError: DataFrame are different +5502,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[True-7--3],IndexError: positional indexers are out-of-bounds,failed +5503,tests.integ.modin.binary.test_binary_op,test_binary_op_between_dataframe_and_series_axis0[df0-s0-truediv],"AssertionError: DataFrame are different DataFrame shape mismatch [left]: (5, 3) [right]: (4, 5)",failed -6308,tests.integ.modin.crosstab.test_crosstab,test_aggfuncs_that_may_produce_nan[var0-True],AttributeError: can't set attribute,failed -6310,tests.integ.modin.binary.test_binary_op,test_binary_op_between_dataframe_and_series_axis0[df0-s0-rtruediv],"AssertionError: DataFrame are different +5505,tests.integ.modin.binary.test_binary_op,test_binary_op_between_dataframe_and_series_axis0[df0-s0-rtruediv],"AssertionError: DataFrame are different DataFrame shape mismatch [left]: (5, 3) [right]: (4, 5)",failed -6311,tests.integ.modin.crosstab.test_crosstab,test_aggfuncs_that_may_produce_nan[var0-False],AttributeError: can't set attribute,failed -6312,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[True--7--7],IndexError: index -7 is out of bounds for axis 0 with size 6,failed -6313,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_1[ndarray0-add],"ValueError: Unable to coerce to Series, length must be 3: given 2",failed -6315,tests.integ.modin.binary.test_binary_op,test_binary_op_between_dataframe_and_series_axis0[df0-s0-floordiv0],"AssertionError: DataFrame are different +5506,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[True-7-4],IndexError: positional indexers are out-of-bounds,failed +5509,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[True-7--7],IndexError: positional indexers are out-of-bounds,failed +5510,tests.integ.modin.binary.test_binary_op,test_binary_op_between_dataframe_and_series_axis0[df0-s0-floordiv0],"AssertionError: DataFrame are different DataFrame shape mismatch [left]: (5, 3) [right]: (4, 5)",failed -6316,tests.integ.modin.crosstab.test_crosstab,test_aggfuncs_that_may_produce_nan[var1-True],AttributeError: can't set attribute,failed -6318,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[True--7-6],IndexError: index -7 is out of bounds for axis 0 with size 6,failed -6319,tests.integ.modin.crosstab.test_crosstab,test_aggfuncs_that_may_produce_nan[var1-False],AttributeError: can't set attribute,failed -6320,tests.integ.modin.binary.test_binary_op,test_binary_op_between_dataframe_and_series_axis0[df0-s0-rfloordiv0],"AssertionError: DataFrame are different +5512,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[True-7-6],IndexError: positional indexers are out-of-bounds,failed +5513,tests.integ.modin.binary.test_binary_op,test_binary_op_between_dataframe_and_series_axis0[df0-s0-rfloordiv0],"AssertionError: DataFrame are different DataFrame shape mismatch [left]: (5, 3) [right]: (4, 5)",failed -6322,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[True--7--6],IndexError: index -7 is out of bounds for axis 0 with size 6,failed -6323,tests.integ.modin.binary.test_binary_op,test_binary_op_between_dataframe_and_series_axis0[df0-s0-floordiv1],"AssertionError: DataFrame are different +5515,tests.integ.modin.binary.test_binary_op,test_binary_op_between_dataframe_and_series_axis0[df0-s0-floordiv1],"AssertionError: DataFrame are different DataFrame shape mismatch [left]: (5, 3) [right]: (4, 5)",failed -6325,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_1[ndarray0-radd],"ValueError: Unable to coerce to Series, length must be 3: given 2",failed -6326,tests.integ.modin.binary.test_binary_op,test_binary_op_between_dataframe_and_series_axis0[df0-s0-rfloordiv1],"AssertionError: DataFrame are different +5516,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[True-7--6],IndexError: positional indexers are out-of-bounds,failed +5518,tests.integ.modin.binary.test_binary_op,test_binary_op_between_dataframe_and_series_axis0[df0-s0-rfloordiv1],"AssertionError: DataFrame are different DataFrame shape mismatch [left]: (5, 3) [right]: (4, 5)",failed -6327,tests.integ.modin.frame.test_loc,test_df_loc_set_key_slice[False-None-4-4],ValueError: Incompatible indexer with DataFrame,failed -6329,tests.integ.modin.binary.test_binary_op,test_binary_op_between_dataframe_and_series_axis0[df0-s0-pow],"AssertionError: DataFrame are different +5520,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[True-7--8],IndexError: index -8 is out of bounds for axis 0 with size 7,failed +5521,tests.integ.modin.binary.test_binary_op,test_binary_op_between_dataframe_and_series_axis0[df0-s0-pow],"AssertionError: DataFrame are different DataFrame shape mismatch [left]: (5, 3) [right]: (4, 5)",failed -6331,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_1[ndarray0-sub],"ValueError: Unable to coerce to Series, length must be 3: given 2",failed -6334,tests.integ.modin.crosstab.test_crosstab,test_aggfuncs_that_may_produce_nan[skew-True],AttributeError: can't set attribute,failed -6336,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_1[ndarray0-rsub],"ValueError: Unable to coerce to Series, length must be 3: given 2",failed -6337,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[True--7--8],IndexError: index -8 is out of bounds for axis 0 with size 7,failed -6338,tests.integ.modin.crosstab.test_crosstab,test_aggfuncs_that_may_produce_nan[skew-False],AttributeError: can't set attribute,failed -6342,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_1[ndarray0-mul],"ValueError: Unable to coerce to Series, length must be 3: given 2",failed -6343,tests.integ.modin.crosstab.test_crosstab,test_values_unsupported_aggfunc,AttributeError: can't set attribute,failed -6345,tests.integ.modin.binary.test_binary_op,test_binary_op_between_dataframe_and_series_axis0[df0-s0-rpow],"AssertionError: DataFrame are different +5522,tests.integ.modin.extensions.test_dataframe_extensions,test_dataframe_extension_simple_method,AttributeError: DataFrame object has no attribute new_method,failed +5524,tests.integ.modin.extensions.test_dataframe_extensions,test_dataframe_extension_non_method,AttributeError: 'DataFrame' object has no attribute 'four',failed +5525,tests.integ.modin.binary.test_binary_op,test_binary_op_between_dataframe_and_series_axis0[df0-s0-rpow],"AssertionError: DataFrame are different DataFrame shape mismatch [left]: (5, 3) [right]: (4, 5)",failed -6346,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[True--7-7],IndexError: positional indexers are out-of-bounds,failed -6348,tests.integ.modin.crosstab.test_crosstab,test_values_series_like_unsupported_aggfunc,Failed: DID NOT RAISE ,failed -6352,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_1[ndarray0-rmul],"ValueError: Unable to coerce to Series, length must be 3: given 2",failed -6353,tests.integ.modin.binary.test_binary_op,test_binary_op_between_dataframe_and_series_axis0[df0-s0-add1],"AssertionError: DataFrame are different +5527,tests.integ.modin.extensions.test_dataframe_extensions,test_dataframe_extension_access_existing_methods,AttributeError: DataFrame object has no attribute self_accessor,failed +5529,tests.integ.modin.binary.test_binary_op,test_binary_op_between_dataframe_and_series_axis0[df0-s0-add1],"AssertionError: DataFrame are different DataFrame shape mismatch [left]: (5, 3) [right]: (4, 5)",failed -6356,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[True--7-52879115],IndexError: positional indexers are out-of-bounds,failed -6358,tests.integ.modin.binary.test_binary_op,test_binary_op_between_dataframe_and_series_axis0[df0-s0-radd],"AssertionError: DataFrame are different +5531,tests.integ.modin.extensions.test_dataframe_extensions,test_dataframe_extension_override_method,"ValueError: The truth value of a Series is ambiguous. Use a.empty, a.bool(), a.item(), a.any() or a.all().",failed +5533,tests.integ.modin.binary.test_binary_op,test_binary_op_between_dataframe_and_series_axis0[df0-s0-radd],"AssertionError: DataFrame are different DataFrame shape mismatch [left]: (5, 3) [right]: (4, 5)",failed -6359,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_1[ndarray0-truediv],"ValueError: Unable to coerce to Series, length must be 3: given 2",failed -6361,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[True--7--9028751],IndexError: index -9028751 is out of bounds for axis 0 with size 7,failed -6362,tests.integ.modin.binary.test_binary_op,test_binary_op_between_dataframe_and_series_axis0[df0-s0-sub1],"AssertionError: DataFrame are different +5534,tests.integ.modin.binary.test_binary_op,test_binary_op_between_dataframe_and_series_axis0[df0-s0-sub1],"AssertionError: DataFrame are different DataFrame shape mismatch [left]: (5, 3) [right]: (4, 5)",failed -6365,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_1[ndarray0-rtruediv],"ValueError: Unable to coerce to Series, length must be 3: given 2",failed -6368,tests.integ.modin.binary.test_binary_op,test_binary_op_between_dataframe_and_series_axis0[df0-s0-rsub],"AssertionError: DataFrame are different +5536,tests.integ.modin.binary.test_binary_op,test_binary_op_between_dataframe_and_series_axis0[df0-s0-rsub],"AssertionError: DataFrame are different DataFrame shape mismatch [left]: (5, 3) [right]: (4, 5)",failed -6370,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[True-6-0],IndexError: positional indexers are out-of-bounds,failed -6372,tests.integ.modin.binary.test_binary_op,test_binary_op_between_dataframe_and_series_axis0[df0-s0-mul],"AssertionError: DataFrame are different +5538,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[True-7-7],IndexError: positional indexers are out-of-bounds,failed +5539,tests.integ.modin.binary.test_binary_op,test_binary_op_between_dataframe_and_series_axis0[df0-s0-mul],"AssertionError: DataFrame are different DataFrame shape mismatch [left]: (5, 3) [right]: (4, 5)",failed -6376,tests.integ.modin.binary.test_binary_op,test_binary_op_between_dataframe_and_series_axis0[df0-s0-rmul],"AssertionError: DataFrame are different +5541,tests.integ.modin.binary.test_binary_op,test_binary_op_between_dataframe_and_series_axis0[df0-s0-rmul],"AssertionError: DataFrame are different DataFrame shape mismatch [left]: (5, 3) [right]: (4, 5)",failed -6377,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[True-6--3],IndexError: positional indexers are out-of-bounds,failed -6379,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_1[ndarray0-floordiv],"ValueError: Unable to coerce to Series, length must be 3: given 2",failed -6380,tests.integ.modin.binary.test_binary_op,test_binary_op_between_dataframe_and_series_axis0[df0-s0-mod],"AssertionError: DataFrame are different +5542,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[True-7-52879115],IndexError: positional indexers are out-of-bounds,failed +5544,tests.integ.modin.binary.test_binary_op,test_binary_op_between_dataframe_and_series_axis0[df0-s0-mod],"AssertionError: DataFrame are different DataFrame shape mismatch [left]: (5, 3) [right]: (4, 5)",failed -6381,tests.integ.modin.extensions.test_dataframe_extensions,test_dataframe_extension_simple_method,AttributeError: DataFrame object has no attribute new_method,failed -6383,tests.integ.modin.extensions.test_dataframe_extensions,test_dataframe_extension_non_method,AttributeError: 'DataFrame' object has no attribute 'four',failed -6384,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[True-6-4],IndexError: positional indexers are out-of-bounds,failed -6385,tests.integ.modin.extensions.test_dataframe_extensions,test_dataframe_extension_access_existing_methods,AttributeError: DataFrame object has no attribute self_accessor,failed -6386,tests.integ.modin.binary.test_binary_op,test_binary_op_between_dataframe_and_series_axis0[df0-s0-rmod],"AssertionError: DataFrame are different +5545,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[True-7--9028751],IndexError: index -9028751 is out of bounds for axis 0 with size 7,failed +5546,tests.integ.modin.binary.test_binary_op,test_binary_op_between_dataframe_and_series_axis0[df0-s0-rmod],"AssertionError: DataFrame are different DataFrame shape mismatch [left]: (5, 3) [right]: (4, 5)",failed -6387,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_1[ndarray0-rfloordiv],"ValueError: Unable to coerce to Series, length must be 3: given 2",failed -6388,tests.integ.modin.frame.test_loc,test_df_loc_set_key_slice[False-1-1-None],ValueError: Incompatible indexer with DataFrame,failed -6389,tests.integ.modin.extensions.test_dataframe_extensions,test_dataframe_extension_override_method,"ValueError: The truth value of a Series is ambiguous. Use a.empty, a.bool(), a.item(), a.any() or a.all().",failed -6391,tests.integ.modin.binary.test_binary_op,test_binary_op_between_dataframe_and_series_axis0[df1-s1-add0],"AssertionError: DataFrame are different +5548,tests.integ.modin.binary.test_binary_op,test_binary_op_between_dataframe_and_series_axis0[df1-s1-add0],"AssertionError: DataFrame are different DataFrame shape mismatch [left]: (4, 3) [right]: (4, 6)",failed -6392,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_1[ndarray0-mod],"ValueError: Unable to coerce to Series, length must be 3: given 2",failed -6393,tests.integ.modin.binary.test_binary_op,test_binary_op_between_dataframe_and_series_axis0[df1-s1-sub0],"AssertionError: DataFrame are different +5550,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[True-52879115-0],IndexError: positional indexers are out-of-bounds,failed +5551,tests.integ.modin.binary.test_binary_op,test_binary_op_between_dataframe_and_series_axis0[df1-s1-sub0],"AssertionError: DataFrame are different DataFrame shape mismatch [left]: (4, 3) [right]: (4, 6)",failed -6395,tests.integ.modin.frame.test_loc,test_df_loc_set_key_slice[False-1-1--1],ValueError: Incompatible indexer with DataFrame,failed -6396,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_1[ndarray0-rmod],"ValueError: Unable to coerce to Series, length must be 3: given 2",failed -6398,tests.integ.modin.binary.test_binary_op,test_binary_op_between_dataframe_and_series_axis0[df1-s1-truediv],"AssertionError: DataFrame are different +5553,tests.integ.modin.binary.test_binary_op,test_binary_op_between_dataframe_and_series_axis0[df1-s1-truediv],"AssertionError: DataFrame are different DataFrame shape mismatch [left]: (4, 3) [right]: (4, 6)",failed -6401,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[True-6--7],IndexError: positional indexers are out-of-bounds,failed -6402,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_1[ndarray0-pow],"ValueError: Unable to coerce to Series, length must be 3: given 2",failed -6403,tests.integ.modin.binary.test_binary_op,test_binary_op_between_dataframe_and_series_axis0[df1-s1-rtruediv],"AssertionError: DataFrame are different +5555,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[True-52879115--3],IndexError: positional indexers are out-of-bounds,failed +5556,tests.integ.modin.binary.test_binary_op,test_binary_op_between_dataframe_and_series_axis0[df1-s1-rtruediv],"AssertionError: DataFrame are different DataFrame shape mismatch [left]: (4, 3) [right]: (4, 6)",failed -6406,tests.integ.modin.binary.test_binary_op,test_binary_op_between_dataframe_and_series_axis0[df1-s1-floordiv0],"AssertionError: DataFrame are different +5558,tests.integ.modin.binary.test_binary_op,test_binary_op_between_dataframe_and_series_axis0[df1-s1-floordiv0],"AssertionError: DataFrame are different DataFrame shape mismatch [left]: (4, 3) [right]: (4, 6)",failed -6407,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_1[ndarray0-rpow],"ValueError: Unable to coerce to Series, length must be 3: given 2",failed -6410,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[True-6-6],IndexError: positional indexers are out-of-bounds,failed -6411,tests.integ.modin.binary.test_binary_op,test_binary_op_between_dataframe_and_series_axis0[df1-s1-rfloordiv0],"AssertionError: DataFrame are different +5559,tests.integ.modin.extensions.test_series_extensions,test_series_extension_simple_method,AttributeError: Series object has no attribute new_method,failed +5560,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[True-52879115-4],IndexError: positional indexers are out-of-bounds,failed +5562,tests.integ.modin.binary.test_binary_op,test_binary_op_between_dataframe_and_series_axis0[df1-s1-rfloordiv0],"AssertionError: DataFrame are different DataFrame shape mismatch [left]: (4, 3) [right]: (4, 6)",failed -6413,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_1[index0-add],"ValueError: Unable to coerce to Series, length must be 3: given 2",failed -6416,tests.integ.modin.extensions.test_series_extensions,test_series_extension_simple_method,AttributeError: Series object has no attribute new_method,failed -6417,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[True-6--6],IndexError: positional indexers are out-of-bounds,failed -6419,tests.integ.modin.binary.test_binary_op,test_binary_op_between_dataframe_and_series_axis0[df1-s1-floordiv1],"AssertionError: DataFrame are different +5563,tests.integ.modin.extensions.test_series_extensions,test_series_extension_non_method,AttributeError: 'Series' object has no attribute 'four',failed +5564,tests.integ.modin.extensions.test_series_extensions,test_series_extension_access_existing_methods,AttributeError: Series object has no attribute self_accessor,failed +5566,tests.integ.modin.extensions.test_series_extensions,test_series_extension_override_method,"assert np.int64(6) == 100 + + where np.int64(6) = () + + where = 0 1\n1 2\n2 3\ndtype: int64.sum",failed +5567,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[True-52879115--7],IndexError: positional indexers are out-of-bounds,failed +5569,tests.integ.modin.binary.test_binary_op,test_binary_op_between_dataframe_and_series_axis0[df1-s1-floordiv1],"AssertionError: DataFrame are different DataFrame shape mismatch [left]: (4, 3) [right]: (4, 6)",failed -6422,tests.integ.modin.extensions.test_series_extensions,test_series_extension_non_method,AttributeError: 'Series' object has no attribute 'four',failed -6423,tests.integ.modin.binary.test_binary_op,test_binary_op_between_dataframe_and_series_axis0[df1-s1-rfloordiv1],"AssertionError: DataFrame are different +5571,tests.integ.modin.binary.test_binary_op,test_binary_op_between_dataframe_and_series_axis0[df1-s1-rfloordiv1],"AssertionError: DataFrame are different DataFrame shape mismatch [left]: (4, 3) [right]: (4, 6)",failed -6425,tests.integ.modin.extensions.test_series_extensions,test_series_extension_access_existing_methods,AttributeError: Series object has no attribute self_accessor,failed -6426,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[True-6--8],IndexError: index -8 is out of bounds for axis 0 with size 7,failed -6427,tests.integ.modin.extensions.test_series_extensions,test_series_extension_override_method,"assert 6 == 100 - + where 6 = () - + where = 0 1\n1 2\n2 3\ndtype: int64.sum",failed -6430,tests.integ.modin.binary.test_binary_op,test_binary_op_between_dataframe_and_series_axis0[df1-s1-pow],"AssertionError: DataFrame are different +5573,tests.integ.modin.binary.test_binary_op,test_binary_op_between_dataframe_and_series_axis0[df1-s1-pow],"AssertionError: DataFrame are different DataFrame shape mismatch [left]: (4, 3) [right]: (4, 6)",failed -6431,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_1[index0-radd],"ValueError: Unable to coerce to Series, length must be 3: given 2",failed -6433,tests.integ.modin.binary.test_binary_op,test_binary_op_between_dataframe_and_series_axis0[df1-s1-rpow],"AssertionError: DataFrame are different +5574,tests.integ.modin.binary.test_binary_op,test_binary_op_between_dataframe_and_series_axis0[df1-s1-rpow],"AssertionError: DataFrame are different DataFrame shape mismatch [left]: (4, 3) [right]: (4, 6)",failed -6434,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[True-6-7],IndexError: positional indexers are out-of-bounds,failed -6437,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_1[index0-sub],"ValueError: Unable to coerce to Series, length must be 3: given 2",failed -6441,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[True-6-52879115],IndexError: positional indexers are out-of-bounds,failed -6443,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_1[index0-rsub],"ValueError: Unable to coerce to Series, length must be 3: given 2",failed -6446,tests.integ.modin.binary.test_binary_op,test_binary_op_between_dataframe_and_series_axis0[df1-s1-add1],"AssertionError: DataFrame are different +5575,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[True-52879115-6],IndexError: positional indexers are out-of-bounds,failed +5577,tests.integ.modin.binary.test_binary_op,test_binary_op_between_dataframe_and_series_axis0[df1-s1-add1],"AssertionError: DataFrame are different DataFrame shape mismatch [left]: (4, 3) [right]: (4, 6)",failed -6447,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_1[index0-mul],"ValueError: Unable to coerce to Series, length must be 3: given 2",failed -6451,tests.integ.modin.binary.test_binary_op,test_binary_op_between_dataframe_and_series_axis0[df1-s1-radd],"AssertionError: DataFrame are different +5579,tests.integ.modin.binary.test_binary_op,test_binary_op_between_dataframe_and_series_axis0[df1-s1-radd],"AssertionError: DataFrame are different DataFrame shape mismatch [left]: (4, 3) [right]: (4, 6)",failed -6452,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_1[index0-rmul],"ValueError: Unable to coerce to Series, length must be 3: given 2",failed -6455,tests.integ.modin.binary.test_binary_op,test_binary_op_between_dataframe_and_series_axis0[df1-s1-sub1],"AssertionError: DataFrame are different +5581,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[True-52879115--6],IndexError: positional indexers are out-of-bounds,failed +5582,tests.integ.modin.binary.test_binary_op,test_binary_op_between_dataframe_and_series_axis0[df1-s1-sub1],"AssertionError: DataFrame are different DataFrame shape mismatch [left]: (4, 3) [right]: (4, 6)",failed -6457,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[True-6--9028751],IndexError: index -9028751 is out of bounds for axis 0 with size 7,failed -6459,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_1[index0-truediv],"ValueError: Unable to coerce to Series, length must be 3: given 2",failed -6462,tests.integ.modin.binary.test_binary_op,test_binary_op_between_dataframe_and_series_axis0[df1-s1-rsub],"AssertionError: DataFrame are different +5584,tests.integ.modin.binary.test_binary_op,test_binary_op_between_dataframe_and_series_axis0[df1-s1-rsub],"AssertionError: DataFrame are different DataFrame shape mismatch [left]: (4, 3) [right]: (4, 6)",failed -6469,tests.integ.modin.binary.test_binary_op,test_binary_op_between_dataframe_and_series_axis0[df1-s1-mul],"AssertionError: DataFrame are different +5585,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[True-52879115--8],IndexError: index -8 is out of bounds for axis 0 with size 7,failed +5587,tests.integ.modin.binary.test_binary_op,test_binary_op_between_dataframe_and_series_axis0[df1-s1-mul],"AssertionError: DataFrame are different DataFrame shape mismatch [left]: (4, 3) [right]: (4, 6)",failed -6470,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_1[index0-rtruediv],"ValueError: Unable to coerce to Series, length must be 3: given 2",failed -6475,tests.integ.modin.test_dtype_mapping,"test_read_snowflake_data_types[int8 number-values (-128),(127)-expected_dtype0-expected_to_pandas_dtype0-expected_to_pandas0]","AssertionError: unexpected dtypes [dtype('int8')], expected [int64] -assert False",failed -6478,tests.integ.modin.binary.test_binary_op,test_binary_op_between_dataframe_and_series_axis0[df1-s1-rmul],"AssertionError: DataFrame are different +5589,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[True-52879115-7],IndexError: positional indexers are out-of-bounds,failed +5590,tests.integ.modin.binary.test_binary_op,test_binary_op_between_dataframe_and_series_axis0[df1-s1-rmul],"AssertionError: DataFrame are different DataFrame shape mismatch [left]: (4, 3) [right]: (4, 6)",failed -6487,tests.integ.modin.binary.test_binary_op,test_binary_op_between_dataframe_and_series_axis0[df1-s1-mod],"AssertionError: DataFrame are different +5592,tests.integ.modin.binary.test_binary_op,test_binary_op_between_dataframe_and_series_axis0[df1-s1-mod],"AssertionError: DataFrame are different DataFrame shape mismatch [left]: (4, 3) [right]: (4, 6)",failed -6493,tests.integ.modin.binary.test_binary_op,test_binary_op_between_dataframe_and_series_axis0[df1-s1-rmod],"AssertionError: DataFrame are different +5593,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[True-52879115-52879115],IndexError: positional indexers are out-of-bounds,failed +5595,tests.integ.modin.binary.test_binary_op,test_binary_op_between_dataframe_and_series_axis0[df1-s1-rmod],"AssertionError: DataFrame are different DataFrame shape mismatch [left]: (4, 3) [right]: (4, 6)",failed -6498,tests.integ.modin.binary.test_binary_op,test_binary_add_dataframe_and_series_axis0_with_type_mismatch_for_index_negative[df0-s0],Failed: DID NOT RAISE ,failed -6501,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_1[index0-floordiv],"ValueError: Unable to coerce to Series, length must be 3: given 2",failed -6504,tests.integ.modin.frame.test_loc,test_df_loc_set_key_slice[False--1-4-None],ValueError: Incompatible indexer with DataFrame,failed -6511,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_1[index0-rfloordiv],"ValueError: Unable to coerce to Series, length must be 3: given 2",failed -6512,tests.integ.modin.binary.test_binary_op,test_binary_add_dataframe_sub_series_axis1[df0-s0],"AssertionError: DataFrame are different +5597,tests.integ.modin.binary.test_binary_op,test_binary_add_dataframe_and_series_axis0_with_type_mismatch_for_index_negative[df0-s0],Failed: DID NOT RAISE ,failed +5598,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[True-52879115--9028751],IndexError: index -9028751 is out of bounds for axis 0 with size 7,failed +5606,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[True--9028751-0],IndexError: index -9028751 is out of bounds for axis 0 with size 7,failed +5608,tests.integ.modin.binary.test_binary_op,test_binary_add_dataframe_sub_series_axis1[df0-s0],"AssertionError: DataFrame are different DataFrame shape mismatch [left]: (7, 5) [right]: (2, 7)",failed -6519,tests.integ.modin.binary.test_binary_op,test_binary_add_dataframe_sub_series_axis1[df1-s1],"AssertionError: DataFrame are different +5613,tests.integ.modin.binary.test_binary_op,test_binary_add_dataframe_sub_series_axis1[df1-s1],"AssertionError: DataFrame are different DataFrame shape mismatch [left]: (4, 3) [right]: (4, 6)",failed -6522,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_1[index0-mod],"ValueError: Unable to coerce to Series, length must be 3: given 2",failed -6524,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[True--6--8],IndexError: index -8 is out of bounds for axis 0 with size 7,failed -6525,tests.integ.modin.binary.test_binary_op,test_binary_add_dataframe_sub_series_axis1[df2-s2],"AssertionError: DataFrame are different +5619,tests.integ.modin.binary.test_binary_op,test_binary_add_dataframe_sub_series_axis1[df2-s2],"AssertionError: DataFrame are different DataFrame shape mismatch [left]: (7, 3) [right]: (4, 3)",failed -6527,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_1[index0-rmod],"ValueError: Unable to coerce to Series, length must be 3: given 2",failed -6529,tests.integ.modin.binary.test_binary_op,test_binary_add_dataframe_sub_series_axis1[df3-s3],"AssertionError: DataFrame are different +5623,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[True--9028751--3],IndexError: index -9028751 is out of bounds for axis 0 with size 7,failed +5628,tests.integ.modin.binary.test_binary_op,test_binary_add_dataframe_sub_series_axis1[df3-s3],"AssertionError: DataFrame are different DataFrame shape mismatch [left]: (4, 5) [right]: (2, 4)",failed -6530,tests.integ.modin.frame.test_loc,test_df_loc_set_key_slice[False--1-4-10],ValueError: Incompatible indexer with DataFrame,failed -6531,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[True--6-7],IndexError: positional indexers are out-of-bounds,failed -6532,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_1[index0-pow],"ValueError: Unable to coerce to Series, length must be 3: given 2",failed -6535,tests.integ.modin.binary.test_binary_op,test_binary_add_dataframe_sub_series_axis1[df4-s4],"AssertionError: DataFrame are different +5634,tests.integ.modin.binary.test_binary_op,test_binary_add_dataframe_sub_series_axis1[df4-s4],"AssertionError: DataFrame are different DataFrame shape mismatch [left]: (7, 2) [right]: (4, 6)",failed -6538,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_1[index0-rpow],"ValueError: Unable to coerce to Series, length must be 3: given 2",failed -6542,tests.integ.modin.frame.test_apply,test_apply_axis1_with_dynamic_pivot_and_with_3rd_party_libraries_and_decorator[packages0-7],TODO: SNOW-1261830 need to support PandasSeriesType annotation.,xfailed -6543,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[True--6-52879115],IndexError: positional indexers are out-of-bounds,failed -6546,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_1[index_with_name0-add],"ValueError: Unable to coerce to Series, length must be 3: given 2",failed -6549,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[True--6--9028751],IndexError: index -9028751 is out of bounds for axis 0 with size 7,failed -6556,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[True--8-0],IndexError: index -8 is out of bounds for axis 0 with size 7,failed -6568,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_1[index_with_name0-radd],"ValueError: Unable to coerce to Series, length must be 3: given 2",failed -6569,tests.integ.modin.frame.test_loc,test_df_loc_set_key_slice[False-2-None-4],ValueError: Incompatible indexer with DataFrame,failed -6577,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_1[index_with_name0-sub],"ValueError: Unable to coerce to Series, length must be 3: given 2",failed -6582,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[True--8--3],IndexError: index -8 is out of bounds for axis 0 with size 7,failed -6589,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_1[index_with_name0-rsub],"ValueError: Unable to coerce to Series, length must be 3: given 2",failed -6593,tests.integ.modin.test_dtype_mapping,"test_read_snowflake_data_types[int16 number-values (-32768),(32767)-expected_dtype1-expected_to_pandas_dtype1-expected_to_pandas1]","AssertionError: unexpected dtypes [dtype('int16')], expected [int64] -assert False",failed -6595,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[True--8-4],IndexError: index -8 is out of bounds for axis 0 with size 7,failed -6600,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_1[index_with_name0-mul],"ValueError: Unable to coerce to Series, length must be 3: given 2",failed -6606,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[True--8--7],IndexError: index -8 is out of bounds for axis 0 with size 7,failed -6611,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_1[index_with_name0-rmul],"ValueError: Unable to coerce to Series, length must be 3: given 2",failed -6616,tests.integ.modin.binary.test_binary_op,test_binary_sub_dataframe_and_dataframe_duplicate_labels_negative[df10-df20-True],Failed: DID NOT RAISE ,failed -6619,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[True--8-6],IndexError: index -8 is out of bounds for axis 0 with size 7,failed -6621,tests.integ.modin.binary.test_binary_op,test_binary_sub_dataframe_and_dataframe_duplicate_labels_negative[df11-df21-False],Failed: DID NOT RAISE ,failed -6624,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_1[index_with_name0-truediv],"ValueError: Unable to coerce to Series, length must be 3: given 2",failed -6629,tests.integ.modin.binary.test_binary_op,test_binary_sub_dataframe_and_dataframe_duplicate_labels_negative[df12-df22-True],Failed: DID NOT RAISE ,failed -6630,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[True--8--6],IndexError: index -8 is out of bounds for axis 0 with size 7,failed -6632,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_1[index_with_name0-rtruediv],"ValueError: Unable to coerce to Series, length must be 3: given 2",failed -6635,tests.integ.modin.binary.test_binary_op,test_binary_sub_dataframe_and_dataframe_duplicate_labels_negative[df13-df23-False],Failed: DID NOT RAISE ,failed -6639,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[True--8--8],IndexError: index -8 is out of bounds for axis 0 with size 7,failed -6640,tests.integ.modin.frame.test_iloc,test_df_iloc_get_key_bool[row-index with name-key5],IndexError: positional indexers are out-of-bounds,failed -6644,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[True--8-7],IndexError: index -8 is out of bounds for axis 0 with size 7,failed -6650,tests.integ.modin.frame.test_iloc,test_df_iloc_get_key_bool[col-list-key1],IndexError: positional indexers are out-of-bounds,failed -6653,tests.integ.modin.frame.test_loc,test_df_loc_set_key_slice[False-2-4-1],ValueError: Incompatible indexer with DataFrame,failed -6658,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_1[index_with_name0-floordiv],"ValueError: Unable to coerce to Series, length must be 3: given 2",failed -6662,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[True--8-52879115],IndexError: index -8 is out of bounds for axis 0 with size 7,failed -6666,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_1[index_with_name0-rfloordiv],"ValueError: Unable to coerce to Series, length must be 3: given 2",failed -6672,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[True--8--9028751],IndexError: index -9028751 is out of bounds for axis 0 with size 7,failed -6676,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_1[index_with_name0-mod],"ValueError: Unable to coerce to Series, length must be 3: given 2",failed -6678,tests.integ.modin.frame.test_aggregate,test_agg_basic[-21],TypeError: NamedAgg.__new__() missing 1 required positional argument: 'aggfunc',failed -6680,tests.integ.modin.frame.test_iloc,test_df_iloc_get_key_bool[col-list-key3],IndexError: positional indexers are out-of-bounds,failed -6683,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[True-7-0],IndexError: positional indexers are out-of-bounds,failed -6684,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_1[index_with_name0-rmod],"ValueError: Unable to coerce to Series, length must be 3: given 2",failed -6686,tests.integ.modin.frame.test_loc,test_df_loc_set_key_slice[False-2-10-4],ValueError: Incompatible indexer with DataFrame,failed -6689,tests.integ.modin.frame.test_aggregate,test_agg_basic[-11],TypeError: NamedAgg.__new__() missing 1 required positional argument: 'aggfunc',failed -6691,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_1[index_with_name0-pow],"ValueError: Unable to coerce to Series, length must be 3: given 2",failed -6694,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[True-7--3],IndexError: positional indexers are out-of-bounds,failed -6700,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_1[index_with_name0-rpow],"ValueError: Unable to coerce to Series, length must be 3: given 2",failed -6701,tests.integ.modin.frame.test_iloc,test_df_iloc_get_key_bool[col-list-key5],IndexError: positional indexers are out-of-bounds,failed -6707,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[True-7-4],IndexError: positional indexers are out-of-bounds,failed -6710,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_1[list1-add],"ValueError: Unable to coerce to Series, length must be 3: given 4",failed -6716,tests.integ.modin.frame.test_loc,test_df_loc_set_key_slice[False--2-None-1],ValueError: Incompatible indexer with DataFrame,failed -6719,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[True-7--7],IndexError: positional indexers are out-of-bounds,failed -6727,tests.integ.modin.test_dtype_mapping,"test_read_snowflake_data_types[int32 number-values (-2147483648),(2147483647)-expected_dtype2-expected_to_pandas_dtype2-expected_to_pandas2]","AssertionError: unexpected dtypes [dtype('int32')], expected [int64] -assert False",failed -6733,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[True-7-6],IndexError: positional indexers are out-of-bounds,failed -6737,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_1[list1-radd],"ValueError: Unable to coerce to Series, length must be 3: given 4",failed -6741,tests.integ.modin.frame.test_iloc,test_df_iloc_get_key_bool[col-series-key1],IndexError: positional indexers are out-of-bounds,failed -6745,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_1[list1-sub],"ValueError: Unable to coerce to Series, length must be 3: given 4",failed -6752,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_1[list1-rsub],"ValueError: Unable to coerce to Series, length must be 3: given 4",failed -6754,tests.integ.modin.frame.test_loc,test_df_loc_set_key_slice[False--2--1-1],ValueError: Incompatible indexer with DataFrame,failed -6762,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[True-7--6],IndexError: positional indexers are out-of-bounds,failed -6765,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_1[list1-mul],"ValueError: Unable to coerce to Series, length must be 3: given 4",failed -6769,tests.integ.modin.frame.test_aggregate,test_corr_negative[kendall],Failed: DID NOT RAISE ,failed -6772,tests.integ.modin.frame.test_aggregate,test_corr_negative[spearman],Failed: DID NOT RAISE ,failed -6774,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[True-7--8],IndexError: index -8 is out of bounds for axis 0 with size 7,failed -6775,tests.integ.modin.frame.test_aggregate,test_corr_negative[],Failed: DID NOT RAISE ,failed -6776,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_1[list1-rmul],"ValueError: Unable to coerce to Series, length must be 3: given 4",failed -6784,tests.integ.modin.frame.test_iloc,test_df_iloc_get_key_bool[col-series-key3],IndexError: positional indexers are out-of-bounds,failed -6786,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_1[list1-truediv],"ValueError: Unable to coerce to Series, length must be 3: given 4",failed -6788,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[True-7-7],IndexError: positional indexers are out-of-bounds,failed -6794,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_1[list1-rtruediv],"ValueError: Unable to coerce to Series, length must be 3: given 4",failed -6798,tests.integ.modin.frame.test_loc,test_df_loc_set_key_slice[False--2-1-4],ValueError: Incompatible indexer with DataFrame,failed -6799,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[True-7-52879115],IndexError: positional indexers are out-of-bounds,failed -6807,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[True-7--9028751],IndexError: index -9028751 is out of bounds for axis 0 with size 7,failed -6811,tests.integ.modin.frame.test_iloc,test_df_iloc_get_key_bool[col-series-key5],IndexError: positional indexers are out-of-bounds,failed -6814,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[True-52879115-0],IndexError: positional indexers are out-of-bounds,failed -6815,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_1[list1-floordiv],"ValueError: Unable to coerce to Series, length must be 3: given 4",failed -6821,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_1[list1-rfloordiv],"ValueError: Unable to coerce to Series, length must be 3: given 4",failed -6822,tests.integ.modin.frame.test_aggregate,test_string_sum_with_nulls,"TypeError: can only concatenate str (not ""int"") to str",failed -6831,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_1[list1-mod],"ValueError: Unable to coerce to Series, length must be 3: given 4",failed -6838,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[True-52879115--3],IndexError: positional indexers are out-of-bounds,failed -6839,tests.integ.modin.frame.test_aggregate,test_supported_axis_0[aggregate_max],"AssertionError: Series are different +5635,tests.integ.modin.frame.test_apply,test_apply_axis1_with_3rd_party_libraries_and_decorator[packages0-7],"TypeError: The input of UDF ""TESTDB_SNOWPANDAS"".""PUBLIC"".SNOWPARK_TEMP_FUNCTION_PY144ODYKI must be Column, column name, or a list of them",failed +5652,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[True--9028751-4],IndexError: index -9028751 is out of bounds for axis 0 with size 7,failed +5659,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[True--9028751--7],IndexError: index -9028751 is out of bounds for axis 0 with size 7,failed +5664,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[True--9028751-6],IndexError: index -9028751 is out of bounds for axis 0 with size 7,failed +5669,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[True--9028751--6],IndexError: index -9028751 is out of bounds for axis 0 with size 7,failed +5673,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[True--9028751--8],IndexError: index -8 is out of bounds for axis 0 with size 7,failed +5679,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[True--9028751-7],IndexError: index -9028751 is out of bounds for axis 0 with size 7,failed +5680,tests.integ.modin.binary.test_binary_op,test_binary_sub_dataframe_and_dataframe_duplicate_labels_negative[df10-df20-True],Failed: DID NOT RAISE ,failed +5682,tests.integ.modin.binary.test_binary_op,test_binary_sub_dataframe_and_dataframe_duplicate_labels_negative[df11-df21-False],Failed: DID NOT RAISE ,failed +5683,tests.integ.modin.binary.test_binary_op,test_binary_sub_dataframe_and_dataframe_duplicate_labels_negative[df12-df22-True],Failed: DID NOT RAISE ,failed +5685,tests.integ.modin.binary.test_binary_op,test_binary_sub_dataframe_and_dataframe_duplicate_labels_negative[df13-df23-False],Failed: DID NOT RAISE ,failed +5692,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[True--9028751-52879115],IndexError: index -9028751 is out of bounds for axis 0 with size 7,failed +5698,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[True--9028751--9028751],IndexError: index -9028751 is out of bounds for axis 0 with size 7,failed +5759,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[False-0--8],IndexError: index -8 is out of bounds for axis 0 with size 7,failed +5764,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[False-0-7],IndexError: positional indexers are out-of-bounds,failed +5766,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[False-0-52879115],IndexError: positional indexers are out-of-bounds,failed +5771,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[False-0--9028751],IndexError: index -9028751 is out of bounds for axis 0 with size 7,failed +5777,tests.integ.modin.test_apply_snowpark_python_functions,test_apply_sin,"TypeError: 'SIN' expected Column or str, got: ",failed +5802,tests.integ.modin.frame.test_loc,test_df_loc_set_number_of_cols_mismatch_negative,Failed: DID NOT RAISE ,failed +5805,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[False--3--8],IndexError: index -8 is out of bounds for axis 0 with size 7,failed +5811,tests.integ.modin.frame.test_loc,test_df_loc_set_with_non_matching_1d_scalar_key[data0-None-columns0-A-7],Failed: DID NOT RAISE ,failed +5823,tests.integ.modin.frame.test_aggregate,test_agg_basic[-21],TypeError: () missing 1 required positional argument: 'aggfunc',failed +5824,tests.integ.modin.frame.test_loc,test_df_loc_set_with_non_matching_1d_scalar_key[data1-None-columns1-A-7],Failed: DID NOT RAISE ,failed +5827,tests.integ.modin.test_utils,test_get_object_metadata_row_count,"NotImplementedError: Modin supports the method DataFrame.to_view on the Snowflake backend, but not on the backend Pandas.",failed +5834,tests.integ.modin.frame.test_aggregate,test_agg_basic[-11],TypeError: () missing 1 required positional argument: 'aggfunc',failed +5842,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[False--3-7],IndexError: positional indexers are out-of-bounds,failed +5848,tests.integ.modin.frame.test_loc,test_df_loc_set_with_non_matching_1d_scalar_key[None-index3-columns3-5-0],Failed: DID NOT RAISE ,failed +5853,tests.integ.modin.test_apply_snowpark_python_functions,test_apply_log10,"TypeError: 'LOG' expected Column or str, got: ",failed +5854,tests.integ.modin.frame.test_loc,test_df_loc_set_with_non_matching_1d_scalar_key[None-index3-columns3--2-20],Failed: DID NOT RAISE ,failed +5856,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[False--3-52879115],IndexError: positional indexers are out-of-bounds,failed +5870,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[False--3--9028751],IndexError: index -9028751 is out of bounds for axis 0 with size 7,failed +5897,tests.integ.modin.binary.test_binary_not_implemented,test_binary_op_xor[0],Failed: DID NOT RAISE ,failed +5902,tests.integ.modin.binary.test_binary_not_implemented,test_binary_op_xor[1],Failed: DID NOT RAISE ,failed +5905,tests.integ.modin.binary.test_binary_not_implemented,test_binary_op_dot[-DataFrame0],Failed: DID NOT RAISE ,failed +5908,tests.integ.modin.frame.test_loc,test_df_loc_set_row_col_with_non_matching_scalar_key[native_df0-5-A-0],KeyError: array([5]),failed +5909,tests.integ.modin.binary.test_binary_not_implemented,test_binary_op_dot[-Series0],Failed: DID NOT RAISE ,failed +5911,tests.integ.modin.binary.test_binary_not_implemented,test_binary_op_dot[-Series1],Failed: DID NOT RAISE ,failed +5913,tests.integ.modin.binary.test_binary_not_implemented,test_binary_op_dot[-DataFrame1],Failed: DID NOT RAISE ,failed +5916,tests.integ.modin.frame.test_loc,test_df_loc_set_row_col_with_non_matching_scalar_key[native_df0--2-B-20],KeyError: array([-2]),failed +5920,tests.integ.modin.frame.test_loc,test_df_loc_set_row_col_with_non_matching_scalar_key[native_df0-A-C-7],"KeyError: array(['A'], dtype=',failed +5926,tests.integ.modin.frame.test_loc,test_df_loc_set_row_col_with_non_matching_scalar_key[native_df0-X-D-7],"KeyError: array(['X'], dtype=',failed +5931,tests.integ.modin.frame.test_aggregate,test_corr_negative[],Failed: DID NOT RAISE ,failed +5937,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[False-4--8],IndexError: index -8 is out of bounds for axis 0 with size 7,failed +5949,tests.integ.modin.frame.test_loc,test_df_loc_set_with_multi_index_not_implemented,KeyError: array([1]),failed +5950,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[False-4-7],IndexError: positional indexers are out-of-bounds,failed +5962,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[False-4-52879115],IndexError: positional indexers are out-of-bounds,failed +5968,tests.integ.modin.frame.test_aggregate,test_string_sum_with_nulls,"TypeError: can only concatenate str (not ""int"") to str",failed +5969,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[False-4--9028751],IndexError: index -9028751 is out of bounds for axis 0 with size 7,failed +5985,tests.integ.modin.frame.test_aggregate,test_supported_axis_0[aggregate_max],"AssertionError: Series are different Series values are different (25.0 %) [index]: [A, B, C, D] [left]: [345600000000000, 360000000000, -9223372036854775808, -9223372036854775808] [right]: [345600000000000, 360000000000, 5, -9223372036854775808]",failed -6840,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_1[list1-rmod],"ValueError: Unable to coerce to Series, length must be 3: given 4",failed -6849,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_1[list1-pow],"ValueError: Unable to coerce to Series, length must be 3: given 4",failed -6850,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[True-52879115-4],IndexError: positional indexers are out-of-bounds,failed -6855,tests.integ.modin.frame.test_aggregate,test_supported_axis_0[mean],TypeError: timedelta64[ns] is not a numeric data type,failed -6856,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_1[list1-rpow],"ValueError: Unable to coerce to Series, length must be 3: given 4",failed -6858,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[True-52879115--7],IndexError: positional indexers are out-of-bounds,failed -6860,tests.integ.modin.frame.test_aggregate,test_supported_axis_0[median],TypeError: timedelta64[ns] is not a numeric data type,failed -6862,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_1[ndarray1-add],"ValueError: Unable to coerce to Series, length must be 3: given 4",failed -6864,tests.integ.modin.frame.test_aggregate,test_supported_axis_0[std],TypeError: timedelta64[ns] is not a numeric data type,failed -6867,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[True-52879115-6],IndexError: positional indexers are out-of-bounds,failed -6869,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_1[ndarray1-radd],"ValueError: Unable to coerce to Series, length must be 3: given 4",failed -6870,tests.integ.modin.frame.test_loc,test_df_loc_set_key_slice[False-9-None-None],ValueError: Incompatible indexer with DataFrame,failed -6873,tests.integ.modin.frame.test_aggregate,test_axis_1,[XPASS(strict)] SNOW-1653126,failed -6875,tests.integ.modin.frame.test_aggregate,test_var_invalid,"AssertionError: Regex pattern did not match. +5987,tests.integ.modin.test_apply_snowpark_python_functions,test_apply_trunc_default_scale,"TypeError: 'TRUNC' expected Column or str, got: ",failed +6004,tests.integ.modin.frame.test_aggregate,test_supported_axis_0[mean],TypeError: timedelta64[ns] is not a numeric data type,failed +6005,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[False--7-0],IndexError: index -7 is out of bounds for axis 0 with size 6,failed +6014,tests.integ.modin.frame.test_aggregate,test_supported_axis_0[median],TypeError: timedelta64[ns] is not a numeric data type,failed +6017,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[False--7--3],IndexError: index -7 is out of bounds for axis 0 with size 6,failed +6022,tests.integ.modin.frame.test_aggregate,test_supported_axis_0[std],TypeError: timedelta64[ns] is not a numeric data type,failed +6028,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[False--7-4],IndexError: index -7 is out of bounds for axis 0 with size 6,failed +6029,tests.integ.modin.frame.test_aggregate,test_axis_1,[XPASS(strict)] SNOW-1653126,failed +6033,tests.integ.modin.frame.test_aggregate,test_var_invalid,"AssertionError: Regex pattern did not match. Regex: 'timedelta64\\ type\\ does\\ not\\ support\\ var\\ operations' Input: 'timedelta64[ns] is not a numeric data type'",failed -6877,tests.integ.modin.frame.test_aggregate,test_agg_requires_concat_with_timedelta[0],"[XPASS(strict)] requires concat(), which we cannot do with Timedelta.",failed -6878,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[True-52879115--6],IndexError: positional indexers are out-of-bounds,failed -6880,tests.integ.modin.frame.test_aggregate,test_agg_requires_concat_with_timedelta[1],"[XPASS(strict)] requires concat(), which we cannot do with Timedelta.",failed -6881,tests.integ.modin.frame.test_loc,test_df_loc_set_key_slice[False-9-None--1],ValueError: Incompatible indexer with DataFrame,failed -6883,tests.integ.modin.frame.test_aggregate,test_agg_requires_concat_with_timedelta[2],TypeError: NamedAgg.__new__() missing 1 required positional argument: 'aggfunc',failed -6885,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[True-52879115--8],IndexError: index -8 is out of bounds for axis 0 with size 7,failed -6887,tests.integ.modin.frame.test_aggregate,test_agg_requires_concat_with_timedelta[3],"[XPASS(strict)] requires concat(), which we cannot do with Timedelta.",failed -6889,tests.integ.modin.frame.test_aggregate,test_agg_requires_concat_with_timedelta[4],"[XPASS(strict)] requires concat(), which we cannot do with Timedelta.",failed -6890,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_1[ndarray1-sub],"ValueError: Unable to coerce to Series, length must be 3: given 4",failed -6892,tests.integ.modin.frame.test_loc,test_df_loc_set_key_slice[False-9-None-1],ValueError: Incompatible indexer with DataFrame,failed -6894,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[True-52879115-7],IndexError: positional indexers are out-of-bounds,failed -6895,tests.integ.modin.frame.test_aggregate,test_agg_requires_concat_with_timedelta[5],TypeError: NamedAgg.__new__() missing 1 required positional argument: 'aggfunc',failed -6897,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_1[ndarray1-rsub],"ValueError: Unable to coerce to Series, length must be 3: given 4",failed -6898,tests.integ.modin.frame.test_aggregate,test_agg_requires_concat_with_timedelta[6],"[XPASS(strict)] requires concat(), which we cannot do with Timedelta.",failed -6900,tests.integ.modin.frame.test_aggregate,test_agg_produces_timedelta_and_non_timedelta_type,[XPASS(strict)] requires transposing a one-row frame with integer and timedelta.,failed -6904,tests.integ.modin.frame.test_loc,test_df_loc_set_key_slice[False-9-None-4],ValueError: Incompatible indexer with DataFrame,failed -6905,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_1[ndarray1-mul],"ValueError: Unable to coerce to Series, length must be 3: given 4",failed -6913,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_1[ndarray1-rmul],"ValueError: Unable to coerce to Series, length must be 3: given 4",failed -6919,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_1[ndarray1-truediv],"ValueError: Unable to coerce to Series, length must be 3: given 4",failed -6920,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[True-52879115-52879115],IndexError: positional indexers are out-of-bounds,failed -6925,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_1[ndarray1-rtruediv],"ValueError: Unable to coerce to Series, length must be 3: given 4",failed -6927,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[True-52879115--9028751],IndexError: index -9028751 is out of bounds for axis 0 with size 7,failed -6933,tests.integ.modin.frame.test_aggregate,test_single_agg_on_dup_column,"ValueError: Data must be 1-dimensional, got ndarray of shape (1, 2) instead",failed -6934,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[True--9028751-0],IndexError: index -9028751 is out of bounds for axis 0 with size 7,failed -6940,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[True--9028751--3],IndexError: index -9028751 is out of bounds for axis 0 with size 7,failed -6942,tests.integ.modin.frame.test_aggregate,test_single_agg_on_dup_and_non_dup_columns[dup_first],"ValueError: Data must be 1-dimensional, got ndarray of shape (2, 2) instead",failed -6944,tests.integ.modin.frame.test_iloc,test_df_iloc_get_key_bool[col-index-key1],IndexError: positional indexers are out-of-bounds,failed -6946,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_1[ndarray1-floordiv],"ValueError: Unable to coerce to Series, length must be 3: given 4",failed -6949,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[True--9028751-4],IndexError: index -9028751 is out of bounds for axis 0 with size 7,failed -6952,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_1[ndarray1-rfloordiv],"ValueError: Unable to coerce to Series, length must be 3: given 4",failed -6956,tests.integ.modin.frame.test_aggregate,test_single_agg_on_dup_and_non_dup_columns[dup_last],"ValueError: Data must be 1-dimensional, got ndarray of shape (2, 2) instead",failed -6957,tests.integ.modin.test_dtype_mapping,"test_read_snowflake_data_types["">int64"" number-values (-99999999999999999999999999999999999999),(99999999999999999999999999999999999999)-expected_dtype4-expected_to_pandas_dtype4-expected_to_pandas4]","AssertionError: unexpected dtypes [dtype('float64')], expected [int64] -assert False",failed -6958,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[True--9028751--7],IndexError: index -9028751 is out of bounds for axis 0 with size 7,failed -6961,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_1[ndarray1-mod],"ValueError: Unable to coerce to Series, length must be 3: given 4",failed -6966,tests.integ.modin.frame.test_aggregate,test_multiple_agg_on_dup_and_single_agg_on_non_dup_columns,"ValueError: Data must be 1-dimensional, got ndarray of shape (3, 2) instead",failed -6969,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_1[ndarray1-rmod],"ValueError: Unable to coerce to Series, length must be 3: given 4",failed -6973,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_1[ndarray1-pow],"ValueError: Unable to coerce to Series, length must be 3: given 4",failed -6974,tests.integ.modin.frame.test_aggregate,test_multiple_agg_on_only_dup_columns,"ValueError: Data must be 1-dimensional, got ndarray of shape (2, 3) instead",failed -6975,tests.integ.modin.frame.test_loc,test_df_loc_set_key_slice[False-9-10-None],ValueError: Incompatible indexer with DataFrame,failed -6978,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[True--9028751-6],IndexError: index -9028751 is out of bounds for axis 0 with size 7,failed -6981,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_1[ndarray1-rpow],"ValueError: Unable to coerce to Series, length must be 3: given 4",failed -6982,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[True--9028751--6],IndexError: index -9028751 is out of bounds for axis 0 with size 7,failed -6984,tests.integ.modin.frame.test_loc,test_df_loc_set_key_slice[False-9-10--1],ValueError: Incompatible indexer with DataFrame,failed -6986,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_1[index1-add],"ValueError: Unable to coerce to Series, length must be 3: given 4",failed -6988,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[True--9028751--8],IndexError: index -8 is out of bounds for axis 0 with size 7,failed -6992,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[True--9028751-7],IndexError: index -9028751 is out of bounds for axis 0 with size 7,failed -6996,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[True--9028751-52879115],IndexError: index -9028751 is out of bounds for axis 0 with size 7,failed -6997,tests.integ.modin.frame.test_aggregate,test_agg_with_all_missing[-2],TypeError: boolean value of NA is ambiguous,failed -7000,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_1[index1-radd],"ValueError: Unable to coerce to Series, length must be 3: given 4",failed -7005,tests.integ.modin.frame.test_loc,test_df_loc_set_key_slice[False-9-10-1],ValueError: Incompatible indexer with DataFrame,failed -7007,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[True--9028751--9028751],IndexError: index -9028751 is out of bounds for axis 0 with size 7,failed -7010,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_1[index1-sub],"ValueError: Unable to coerce to Series, length must be 3: given 4",failed -7021,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_1[index1-rsub],"ValueError: Unable to coerce to Series, length must be 3: given 4",failed -7026,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_1[index1-mul],"ValueError: Unable to coerce to Series, length must be 3: given 4",failed -7027,tests.integ.modin.frame.test_loc,test_df_loc_set_key_slice[False--9-None-None],ValueError: Incompatible indexer with DataFrame,failed -7033,tests.integ.modin.frame.test_aggregate,test_agg_with_all_missing_pandas_bug_58810,IndexError: positional indexers are out-of-bounds,failed -7034,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_1[index1-rmul],"ValueError: Unable to coerce to Series, length must be 3: given 4",failed -7043,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_1[index1-truediv],"ValueError: Unable to coerce to Series, length must be 3: given 4",failed -7045,tests.integ.modin.frame.test_loc,test_df_loc_set_key_slice[False--9-None-1],ValueError: Incompatible indexer with DataFrame,failed -7048,tests.integ.modin.frame.test_aggregate,test_agg_quantile_kwargs[q2-None],"[XPASS(strict)] SNOW-1062878: agg(""quantile"") with list-like q fails",failed -7052,tests.integ.modin.frame.test_aggregate,test_agg_quantile_kwargs[q2-linear],"[XPASS(strict)] SNOW-1062878: agg(""quantile"") with list-like q fails",failed -7053,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_1[index1-rtruediv],"ValueError: Unable to coerce to Series, length must be 3: given 4",failed -7054,tests.integ.modin.frame.test_aggregate,test_agg_quantile_kwargs[q2-nearest],"[XPASS(strict)] SNOW-1062878: agg(""quantile"") with list-like q fails",failed -7057,tests.integ.modin.frame.test_loc,test_df_loc_set_key_slice[False--9-None-4],ValueError: Incompatible indexer with DataFrame,failed -7060,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_1[index1-floordiv],"ValueError: Unable to coerce to Series, length must be 3: given 4",failed -7062,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[False-0--8],IndexError: index -8 is out of bounds for axis 0 with size 7,failed -7067,tests.integ.modin.frame.test_loc,test_df_loc_set_key_slice[False--9-None-10],ValueError: Incompatible indexer with DataFrame,failed -7074,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_1[index1-rfloordiv],"ValueError: Unable to coerce to Series, length must be 3: given 4",failed -7077,tests.integ.modin.frame.test_aggregate,test_agg_with_variant,TypeError: '<' not supported between instances of 'NoneType' and 'NoneType',failed -7081,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_1[index1-mod],"ValueError: Unable to coerce to Series, length must be 3: given 4",failed -7086,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[False-0-7],IndexError: positional indexers are out-of-bounds,failed -7092,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_1[index1-rmod],"ValueError: Unable to coerce to Series, length must be 3: given 4",failed -7098,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[False-0-52879115],IndexError: positional indexers are out-of-bounds,failed -7102,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_1[index1-pow],"ValueError: Unable to coerce to Series, length must be 3: given 4",failed -7108,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[False-0--9028751],IndexError: index -9028751 is out of bounds for axis 0 with size 7,failed -7110,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_1[index1-rpow],"ValueError: Unable to coerce to Series, length must be 3: given 4",failed -7120,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_1[index_with_name1-add],"ValueError: Unable to coerce to Series, length must be 3: given 4",failed -7128,tests.integ.modin.frame.test_aggregate,test_agg_with_multiindex_negative[0],[XPASS(strict)] SNOW-1010307: MultiIndex aggregation on axis=1 not supported,failed -7129,tests.integ.modin.frame.test_iloc,test_df_iloc_get_key_bool[col-index-key3],IndexError: positional indexers are out-of-bounds,failed -7132,tests.integ.modin.frame.test_aggregate,test_agg_with_multiindex_negative[1],[XPASS(strict)] SNOW-1010307: MultiIndex aggregation on axis=1 not supported,failed -7134,tests.integ.modin.frame.test_aggregate,test_agg_with_multiindex_negative[2],[XPASS(strict)] SNOW-1010307: MultiIndex aggregation on axis=1 not supported,failed -7149,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_1[index_with_name1-radd],"ValueError: Unable to coerce to Series, length must be 3: given 4",failed -7153,tests.integ.modin.frame.test_aggregate,test_agg_with_no_column_raises[pandas_df0],"AssertionError: Regex pattern did not match. - Regex: 'No column to aggregate on' - Input: 'No objects to concatenate'",failed -7155,tests.integ.modin.frame.test_aggregate,test_agg_with_no_column_raises[pandas_df1],"AssertionError: Regex pattern did not match. - Regex: 'No column to aggregate on' - Input: 'No objects to concatenate'",failed -7159,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_1[index_with_name1-sub],"ValueError: Unable to coerce to Series, length must be 3: given 4",failed -7163,tests.integ.modin.frame.test_aggregate,test_agg_with_single_col[-False0],AssertionError: Got type: ,failed -7167,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_1[index_with_name1-rsub],"ValueError: Unable to coerce to Series, length must be 3: given 4",failed -7174,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_1[index_with_name1-mul],"ValueError: Unable to coerce to Series, length must be 3: given 4",failed -7176,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[False--3--8],IndexError: index -8 is out of bounds for axis 0 with size 7,failed -7181,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_1[index_with_name1-rmul],"ValueError: Unable to coerce to Series, length must be 3: given 4",failed -7187,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[False--3-7],IndexError: positional indexers are out-of-bounds,failed -7193,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_1[index_with_name1-truediv],"ValueError: Unable to coerce to Series, length must be 3: given 4",failed -7199,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[False--3-52879115],IndexError: positional indexers are out-of-bounds,failed -7201,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_1[index_with_name1-rtruediv],"ValueError: Unable to coerce to Series, length must be 3: given 4",failed -7211,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_1[index_with_name1-floordiv],"ValueError: Unable to coerce to Series, length must be 3: given 4",failed -7217,tests.integ.modin.frame.test_aggregate,test_ddof_fallback_negative[std],Failed: DID NOT RAISE ,failed -7221,tests.integ.modin.frame.test_aggregate,test_ddof_fallback_negative[var],Failed: DID NOT RAISE ,failed -7223,tests.integ.modin.binary.test_binary_op,test_binary_bitwise_op_on_df[df10-df20--expected0],"AssertionError: DataFrame.iloc[:, 1] (column name=""1"") are different +6036,tests.integ.modin.frame.test_aggregate,test_agg_requires_concat_with_timedelta[0],"[XPASS(strict)] requires concat(), which we cannot do with Timedelta.",failed +6038,tests.integ.modin.frame.test_aggregate,test_agg_requires_concat_with_timedelta[1],"[XPASS(strict)] requires concat(), which we cannot do with Timedelta.",failed +6040,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[False--7--7],IndexError: index -7 is out of bounds for axis 0 with size 6,failed +6046,tests.integ.modin.frame.test_aggregate,test_agg_requires_concat_with_timedelta[2],TypeError: () missing 1 required positional argument: 'aggfunc',failed +6048,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[False--7-6],IndexError: index -7 is out of bounds for axis 0 with size 6,failed +6051,tests.integ.modin.frame.test_aggregate,test_agg_requires_concat_with_timedelta[3],"[XPASS(strict)] requires concat(), which we cannot do with Timedelta.",failed +6052,tests.integ.modin.frame.test_loc,test_df_loc_get_key_bool_series_with_unaligned_and_duplicate_indices,"AssertionError: DataFrame are different + +DataFrame shape mismatch +[left]: (5, 2) +[right]: (9, 2)",failed +6053,tests.integ.modin.frame.test_aggregate,test_agg_requires_concat_with_timedelta[4],"[XPASS(strict)] requires concat(), which we cannot do with Timedelta.",failed +6059,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[False--7--6],IndexError: index -7 is out of bounds for axis 0 with size 6,failed +6062,tests.integ.modin.frame.test_iloc,test_df_iloc_get_key_bool[row-index-key5],IndexError: positional indexers are out-of-bounds,failed +6065,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[False--7--8],IndexError: index -8 is out of bounds for axis 0 with size 7,failed +6066,tests.integ.modin.frame.test_loc,test_df_loc_get_key_bool_series_with_mismatch_index_len[True-key0],pandas.errors.IndexingError: Unalignable boolean Series provided as indexer (index of the boolean Series and of the indexed object do not match).,failed +6067,tests.integ.modin.frame.test_iloc,test_df_iloc_get_key_bool[row-ndarray-key0],"ValueError: +Location based indexing can only have [integer, integer slice (START point is +INCLUDED, END point is EXCLUDED), listlike of integers, boolean array] types.",failed +6072,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[False--7-7],IndexError: positional indexers are out-of-bounds,failed +6074,tests.integ.modin.frame.test_aggregate,test_agg_requires_concat_with_timedelta[5],TypeError: () missing 1 required positional argument: 'aggfunc',failed +6075,tests.integ.modin.binary.test_binary_op,test_binary_arithmetic_method_number_scalar_negative[0],Failed: DID NOT RAISE ,failed +6076,tests.integ.modin.frame.test_aggregate,test_agg_requires_concat_with_timedelta[6],"[XPASS(strict)] requires concat(), which we cannot do with Timedelta.",failed +6078,tests.integ.modin.test_apply_snowpark_python_functions,test_apply_trunc_scale[-1],"TypeError: 'TRUNC' expected Column or str, got: ",failed +6080,tests.integ.modin.binary.test_binary_op,test_binary_arithmetic_method_number_scalar_negative[1],Failed: DID NOT RAISE ,failed +6081,tests.integ.modin.frame.test_aggregate,test_agg_produces_timedelta_and_non_timedelta_type,[XPASS(strict)] requires transposing a one-row frame with integer and timedelta.,failed +6083,tests.integ.modin.binary.test_binary_op,test_binary_arithmetic_method_number_scalar_negative[2],Failed: DID NOT RAISE ,failed +6085,tests.integ.modin.binary.test_binary_op,test_binary_arithmetic_method_number_scalar_negative[3],Failed: DID NOT RAISE ,failed +6090,tests.integ.modin.binary.test_binary_op,test_binary_arithmetic_method_number_scalar_negative[4],Failed: DID NOT RAISE ,failed +6094,tests.integ.modin.binary.test_binary_op,test_binary_arithmetic_method_number_scalar_negative[5],Failed: DID NOT RAISE ,failed +6096,tests.integ.modin.binary.test_binary_op,test_binary_arithmetic_method_number_scalar_negative[6],Failed: DID NOT RAISE ,failed +6100,tests.integ.modin.binary.test_binary_op,test_binary_pow_scalar_different_from_pandas,"AssertionError: Attributes of Series are different + +Attribute ""dtype"" are different +[left]: int64 +[right]: float64",failed +6101,tests.integ.modin.frame.test_loc,test_df_loc_get_key_bool_series_with_mismatch_index_len[True-key1],pandas.errors.IndexingError: Unalignable boolean Series provided as indexer (index of the boolean Series and of the indexed object do not match).,failed +6104,tests.integ.modin.frame.test_aggregate,test_single_agg_on_dup_column,"ValueError: Data must be 1-dimensional, got ndarray of shape (1, 2) instead",failed +6105,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[False--7-52879115],IndexError: positional indexers are out-of-bounds,failed +6108,tests.integ.modin.frame.test_iloc,test_df_iloc_get_key_bool[row-ndarray-key5],IndexError: positional indexers are out-of-bounds,failed +6112,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[False--7--9028751],IndexError: index -9028751 is out of bounds for axis 0 with size 7,failed +6116,tests.integ.modin.frame.test_aggregate,test_single_agg_on_dup_and_non_dup_columns[dup_first],"ValueError: Data must be 1-dimensional, got ndarray of shape (2, 2) instead",failed +6122,tests.integ.modin.frame.test_loc,test_df_loc_get_key_bool_series_with_mismatch_index_len[False-key0],pandas.errors.IndexingError: Unalignable boolean Series provided as indexer (index of the boolean Series and of the indexed object do not match).,failed +6123,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[False-6-0],IndexError: positional indexers are out-of-bounds,failed +6125,tests.integ.modin.frame.test_aggregate,test_single_agg_on_dup_and_non_dup_columns[dup_last],"ValueError: Data must be 1-dimensional, got ndarray of shape (2, 2) instead",failed +6131,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[False-6--3],IndexError: positional indexers are out-of-bounds,failed +6132,tests.integ.modin.frame.test_aggregate,test_multiple_agg_on_dup_and_single_agg_on_non_dup_columns,"ValueError: Data must be 1-dimensional, got ndarray of shape (3, 2) instead",failed +6134,tests.integ.modin.frame.test_loc,test_df_loc_get_key_bool_series_with_mismatch_index_len[False-key1],pandas.errors.IndexingError: Unalignable boolean Series provided as indexer (index of the boolean Series and of the indexed object do not match).,failed +6144,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[False-6-4],IndexError: positional indexers are out-of-bounds,failed +6154,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[False-6--7],IndexError: positional indexers are out-of-bounds,failed +6159,tests.integ.modin.frame.test_loc,test_df_loc_get_key_bool_series_with_1k_shape[key0],pandas.errors.IndexingError: Unalignable boolean Series provided as indexer (index of the boolean Series and of the indexed object do not match).,failed +6163,tests.integ.modin.binary.test_binary_op,test_binary_arithmetic_method_string_scalar_negative[0],AssertionError: exception type does not match with expected type ,failed +6165,tests.integ.modin.frame.test_aggregate,test_multiple_agg_on_only_dup_columns,"ValueError: Data must be 1-dimensional, got ndarray of shape (2, 3) instead",failed +6166,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[False-6-6],IndexError: positional indexers are out-of-bounds,failed +6167,tests.integ.modin.binary.test_binary_op,test_binary_arithmetic_method_string_scalar_negative[1],AssertionError: exception type does not match with expected type ,failed +6169,tests.integ.modin.binary.test_binary_op,test_binary_arithmetic_method_array_scalar,Failed: DID NOT RAISE ,failed +6173,tests.integ.modin.test_apply_snowpark_python_functions,test_apply_trunc_scale[0],"TypeError: 'TRUNC' expected Column or str, got: ",failed +6182,tests.integ.modin.frame.test_aggregate,test_agg_with_all_missing[-2],TypeError: boolean value of NA is ambiguous,failed +6184,tests.integ.modin.frame.test_loc,test_df_loc_get_key_bool_series_with_1k_shape[key1],pandas.errors.IndexingError: Unalignable boolean Series provided as indexer (index of the boolean Series and of the indexed object do not match).,failed +6186,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[False-6--6],IndexError: positional indexers are out-of-bounds,failed +6193,tests.integ.modin.binary.test_binary_op,test_binary_method_numpy_and_pandas_type_scalar[data3-scalars3],"assert [False, False, False, False] == [None, None, None, None] + At index 0 diff: False != None + Full diff: + - [None, None, None, None] + + [False, False, False, False]",failed +6196,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[False-6--8],IndexError: index -8 is out of bounds for axis 0 with size 7,failed +6203,tests.integ.modin.binary.test_binary_op,test_binary_bitwise_op_on_df[df10-df20--expected0],"AssertionError: DataFrame.iloc[:, 1] (column name=""1"") are different DataFrame.iloc[:, 1] (column name=""1"") values are different (66.66667 %) [index]: [0, 1, 2] [left]: [False, False, False] [right]: [None, False, None]",failed -7227,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[False--3--9028751],IndexError: index -9028751 is out of bounds for axis 0 with size 7,failed -7230,tests.integ.modin.binary.test_binary_op,test_binary_bitwise_op_on_df[df10-df20--expected1],"AssertionError: DataFrame.iloc[:, 0] (column name=""0"") are different +6208,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[False-6-7],IndexError: positional indexers are out-of-bounds,failed +6210,tests.integ.modin.binary.test_binary_op,test_binary_bitwise_op_on_df[df10-df20--expected1],"AssertionError: DataFrame.iloc[:, 0] (column name=""0"") are different DataFrame.iloc[:, 0] (column name=""0"") values are different (66.66667 %) [index]: [0, 1, 2] [left]: [True, False, False] [right]: [True, None, None]",failed -7231,tests.integ.modin.frame.test_loc,test_df_loc_set_key_slice[True-None-1-1],ValueError: Incompatible indexer with DataFrame,failed -7241,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_1[index_with_name1-rfloordiv],"ValueError: Unable to coerce to Series, length must be 3: given 4",failed -7243,tests.integ.modin.binary.test_binary_op,test_binary_single_row_dataframe_and_series[2],AssertionError,failed -7248,tests.integ.modin.binary.test_binary_op,test_binary_single_row_dataframe_and_series[3],AssertionError,failed -7251,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_1[index_with_name1-mod],"ValueError: Unable to coerce to Series, length must be 3: given 4",failed -7260,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_1[index_with_name1-rmod],"ValueError: Unable to coerce to Series, length must be 3: given 4",failed -7268,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_1[index_with_name1-pow],"ValueError: Unable to coerce to Series, length must be 3: given 4",failed -7275,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_1[index_with_name1-rpow],"ValueError: Unable to coerce to Series, length must be 3: given 4",failed -7281,tests.integ.modin.frame.test_iloc,test_df_iloc_get_key_bool[col-index-key5],IndexError: positional indexers are out-of-bounds,failed -7282,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_0[list0-add],"ValueError: Unable to coerce to Series, length must be 3: given 2",failed -7284,tests.integ.modin.frame.test_loc,test_df_loc_set_key_slice[True-None-4-4],ValueError: Incompatible indexer with DataFrame,failed -7286,tests.integ.modin.frame.test_iloc,test_df_iloc_get_key_bool[col-ndarray-key0],"ValueError: -Location based indexing can only have [integer, integer slice (START point is -INCLUDED, END point is EXCLUDED), listlike of integers, boolean array] types.",failed -7290,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[False-4--8],IndexError: index -8 is out of bounds for axis 0 with size 7,failed -7292,tests.integ.modin.frame.test_iloc,test_df_iloc_get_key_bool[col-ndarray-key1],IndexError: positional indexers are out-of-bounds,failed -7297,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[False-4-7],IndexError: positional indexers are out-of-bounds,failed -7298,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_0[list0-radd],"ValueError: Unable to coerce to Series, length must be 3: given 2",failed -7302,tests.integ.modin.binary.test_timedelta,test_timedelta_dataframe_bitwise_operation_with_timedelta_scalar[__or__-|],"AssertionError: Regex pattern did not match. +6219,tests.integ.modin.binary.test_binary_op,test_binary_single_row_dataframe_and_series[2],AssertionError,failed +6221,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[False-6-52879115],IndexError: positional indexers are out-of-bounds,failed +6223,tests.integ.modin.frame.test_aggregate,test_agg_with_all_missing_pandas_bug_58810,IndexError: positional indexers are out-of-bounds,failed +6225,tests.integ.modin.binary.test_binary_op,test_binary_single_row_dataframe_and_series[3],AssertionError,failed +6232,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[False-6--9028751],IndexError: index -9028751 is out of bounds for axis 0 with size 7,failed +6244,tests.integ.modin.frame.test_aggregate,test_agg_quantile_kwargs[q2-None],"[XPASS(strict)] SNOW-1062878: agg(""quantile"") with list-like q fails",failed +6248,tests.integ.modin.frame.test_aggregate,test_agg_quantile_kwargs[q2-linear],"[XPASS(strict)] SNOW-1062878: agg(""quantile"") with list-like q fails",failed +6250,tests.integ.modin.frame.test_aggregate,test_agg_quantile_kwargs[q2-nearest],"[XPASS(strict)] SNOW-1062878: agg(""quantile"") with list-like q fails",failed +6256,tests.integ.modin.frame.test_loc,test_df_loc_get_key_non_boolean_series_with_1k_shape[key1],"KeyError: array([ -346, -1451, -362, -33, 1495, -468, -801, -1211, 1276, + 1314, -1424, -1372, -259, 1012, 1058, -1144, -986, -1159, + 1276, -184, -1050, -1428, 1399, -898, 1056, -758, -106, + -48, -185, -1384, -573, -24, -766, -965, 1410, 1144, + -809, -585, -1425, -771, -243, -324, -689, -1309, -311, + -1424, -1398, -725])",failed +6259,tests.integ.modin.test_apply_snowpark_python_functions,test_apply_trunc_scale[1],"TypeError: 'TRUNC' expected Column or str, got: ",failed +6265,tests.integ.modin.frame.test_loc,test_df_loc_get_key_non_boolean_series_with_1k_shape[key2],"KeyError: array([ 1132, -1441, -188, -282, -650, -1453, -91, -34, -604, + -403, -205, -181, -601, -227, 1399, -545, -482, -646, + -1179, -1060, 1374, 1053, -545, 1242, 1238, -1121, -859, + 1401, -705, -788, -482, -1433, 1384, -410, -1219, 1182, + 1125, 1073, -1499, -1106, -585, -143, 1345, -50, -747, + -242, -1377, 1061, -196, -1230, -1363, 1299, -692, -372, + -291, -126, 1176, -1428, -245, -358, -1090, -130, -1139, + -75, -42, 1090, -1190, -1086, -683, -792, -155, 1196, + 1131, -760, -1417, -117, 1432, 1029, -522, -1382, -358, + 1410, 1455, -1259, -825, -644, -1286, -331, -1265, -162, + -513, 1217, 1399, -1411, 1261, -1374, 1134, -997, -317, + -303, -136, 1440, -600, 1323, -519, 1374, -317, 1113, + 1223, 1336, 1164, 1315, 1169, -763, -663, 1372, -307, + -113, -1194, -708, 1395, -1387, 1036, -49, 1011, -994, + -634, 1475, 1455, 1026, -1431, -687, 1338, -218, -1193, + -1294, -530, 1061, -902, -743, -358, -267, -1405, 1393, + -670, 1188, -1162, -1066, -139, -886, -288, -681, -746, + 1238, -347, -861, -1229, -1328, -872, -649, -1011, -1024, + -1397, 1402, -242, -1456, -332, -29, 1387, 1490, -436, + 1081, -430, -398, 1080, 1298, -522, -806, -963, 1039, + 1039, -472, 1109, -1090, 1413, 1435, -556, -1250, -1464, + -404, 1261, -1311, -637, 1476, -1469, -1297, -113, -946, + -938, -759, -476, -25, -398, -819, -369, -1402, -961, + 1441, 1161, -1013, -517, 1032, -872, -1173, -333, -823, + -368, -796, -488, -88, -572, -1280, -1357, -25, -1190, + -352, -1135, -619, -439, 1262, -833, -1314, -1087, 1006, + 1409, 1070, 1304, -969, 1109, -326, -822, 1257, 1225, + -273, -276, 1304, -499, -248, -271, -290, -585, -461, + 1175, 1124, 1195, -1351, -1086, -459, 1475, -1052, 1040, + -284, 1139, -1280, -657, 1276, -1005, 1131, -894, 1275, + -523, -614, 1043, 1123, 1185, -801, -1302, -1216, -891, + 1421, -696, -233, 1218, -796, -439, 1038, 1462, -1092, + -816, -727, 1082, -606, -1478, -1220, 1024, 1342, -1320, + -1332, -1192, -522, -97, -1181, 1463, -1452, -685, -790, + -1089, -1235, -1275, 1185, -1214, 1289, 1391, -1002, -1492, + -325, -532, -446, -213, 1455, -27, -196, -57, -175, + 1357, -446, -576, 1399, -24, -1414, -994, 1056, -1422, + -222, 1076, 1319, -402, -1451, 1002, -511, -738, 1201, + 1133, -724, -276, 1360, -83, -527, 1439, -530, -1179, + -209, -23, 1053, -263, -149, -1290, -1093, -1209, -1031, + -239, -85, -68, -673, -411, -507, -537, 1330, -1410, + 1357, -1058, -988, 1375, -1402, 1252, -112, -75, 1380, + 1128, -1472, -458, -679, -238, -850, -71, 1495, 1282, + -1333, -1005, -618, 1488, -280, 1238, 1265, -1185, 1324, + 1250, -1500, 1230, -932, -1339, -100, -985, -1441, 1346, + -1258, -1092, -568, -550, -576, -1142, -1058, -1280, -429, + 1253, 1355, -302, 1407, -1168, -552, -1251, -791, 1295, + 1059, -733, 1165, -836, -124, 1465, -1437, -311, -257, + 1028, -1463, -1349, -1458, -38, -1078, -1119, -680, -446, + -814, 1253, -1363, -735, -190, -182, -38, -1030, -1275, + -1449, -1058, -611, -170, -615, 1112, -688, -225, -993, + -976, -806, 1169, -1174, -854, -807, -1378, -1177, -1492, + -161, -452, -310, 1131, 1388, -101, -38, 1161, -952, + -874, -192, -199, 1186, 1406, -319, -273, -330, -1343, + -350, 1083, -1494, -535, -395, -120, -1204, -892, -601, + -764, 1196, -846, 1368, -31, -1413, -993, -14, -882, + -1247, -974, 1486, -629, -1311, -875, -700, -175, 1012, + -741, -751, -766, -1355, -882, 1409, -620, -265, -276, + 1197, 1036, -276, 1284, 1403, 1174, -462, 1154, -1042, + 1156, 1109, 1342, 1125, -58, -1028, 1161, 1204, 1480, + 1291, -519, -1281, -206, -1120, -445, -140, -138, 1496, + 1003, -708, -818, -1253, 1470, -1010, -336, -213, -697, + -39, -735, -413, -663, -819, 1220, 1061, -1172, 1370, + -889, -830, 1052, 1254, -315, -890, 1447, -758, -58, + 1331, -911, -28, -816, 1279, 1061, -1227, -1215, -1381, + 1181, -1447, -1087, -1175, -687, 1466, -1378, -589, -135, + -1236, -514, -816, -1352, 1348, 1419, 1467, -1041, -714, + -947, -575, -1262, -53, -604, -177, -34, -509, -1030, + 1109, -552, 1087, -1313, 1044, -316, -1192, -765, 1221, + -763, -1272, -669, -1476, -893, -254, -1359, -1151, -819, + -832, -891, -347, -1204, 1466, -176, -1232, -608, 1125, + -6, -1296, -1156, -864, -760, -1353, -859, -956, 1291, + -1253, 1081, -1139, -31, -226, 1361, -1298, -103, -902, + -1105, -194, -429, -1241, 1291, 1248, 1275, -141, -850, + -325, -401, -409, 1304, 1478, -1109, -1385, -584, -520, + -1106, -346, 1348, -1142, -1479, 1289, -128, -798, 1358, + -410, 1265, -857, -1017, -1439, -775, 1111, 1189, -409, + -853, -1460, -1099, 1387, -1234, -1037, -1231, -708, -1178, + -1333, -1087, -641, -658, -939, -811, 1102, -1265, -198, + -869, -48, -1319, -618, -1250, -663, -585, 1409, -609, + -1223, -347, -773, 1334, -951, -909, -520, -441, -776, + -1022, -1285, 1252, -1330, -417, -1410, -1477, -1079, 1143, + -1418, -910, -673, -612, -863, -772, -1155, 1274, 1482, + 1036, -1120, -662, -394, -805, -1045, -817, 1471, -429, + 1324, -40, -476, 1040, -782, 1431, 1486, -506, -1072, + -67, -310, -635, 1391, -1155, -363, -1039, -582, -1441, + -227, 1463, 1227, -1162, -1053, -418, -453, -892, -417, + -480, -1035, 1037, -188, -1037, -829, -160, -654, -13, + 1157, -512, -856, -899, -489, -596, 1382, -126, -654, + -12, 1345, 1245, -1483, -1128, -355, -117, -961, 1003, + -200, -1385, -328, -238, -1388, -147, -752, -653, 1021, + -1366, -313, -1199, -326, -260, -1440, -1226, -1019, -869, + 1116, -667, -935, -382, 1412, 1463, -1119, 1236, 1469, + -409, -1001, -764, -978, -416, -1111, -1326, -743, -1372, + -1074, -459, -551, -726, -743, -280, -544, -813, -381, + -1419, -179, -677, -70, -713, -1003, -4, -1087, -1162, + -1152, 1200, -990, -1358, -833, 1188, -517, 1402, -452, + 1241, 1087, -1496, -1097, -5, -727, -1007, 1136, -760, + -28, -563, -247, -688, 1282, -577, -1052, -730, -1455, + -539, -394, -461, 1207, 1499, -622, -1430, 1091, -747, + -1218, -543, -615, -754, -170, -503, -1471, -1066, 1486, + -241, 1321, -1025, -342, 1266, -247, -1074, -233, 1044, + -103, 1227, 1270, 1400, -582, -689, -21, 1106, 1424, + -426, -611, -300, -243, -1485, -1353, -798, -178, -735, + -671, -71, -1168, 1321, -1159, -1182, -1124, 1185, -336, + -1498, -757, -405, 1086, -304, 1401, -1059, -1196, -1204, + -337, -1469, -1381])",failed +6290,tests.integ.modin.frame.test_aggregate,test_agg_with_variant,TypeError: '<' not supported between instances of 'NoneType' and 'NoneType',failed +6302,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[False--6--8],IndexError: index -8 is out of bounds for axis 0 with size 7,failed +6317,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[False--6-7],IndexError: positional indexers are out-of-bounds,failed +6334,tests.integ.modin.binary.test_timedelta,test_timedelta_dataframe_bitwise_operation_with_timedelta_scalar[__or__-|],"AssertionError: Regex pattern did not match. Regex: 'unsupported\\ operand\\ type\\ for\\ \\|:\\ Timedelta' Input: ""unsupported operand type(s) for |: 'TimedeltaArray' and 'Timedelta'""",failed -7304,tests.integ.modin.frame.test_iloc,test_df_iloc_get_key_bool[col-ndarray-key3],IndexError: positional indexers are out-of-bounds,failed -7305,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_0[list0-sub],"ValueError: Unable to coerce to Series, length must be 3: given 2",failed -7306,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[False-4-52879115],IndexError: positional indexers are out-of-bounds,failed -7307,tests.integ.modin.binary.test_timedelta,test_timedelta_dataframe_bitwise_operation_with_timedelta_scalar[__ror__-|],"AssertionError: Regex pattern did not match. +6340,tests.integ.modin.binary.test_timedelta,test_timedelta_dataframe_bitwise_operation_with_timedelta_scalar[__ror__-|],"AssertionError: Regex pattern did not match. Regex: 'unsupported\\ operand\\ type\\ for\\ \\|:\\ Timedelta' Input: ""unsupported operand type(s) for |: 'Timedelta' and 'TimedeltaArray'""",failed -7310,tests.integ.modin.binary.test_timedelta,test_timedelta_dataframe_bitwise_operation_with_timedelta_scalar[__and__-&],"AssertionError: Regex pattern did not match. +6346,tests.integ.modin.binary.test_timedelta,test_timedelta_dataframe_bitwise_operation_with_timedelta_scalar[__and__-&],"AssertionError: Regex pattern did not match. Regex: 'unsupported\\ operand\\ type\\ for\\ \\&:\\ Timedelta' Input: ""unsupported operand type(s) for &: 'TimedeltaArray' and 'Timedelta'""",failed -7313,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_0[list0-rsub],"ValueError: Unable to coerce to Series, length must be 3: given 2",failed -7314,tests.integ.modin.binary.test_timedelta,test_timedelta_dataframe_bitwise_operation_with_timedelta_scalar[__rand__-&],"AssertionError: Regex pattern did not match. +6351,tests.integ.modin.frame.test_aggregate,test_agg_with_multiindex_negative[0],[XPASS(strict)] SNOW-1010307: MultiIndex aggregation on axis=1 not supported,failed +6353,tests.integ.modin.binary.test_timedelta,test_timedelta_dataframe_bitwise_operation_with_timedelta_scalar[__rand__-&],"AssertionError: Regex pattern did not match. Regex: 'unsupported\\ operand\\ type\\ for\\ \\&:\\ Timedelta' Input: ""unsupported operand type(s) for &: 'Timedelta' and 'TimedeltaArray'""",failed -7316,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[False-4--9028751],IndexError: index -9028751 is out of bounds for axis 0 with size 7,failed -7318,tests.integ.modin.binary.test_timedelta,test_timedelta_dataframe_exponentiation_with_timedelta_scalar[pow],"AssertionError: Regex pattern did not match. +6357,tests.integ.modin.frame.test_aggregate,test_agg_with_multiindex_negative[1],[XPASS(strict)] SNOW-1010307: MultiIndex aggregation on axis=1 not supported,failed +6358,tests.integ.modin.binary.test_timedelta,test_timedelta_dataframe_exponentiation_with_timedelta_scalar[pow],"AssertionError: Regex pattern did not match. Regex: 'unsupported\\ operand\\ type\\ for\\ \\*\\*:\\ Timedelta' Input: 'cannot perform __pow__ with this index type: TimedeltaArray'",failed -7320,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_0[list0-mul],"ValueError: Unable to coerce to Series, length must be 3: given 2",failed -7321,tests.integ.modin.binary.test_timedelta,test_timedelta_dataframe_exponentiation_with_timedelta_scalar[rpow],"AssertionError: Regex pattern did not match. +6359,tests.integ.modin.frame.test_aggregate,test_agg_with_multiindex_negative[2],[XPASS(strict)] SNOW-1010307: MultiIndex aggregation on axis=1 not supported,failed +6365,tests.integ.modin.binary.test_timedelta,test_timedelta_dataframe_exponentiation_with_timedelta_scalar[rpow],"AssertionError: Regex pattern did not match. Regex: 'unsupported\\ operand\\ type\\ for\\ \\*\\*:\\ Timedelta' Input: 'cannot perform __rpow__ with this index type: TimedeltaArray'",failed -7323,tests.integ.modin.frame.test_iloc,test_df_iloc_get_key_bool[col-ndarray-key5],IndexError: positional indexers are out-of-bounds,failed -7324,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[False--7-0],IndexError: index -7 is out of bounds for axis 0 with size 6,failed -7329,tests.integ.modin.binary.test_timedelta,test_timedelta_addition_and_subtraction_with_numeric[1-add],"AssertionError: Regex pattern did not match. +6368,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[False--6-52879115],IndexError: positional indexers are out-of-bounds,failed +6374,tests.integ.modin.test_apply_snowpark_python_functions,test_apply_trunc_scale[2],"TypeError: 'TRUNC' expected Column or str, got: ",failed +6382,tests.integ.modin.binary.test_timedelta,test_timedelta_addition_and_subtraction_with_numeric[1-add],"AssertionError: Regex pattern did not match. Regex: 'Snowpark\\ pandas\\ does\\ not\\ support\\ addition\\ or\\ subtraction\\ between\\ timedelta\\ values\\ and\\ numeric\\ values\\.' Input: 'Addition/subtraction of integers and integer-arrays with TimedeltaArray is no longer supported. Instead of adding/subtracting `n`, use `n * obj.freq`'",failed -7330,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_0[list0-rmul],"ValueError: Unable to coerce to Series, length must be 3: given 2",failed -7332,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[False--7--3],IndexError: index -7 is out of bounds for axis 0 with size 6,failed -7334,tests.integ.modin.test_dtype_mapping,"test_read_snowflake_data_types[bool_with_null boolean-values (true),(null)-expected_dtype7-expected_to_pandas_dtype7-expected_to_pandas7]","AssertionError: unexpected dtypes [dtype('O')], expected [bool] -assert False",failed -7335,tests.integ.modin.binary.test_timedelta,test_timedelta_addition_and_subtraction_with_numeric[1-radd],"AssertionError: Regex pattern did not match. +6387,tests.integ.modin.frame.test_aggregate,test_agg_with_no_column_raises[pandas_df0],"AssertionError: Regex pattern did not match. + Regex: 'No column to aggregate on' + Input: 'No objects to concatenate'",failed +6388,tests.integ.modin.binary.test_timedelta,test_timedelta_addition_and_subtraction_with_numeric[1-radd],"AssertionError: Regex pattern did not match. Regex: 'Snowpark\\ pandas\\ does\\ not\\ support\\ addition\\ or\\ subtraction\\ between\\ timedelta\\ values\\ and\\ numeric\\ values\\.' Input: 'Addition/subtraction of integers and integer-arrays with TimedeltaArray is no longer supported. Instead of adding/subtracting `n`, use `n * obj.freq`'",failed -7337,tests.integ.modin.binary.test_timedelta,test_timedelta_addition_and_subtraction_with_numeric[1-sub],"AssertionError: Regex pattern did not match. +6390,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice[False-1-1-None],"AssertionError: DataFrame are different + +DataFrame shape mismatch +[left]: (1, 7) +[right]: (2, 7)",failed +6391,tests.integ.modin.frame.test_aggregate,test_agg_with_no_column_raises[pandas_df1],"AssertionError: Regex pattern did not match. + Regex: 'No column to aggregate on' + Input: 'No objects to concatenate'",failed +6392,tests.integ.modin.binary.test_timedelta,test_timedelta_addition_and_subtraction_with_numeric[1-sub],"AssertionError: Regex pattern did not match. Regex: 'Snowpark\\ pandas\\ does\\ not\\ support\\ addition\\ or\\ subtraction\\ between\\ timedelta\\ values\\ and\\ numeric\\ values\\.' Input: 'Addition/subtraction of integers and integer-arrays with TimedeltaArray is no longer supported. Instead of adding/subtracting `n`, use `n * obj.freq`'",failed -7338,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_0[list0-truediv],"ValueError: Unable to coerce to Series, length must be 3: given 2",failed -7340,tests.integ.modin.binary.test_timedelta,test_timedelta_addition_and_subtraction_with_numeric[1-rsub],"AssertionError: Regex pattern did not match. +6396,tests.integ.modin.binary.test_timedelta,test_timedelta_addition_and_subtraction_with_numeric[1-rsub],"AssertionError: Regex pattern did not match. Regex: 'Snowpark\\ pandas\\ does\\ not\\ support\\ addition\\ or\\ subtraction\\ between\\ timedelta\\ values\\ and\\ numeric\\ values\\.' Input: 'Addition/subtraction of integers and integer-arrays with TimedeltaArray is no longer supported. Instead of adding/subtracting `n`, use `n * obj.freq`'",failed -7343,tests.integ.modin.binary.test_timedelta,test_timedelta_addition_and_subtraction_with_numeric[1.5-add],"AssertionError: Regex pattern did not match. +6397,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice[False-1-1--1],"AssertionError: DataFrame are different + +DataFrame shape mismatch +[left]: (1, 7) +[right]: (2, 7)",failed +6399,tests.integ.modin.frame.test_aggregate,test_agg_with_single_col[-False0],AssertionError: Got type: ,failed +6402,tests.integ.modin.binary.test_timedelta,test_timedelta_addition_and_subtraction_with_numeric[1.5-add],"AssertionError: Regex pattern did not match. Regex: 'Snowpark\\ pandas\\ does\\ not\\ support\\ addition\\ or\\ subtraction\\ between\\ timedelta\\ values\\ and\\ numeric\\ values\\.' Input: ""unsupported operand type(s) for +: 'TimedeltaArray' and 'float'""",failed -7344,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_0[list0-rtruediv],"ValueError: Unable to coerce to Series, length must be 3: given 2",failed -7345,tests.integ.modin.binary.test_timedelta,test_timedelta_addition_and_subtraction_with_numeric[1.5-radd],"AssertionError: Regex pattern did not match. +6405,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice[False-1-1-1],"AssertionError: DataFrame are different + +DataFrame shape mismatch +[left]: (0, 7) +[right]: (1, 7)",failed +6408,tests.integ.modin.binary.test_timedelta,test_timedelta_addition_and_subtraction_with_numeric[1.5-radd],"AssertionError: Regex pattern did not match. Regex: 'Snowpark\\ pandas\\ does\\ not\\ support\\ addition\\ or\\ subtraction\\ between\\ timedelta\\ values\\ and\\ numeric\\ values\\.' Input: ""unsupported operand type(s) for +: 'float' and 'TimedeltaArray'""",failed -7348,tests.integ.modin.binary.test_timedelta,test_timedelta_addition_and_subtraction_with_numeric[1.5-sub],"AssertionError: Regex pattern did not match. +6416,tests.integ.modin.binary.test_timedelta,test_timedelta_addition_and_subtraction_with_numeric[1.5-sub],"AssertionError: Regex pattern did not match. Regex: 'Snowpark\\ pandas\\ does\\ not\\ support\\ addition\\ or\\ subtraction\\ between\\ timedelta\\ values\\ and\\ numeric\\ values\\.' Input: ""unsupported operand type(s) for -: 'TimedeltaArray' and 'float'""",failed -7350,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_0[list0-floordiv],"ValueError: Unable to coerce to Series, length must be 3: given 2",failed -7351,tests.integ.modin.binary.test_timedelta,test_timedelta_addition_and_subtraction_with_numeric[1.5-rsub],"AssertionError: Regex pattern did not match. +6419,tests.integ.modin.binary.test_timedelta,test_timedelta_addition_and_subtraction_with_numeric[1.5-rsub],"AssertionError: Regex pattern did not match. Regex: 'Snowpark\\ pandas\\ does\\ not\\ support\\ addition\\ or\\ subtraction\\ between\\ timedelta\\ values\\ and\\ numeric\\ values\\.' Input: ""unsupported operand type(s) for +: 'TimedeltaArray' and 'float'""",failed -7354,tests.integ.modin.binary.test_timedelta,test_timedelta_divide_number_dataframe_by_timedelta_scalar[div],AssertionError: exception type does not match with expected type ,failed -7355,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[False--7-4],IndexError: index -7 is out of bounds for axis 0 with size 6,failed -7357,tests.integ.modin.binary.test_timedelta,test_timedelta_divide_number_dataframe_by_timedelta_scalar[floordiv],"AssertionError: Regex pattern did not match. +6421,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice[False-1-4-None],"AssertionError: DataFrame are different + +DataFrame shape mismatch +[left]: (4, 7) +[right]: (5, 7)",failed +6424,tests.integ.modin.binary.test_timedelta,test_timedelta_divide_number_dataframe_by_timedelta_scalar[div],AssertionError: exception type does not match with expected type ,failed +6430,tests.integ.modin.binary.test_timedelta,test_timedelta_divide_number_dataframe_by_timedelta_scalar[floordiv],"AssertionError: Regex pattern did not match. Regex: 'Snowpark\\ pandas\\ does\\ not\\ support\\ dividing\\ numeric\\ values\\ by\\ timedelta\\ values\\ with\\ div\\ \\(/\\),\\ mod\\ \\(%\\),\\ or\\ floordiv\\ \\(//\\)\\.' Input: 'Invalid dtype int64 for __floordiv__'",failed -7359,tests.integ.modin.binary.test_timedelta,test_timedelta_divide_number_dataframe_by_timedelta_scalar[truediv],AssertionError: exception type does not match with expected type ,failed -7361,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[False--7--7],IndexError: index -7 is out of bounds for axis 0 with size 6,failed -7362,tests.integ.modin.binary.test_timedelta,test_timedelta_divide_number_dataframe_by_timedelta_scalar[mod],"AssertionError: Regex pattern did not match. +6431,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice[False-1-4--1],"AssertionError: DataFrame are different + +DataFrame shape mismatch +[left]: (4, 7) +[right]: (5, 7)",failed +6434,tests.integ.modin.binary.test_timedelta,test_timedelta_divide_number_dataframe_by_timedelta_scalar[truediv],AssertionError: exception type does not match with expected type ,failed +6437,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice[False-1-4-1],"AssertionError: DataFrame are different + +DataFrame shape mismatch +[left]: (3, 7) +[right]: (4, 7)",failed +6439,tests.integ.modin.binary.test_timedelta,test_timedelta_divide_number_dataframe_by_timedelta_scalar[mod],"AssertionError: Regex pattern did not match. Regex: 'Snowpark\\ pandas\\ does\\ not\\ support\\ dividing\\ numeric\\ values\\ by\\ timedelta\\ values\\ with\\ div\\ \\(/\\),\\ mod\\ \\(%\\),\\ or\\ floordiv\\ \\(//\\)\\.' Input: 'Invalid dtype int64 for __floordiv__'",failed -7365,tests.integ.modin.binary.test_timedelta,test_divide_number_scalar_by_timedelta_dataframe[rdiv],"AssertionError: Regex pattern did not match. +6443,tests.integ.modin.binary.test_timedelta,test_divide_number_scalar_by_timedelta_dataframe[rdiv],"AssertionError: Regex pattern did not match. Regex: 'Snowpark\\ pandas\\ does\\ not\\ support\\ dividing\\ numeric\\ values\\ by\\ timedelta\\ values\\ with\\ div\\ \\(/\\),\\ mod\\ \\(%\\),\\ or\\ floordiv\\ \\(//\\)\\.' Input: 'Cannot divide int by TimedeltaArray'",failed -7367,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[False--7-6],IndexError: index -7 is out of bounds for axis 0 with size 6,failed -7369,tests.integ.modin.binary.test_timedelta,test_divide_number_scalar_by_timedelta_dataframe[rfloordiv],"AssertionError: Regex pattern did not match. +6445,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice[False-1-4-4],"AssertionError: DataFrame are different + +DataFrame shape mismatch +[left]: (0, 7) +[right]: (1, 7)",failed +6448,tests.integ.modin.binary.test_timedelta,test_divide_number_scalar_by_timedelta_dataframe[rfloordiv],"AssertionError: Regex pattern did not match. Regex: 'Snowpark\\ pandas\\ does\\ not\\ support\\ dividing\\ numeric\\ values\\ by\\ timedelta\\ values\\ with\\ div\\ \\(/\\),\\ mod\\ \\(%\\),\\ or\\ floordiv\\ \\(//\\)\\.' Input: 'Cannot divide int by TimedeltaArray'",failed -7370,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_0[list0-rfloordiv],"ValueError: Unable to coerce to Series, length must be 3: given 2",failed -7372,tests.integ.modin.binary.test_timedelta,test_divide_number_scalar_by_timedelta_dataframe[rtruediv],"AssertionError: Regex pattern did not match. +6464,tests.integ.modin.frame.test_aggregate,test_ddof_fallback_negative[std],Failed: DID NOT RAISE ,failed +6466,tests.integ.modin.frame.test_aggregate,test_ddof_fallback_negative[var],Failed: DID NOT RAISE ,failed +6472,tests.integ.modin.binary.test_binary_op,test_binary_comparison_between_non_supported_types[gt-data0-s],AssertionError: exception type does not match with expected type ,failed +6477,tests.integ.modin.binary.test_binary_op,test_binary_comparison_between_non_supported_types[gt-data1-s],AssertionError: exception type does not match with expected type ,failed +6481,tests.integ.modin.binary.test_binary_op,test_binary_comparison_between_non_supported_types[gt-data2-s],AssertionError: exception type does not match with expected type ,failed +6483,tests.integ.modin.binary.test_timedelta,test_divide_number_scalar_by_timedelta_dataframe[rtruediv],"AssertionError: Regex pattern did not match. Regex: 'Snowpark\\ pandas\\ does\\ not\\ support\\ dividing\\ numeric\\ values\\ by\\ timedelta\\ values\\ with\\ div\\ \\(/\\),\\ mod\\ \\(%\\),\\ or\\ floordiv\\ \\(//\\)\\.' Input: 'Cannot divide int by TimedeltaArray'",failed -7375,tests.integ.modin.binary.test_timedelta,test_divide_number_scalar_by_timedelta_dataframe[rmod],"AssertionError: Regex pattern did not match. +6488,tests.integ.modin.binary.test_binary_op,test_binary_comparison_between_non_supported_types[gt-data3-s],AssertionError: exception type does not match with expected type ,failed +6489,tests.integ.modin.binary.test_timedelta,test_divide_number_scalar_by_timedelta_dataframe[rmod],"AssertionError: Regex pattern did not match. Regex: 'Snowpark\\ pandas\\ does\\ not\\ support\\ dividing\\ numeric\\ values\\ by\\ timedelta\\ values\\ with\\ div\\ \\(/\\),\\ mod\\ \\(%\\),\\ or\\ floordiv\\ \\(//\\)\\.' Input: 'Cannot divide int by TimedeltaArray'",failed -7377,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[False--7--6],IndexError: index -7 is out of bounds for axis 0 with size 6,failed -7379,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_0[list0-mod],"ValueError: Unable to coerce to Series, length must be 3: given 2",failed -7381,tests.integ.modin.binary.test_timedelta,test_timedelta_less_than_or_greater_than_numeric[gt],"AssertionError: Regex pattern did not match. +6494,tests.integ.modin.binary.test_binary_op,test_binary_comparison_between_non_supported_types[gt-data4-1672560000.0],AssertionError: exception type does not match with expected type ,failed +6495,tests.integ.modin.binary.test_timedelta,test_timedelta_less_than_or_greater_than_numeric[gt],"AssertionError: Regex pattern did not match. Regex: 'Snowpark\\ pandas\\ does\\ not\\ support\\ binary\\ operation\\ gt\\ between\\ timedelta\\ and\\ a\\ non\\-timedelta\\ type' Input: 'Invalid comparison between dtype=timedelta64[ns] and int'",failed -7385,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[False--7--8],IndexError: index -8 is out of bounds for axis 0 with size 7,failed -7387,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_0[list0-rmod],"ValueError: Unable to coerce to Series, length must be 3: given 2",failed -7393,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_0[list0-pow],"ValueError: Unable to coerce to Series, length must be 3: given 2",failed -7396,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[False--7-7],IndexError: positional indexers are out-of-bounds,failed -7398,tests.integ.modin.frame.test_aggregate,test_agg_axis_1_simple[size],AssertionError: Got type: ,failed -7399,tests.integ.modin.binary.test_timedelta,test_timedelta_less_than_or_greater_than_numeric[ge],"AssertionError: Regex pattern did not match. +6498,tests.integ.modin.frame.test_loc,test_df_loc_get_reversed_key_slice_with_unordered_nullable_index[last--9-1-None],KeyError: 10,failed +6500,tests.integ.modin.binary.test_binary_op,test_binary_comparison_between_non_supported_types[ge-data0-s],AssertionError: exception type does not match with expected type ,failed +6503,tests.integ.modin.binary.test_timedelta,test_timedelta_less_than_or_greater_than_numeric[ge],"AssertionError: Regex pattern did not match. Regex: 'Snowpark\\ pandas\\ does\\ not\\ support\\ binary\\ operation\\ ge\\ between\\ timedelta\\ and\\ a\\ non\\-timedelta\\ type' Input: 'Invalid comparison between dtype=timedelta64[ns] and int'",failed -7400,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_0[list0-rpow],"ValueError: Unable to coerce to Series, length must be 3: given 2",failed -7404,tests.integ.modin.binary.test_timedelta,test_timedelta_less_than_or_greater_than_numeric[lt],"AssertionError: Regex pattern did not match. +6505,tests.integ.modin.binary.test_binary_op,test_binary_comparison_between_non_supported_types[ge-data1-s],AssertionError: exception type does not match with expected type ,failed +6507,tests.integ.modin.binary.test_timedelta,test_timedelta_less_than_or_greater_than_numeric[lt],"AssertionError: Regex pattern did not match. Regex: 'Snowpark\\ pandas\\ does\\ not\\ support\\ binary\\ operation\\ lt\\ between\\ timedelta\\ and\\ a\\ non\\-timedelta\\ type' Input: 'Invalid comparison between dtype=timedelta64[ns] and int'",failed -7407,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[False--7-52879115],IndexError: positional indexers are out-of-bounds,failed -7408,tests.integ.modin.binary.test_timedelta,test_timedelta_less_than_or_greater_than_numeric[le],"AssertionError: Regex pattern did not match. +6509,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice[False--1-1-None],"AssertionError: DataFrame are different + +DataFrame shape mismatch +[left]: (5, 7) +[right]: (6, 7)",failed +6512,tests.integ.modin.binary.test_timedelta,test_timedelta_less_than_or_greater_than_numeric[le],"AssertionError: Regex pattern did not match. Regex: 'Snowpark\\ pandas\\ does\\ not\\ support\\ binary\\ operation\\ le\\ between\\ timedelta\\ and\\ a\\ non\\-timedelta\\ type' Input: 'Invalid comparison between dtype=timedelta64[ns] and int'",failed -7410,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_0[ndarray0-add],"ValueError: Unable to coerce to Series, length must be 3: given 2",failed -7412,tests.integ.modin.binary.test_timedelta,test_pow_timedelta_numeric[pow],"AssertionError: Regex pattern did not match. +6516,tests.integ.modin.binary.test_timedelta,test_pow_timedelta_numeric[pow],"AssertionError: Regex pattern did not match. Regex: 'Snowpark\\ pandas\\ does\\ not\\ support\\ binary\\ operation\\ pow\\ between\\ timedelta\\ and\\ a\\ non\\-timedelta\\ type' Input: 'cannot perform __pow__ with this index type: TimedeltaArray'",failed -7417,tests.integ.modin.binary.test_timedelta,test_pow_timedelta_numeric[rpow],"AssertionError: Regex pattern did not match. +6518,tests.integ.modin.test_apply_snowpark_python_functions,test_apply_log_base,TypeError: log() got multiple values for argument 'base',failed +6519,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice[False--1-1-1],"AssertionError: DataFrame are different + +DataFrame shape mismatch +[left]: (0, 7) +[right]: (1, 7)",failed +6520,tests.integ.modin.frame.test_loc,test_df_loc_get_reversed_key_slice_with_unordered_nullable_index[last--9-1-1],KeyError: 10,failed +6522,tests.integ.modin.binary.test_timedelta,test_pow_timedelta_numeric[rpow],"AssertionError: Regex pattern did not match. Regex: 'Snowpark\\ pandas\\ does\\ not\\ support\\ binary\\ operation\\ pow\\ between\\ timedelta\\ and\\ a\\ non\\-timedelta\\ type' Input: 'cannot perform __rpow__ with this index type: TimedeltaArray'",failed -7420,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_0[ndarray0-radd],"ValueError: Unable to coerce to Series, length must be 3: given 2",failed -7422,tests.integ.modin.binary.test_timedelta,test_invalid_ops_between_timedelta_dataframe_and_string_scalar[pow-Numeric],AssertionError: exception type does not match with expected type ,failed -7424,tests.integ.modin.binary.test_timedelta,test_invalid_ops_between_timedelta_dataframe_and_string_scalar[rpow-Numeric],AssertionError: exception type does not match with expected type ,failed -7426,tests.integ.modin.frame.test_loc,test_df_loc_set_key_slice[True--1--1-None],ValueError: Incompatible indexer with DataFrame,failed -7428,tests.integ.modin.binary.test_timedelta,test_invalid_ops_between_timedelta_dataframe_and_string_scalar[__and__-Boolean],AssertionError: exception type does not match with expected type ,failed -7431,tests.integ.modin.binary.test_timedelta,test_invalid_ops_between_timedelta_dataframe_and_string_scalar[__rand__-Boolean],AssertionError: exception type does not match with expected type ,failed -7432,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[False--7--9028751],IndexError: index -9028751 is out of bounds for axis 0 with size 7,failed -7434,tests.integ.modin.binary.test_timedelta,test_invalid_ops_between_timedelta_dataframe_and_string_scalar[__or__-Boolean],AssertionError: exception type does not match with expected type ,failed -7437,tests.integ.modin.binary.test_timedelta,test_invalid_ops_between_timedelta_dataframe_and_string_scalar[__ror__-Boolean],AssertionError: exception type does not match with expected type ,failed -7439,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_0[ndarray0-sub],"ValueError: Unable to coerce to Series, length must be 3: given 2",failed -7441,tests.integ.modin.frame.test_loc,test_df_loc_set_key_slice[True--1--1--1],ValueError: Incompatible indexer with DataFrame,failed -7442,tests.integ.modin.binary.test_timedelta,test_bitwise_timedelta_numeric[__or__-__or__],"AssertionError: Regex pattern did not match. +6525,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice[False--1-1-4],"AssertionError: DataFrame are different + +DataFrame shape mismatch +[left]: (3, 7) +[right]: (4, 7)",failed +6526,tests.integ.modin.binary.test_timedelta,test_invalid_ops_between_timedelta_dataframe_and_string_scalar[pow-Numeric],AssertionError: exception type does not match with expected type ,failed +6530,tests.integ.modin.binary.test_binary_op,test_binary_comparison_between_non_supported_types[ge-data2-s],AssertionError: exception type does not match with expected type ,failed +6531,tests.integ.modin.binary.test_timedelta,test_invalid_ops_between_timedelta_dataframe_and_string_scalar[rpow-Numeric],AssertionError: exception type does not match with expected type ,failed +6534,tests.integ.modin.binary.test_binary_op,test_binary_comparison_between_non_supported_types[ge-data3-s],AssertionError: exception type does not match with expected type ,failed +6535,tests.integ.modin.binary.test_timedelta,test_invalid_ops_between_timedelta_dataframe_and_string_scalar[__and__-Boolean],AssertionError: exception type does not match with expected type ,failed +6538,tests.integ.modin.frame.test_loc,test_df_loc_get_reversed_key_slice_with_unordered_nullable_index[last--9-1-4],KeyError: 10,failed +6539,tests.integ.modin.binary.test_binary_op,test_binary_comparison_between_non_supported_types[ge-data4-1672560000.0],AssertionError: exception type does not match with expected type ,failed +6541,tests.integ.modin.binary.test_timedelta,test_invalid_ops_between_timedelta_dataframe_and_string_scalar[__rand__-Boolean],AssertionError: exception type does not match with expected type ,failed +6543,tests.integ.modin.binary.test_binary_op,test_binary_comparison_between_non_supported_types[lt-data0-s],AssertionError: exception type does not match with expected type ,failed +6544,tests.integ.modin.binary.test_timedelta,test_invalid_ops_between_timedelta_dataframe_and_string_scalar[__or__-Boolean],AssertionError: exception type does not match with expected type ,failed +6545,tests.integ.modin.binary.test_binary_op,test_binary_comparison_between_non_supported_types[lt-data1-s],AssertionError: exception type does not match with expected type ,failed +6546,tests.integ.modin.binary.test_timedelta,test_invalid_ops_between_timedelta_dataframe_and_string_scalar[__ror__-Boolean],AssertionError: exception type does not match with expected type ,failed +6548,tests.integ.modin.binary.test_binary_op,test_binary_comparison_between_non_supported_types[lt-data2-s],AssertionError: exception type does not match with expected type ,failed +6549,tests.integ.modin.binary.test_timedelta,test_bitwise_timedelta_numeric[__or__-__or__],"AssertionError: Regex pattern did not match. Regex: 'Snowpark\\ pandas\\ does\\ not\\ support\\ binary\\ operation\\ __or__\\ between\\ timedelta\\ and\\ a\\ non\\-timedelta\\ type' Input: ""unsupported operand type(s) for |: 'TimedeltaArray' and 'int'""",failed -7443,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[False-6-0],IndexError: positional indexers are out-of-bounds,failed -7447,tests.integ.modin.binary.test_timedelta,test_bitwise_timedelta_numeric[__and__-__and__],"AssertionError: Regex pattern did not match. +6550,tests.integ.modin.binary.test_binary_op,test_binary_comparison_between_non_supported_types[lt-data3-s],AssertionError: exception type does not match with expected type ,failed +6551,tests.integ.modin.frame.test_loc,test_df_loc_get_reversed_key_slice_with_unordered_nullable_index[last--9-1-6],KeyError: 10,failed +6552,tests.integ.modin.binary.test_timedelta,test_bitwise_timedelta_numeric[__and__-__and__],"AssertionError: Regex pattern did not match. Regex: 'Snowpark\\ pandas\\ does\\ not\\ support\\ binary\\ operation\\ __and__\\ between\\ timedelta\\ and\\ a\\ non\\-timedelta\\ type' Input: ""unsupported operand type(s) for &: 'TimedeltaArray' and 'int'""",failed -7448,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_0[ndarray0-rsub],"ValueError: Unable to coerce to Series, length must be 3: given 2",failed -7452,tests.integ.modin.binary.test_timedelta,test_bitwise_timedelta_numeric[__ror__-__or__],"AssertionError: Regex pattern did not match. +6553,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice[False--1-1-10],"AssertionError: DataFrame are different + +DataFrame shape mismatch +[left]: (5, 7) +[right]: (6, 7)",failed +6554,tests.integ.modin.binary.test_binary_op,test_binary_comparison_between_non_supported_types[lt-data4-1672560000.0],AssertionError: exception type does not match with expected type ,failed +6555,tests.integ.modin.binary.test_timedelta,test_bitwise_timedelta_numeric[__ror__-__or__],"AssertionError: Regex pattern did not match. Regex: 'Snowpark\\ pandas\\ does\\ not\\ support\\ binary\\ operation\\ __or__\\ between\\ timedelta\\ and\\ a\\ non\\-timedelta\\ type' Input: ""unsupported operand type(s) for |: 'int' and 'TimedeltaArray'""",failed -7453,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[False-6--3],IndexError: positional indexers are out-of-bounds,failed -7455,tests.integ.modin.binary.test_timedelta,test_bitwise_timedelta_numeric[__rand__-__and__],"AssertionError: Regex pattern did not match. +6557,tests.integ.modin.binary.test_binary_op,test_binary_comparison_between_non_supported_types[le-data0-s],AssertionError: exception type does not match with expected type ,failed +6558,tests.integ.modin.binary.test_timedelta,test_bitwise_timedelta_numeric[__rand__-__and__],"AssertionError: Regex pattern did not match. Regex: 'Snowpark\\ pandas\\ does\\ not\\ support\\ binary\\ operation\\ __and__\\ between\\ timedelta\\ and\\ a\\ non\\-timedelta\\ type' Input: ""unsupported operand type(s) for &: 'int' and 'TimedeltaArray'""",failed -7457,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_0[ndarray0-mul],"ValueError: Unable to coerce to Series, length must be 3: given 2",failed -7460,tests.integ.modin.binary.test_timedelta,test_timedelta_mod_with_negative_timedelta[3--2--1-1],"AssertionError: Series are different +6559,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice[False--1-4-None],"AssertionError: DataFrame are different + +DataFrame shape mismatch +[left]: (2, 7) +[right]: (3, 7)",failed +6560,tests.integ.modin.binary.test_binary_op,test_binary_comparison_between_non_supported_types[le-data1-s],AssertionError: exception type does not match with expected type ,failed +6562,tests.integ.modin.binary.test_timedelta,test_timedelta_mod_with_negative_timedelta[3--2--1-1],"AssertionError: Series are different Series values are different (100.0 %) [index]: [0] [left]: [-1] [right]: [1]",failed -7463,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[False-6-4],IndexError: positional indexers are out-of-bounds,failed -7466,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_0[ndarray0-rmul],"ValueError: Unable to coerce to Series, length must be 3: given 2",failed -7467,tests.integ.modin.binary.test_timedelta,test_timedelta_mod_with_negative_timedelta[-3-2-1--1],"AssertionError: Series are different +6564,tests.integ.modin.binary.test_binary_op,test_binary_comparison_between_non_supported_types[le-data2-s],AssertionError: exception type does not match with expected type ,failed +6567,tests.integ.modin.binary.test_binary_op,test_binary_comparison_between_non_supported_types[le-data3-s],AssertionError: exception type does not match with expected type ,failed +6568,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice[False--1-4-4],"AssertionError: DataFrame are different + +DataFrame shape mismatch +[left]: (0, 7) +[right]: (1, 7)",failed +6569,tests.integ.modin.binary.test_timedelta,test_timedelta_mod_with_negative_timedelta[-3-2-1--1],"AssertionError: Series are different Series values are different (100.0 %) [index]: [0] [left]: [1] [right]: [-1]",failed -7474,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_0[ndarray0-truediv],"ValueError: Unable to coerce to Series, length must be 3: given 2",failed -7475,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[False-6--7],IndexError: positional indexers are out-of-bounds,failed -7479,tests.integ.modin.binary.test_timedelta,test_divide_timedelta_by_zero_timedelta,Failed: DID NOT RAISE ,failed -7482,tests.integ.modin.frame.test_iloc,test_df_iloc_get_key_bool[col-index with name-key1],IndexError: positional indexers are out-of-bounds,failed -7483,tests.integ.modin.binary.test_timedelta,test_divide_timdelta_by_zero_integer,Failed: DID NOT RAISE ,failed -7485,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_0[ndarray0-rtruediv],"ValueError: Unable to coerce to Series, length must be 3: given 2",failed -7486,tests.integ.modin.binary.test_timedelta,test_floordiv_timedelta_by_zero_timedelta,Failed: DID NOT RAISE ,failed -7489,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[False-6-6],IndexError: positional indexers are out-of-bounds,failed -7490,tests.integ.modin.binary.test_timedelta,test_floordiv_timedelta_by_zero_integer,Failed: DID NOT RAISE ,failed -7494,tests.integ.modin.binary.test_timedelta,test_mod_timedelta_by_zero_timedelta,"AssertionError: Series are different +6570,tests.integ.modin.binary.test_binary_op,test_binary_comparison_between_non_supported_types[le-data4-1672560000.0],AssertionError: exception type does not match with expected type ,failed +6573,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice[False--1-4-10],"AssertionError: DataFrame are different + +DataFrame shape mismatch +[left]: (2, 7) +[right]: (3, 7)",failed +6582,tests.integ.modin.binary.test_timedelta,test_divide_timedelta_by_zero_timedelta,Failed: DID NOT RAISE ,failed +6586,tests.integ.modin.binary.test_timedelta,test_divide_timdelta_by_zero_integer,Failed: DID NOT RAISE ,failed +6591,tests.integ.modin.binary.test_timedelta,test_floordiv_timedelta_by_zero_timedelta,Failed: DID NOT RAISE ,failed +6594,tests.integ.modin.frame.test_loc,test_df_loc_get_reversed_key_slice_with_unordered_nullable_index[last--9-4-None],KeyError: 13,failed +6596,tests.integ.modin.binary.test_timedelta,test_floordiv_timedelta_by_zero_integer,Failed: DID NOT RAISE ,failed +6598,tests.integ.modin.binary.test_timedelta,test_mod_timedelta_by_zero_timedelta,"AssertionError: Series are different Series values are different (100.0 %) [index]: [0] [left]: [1] [right]: [-9223372036854775808]",failed -7510,tests.integ.modin.binary.test_timedelta,test_comparison_with_null[eq],"AssertionError: DataFrame.iloc[:, 0] (column name=""0"") are different +6608,tests.integ.modin.binary.test_binary_op,test_binary_logic_operations_between_series_and_list_like[index-__or__],"ValueError: Unable to coerce to Series, length must be 1: given 6",failed +6612,tests.integ.modin.frame.test_loc,test_df_loc_get_reversed_key_slice_with_unordered_nullable_index[last--9-4-1],KeyError: 13,failed +6616,tests.integ.modin.binary.test_timedelta,test_comparison_with_null[eq],"AssertionError: DataFrame.iloc[:, 0] (column name=""0"") are different DataFrame.iloc[:, 0] (column name=""0"") values are different (100.0 %) [index]: [0, 1] [left]: [False, False] [right]: [None, None]",failed -7512,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_0[ndarray0-floordiv],"ValueError: Unable to coerce to Series, length must be 3: given 2",failed -7515,tests.integ.modin.binary.test_timedelta,test_comparison_with_null[ne],"AssertionError: DataFrame.iloc[:, 0] (column name=""0"") are different +6618,tests.integ.modin.binary.test_timedelta,test_comparison_with_null[ne],"AssertionError: DataFrame.iloc[:, 0] (column name=""0"") are different DataFrame.iloc[:, 0] (column name=""0"") values are different (100.0 %) [index]: [0, 1] [left]: [True, True] [right]: [None, None]",failed -7518,tests.integ.modin.binary.test_timedelta,test_comparison_with_null[lt],"AssertionError: DataFrame.iloc[:, 0] (column name=""0"") are different +6619,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice[False-2-1-None],"AssertionError: DataFrame are different + +DataFrame shape mismatch +[left]: (0, 7) +[right]: (1, 7)",failed +6620,tests.integ.modin.test_apply_snowpark_python_functions,test_apply_pass_base_as_column,"TypeError: 'LOG' expected Column or str, got: ",failed +6621,tests.integ.modin.binary.test_timedelta,test_comparison_with_null[lt],"AssertionError: DataFrame.iloc[:, 0] (column name=""0"") are different DataFrame.iloc[:, 0] (column name=""0"") values are different (100.0 %) [index]: [0, 1] [left]: [False, False] [right]: [None, None]",failed -7519,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[False-6--6],IndexError: positional indexers are out-of-bounds,failed -7522,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_0[ndarray0-rfloordiv],"ValueError: Unable to coerce to Series, length must be 3: given 2",failed -7524,tests.integ.modin.binary.test_timedelta,test_comparison_with_null[le],"AssertionError: DataFrame.iloc[:, 0] (column name=""0"") are different +6622,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice[False-2-1--1],"AssertionError: DataFrame are different + +DataFrame shape mismatch +[left]: (0, 7) +[right]: (1, 7)",failed +6623,tests.integ.modin.frame.test_loc,test_df_loc_get_reversed_key_slice_with_unordered_nullable_index[last--9-4-4],KeyError: 13,failed +6625,tests.integ.modin.binary.test_timedelta,test_comparison_with_null[le],"AssertionError: DataFrame.iloc[:, 0] (column name=""0"") are different DataFrame.iloc[:, 0] (column name=""0"") values are different (100.0 %) [index]: [0, 1] [left]: [False, False] [right]: [None, None]",failed -7527,tests.integ.modin.binary.test_timedelta,test_comparison_with_null[gt],"AssertionError: DataFrame.iloc[:, 0] (column name=""0"") are different +6626,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice[False-2-1-1],"AssertionError: DataFrame are different + +DataFrame shape mismatch +[left]: (0, 7) +[right]: (1, 7)",failed +6627,tests.integ.modin.binary.test_timedelta,test_comparison_with_null[gt],"AssertionError: DataFrame.iloc[:, 0] (column name=""0"") are different DataFrame.iloc[:, 0] (column name=""0"") values are different (100.0 %) [index]: [0, 1] [left]: [False, False] [right]: [None, None]",failed -7528,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[False-6--8],IndexError: index -8 is out of bounds for axis 0 with size 7,failed -7531,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_0[ndarray0-mod],"ValueError: Unable to coerce to Series, length must be 3: given 2",failed -7533,tests.integ.modin.binary.test_timedelta,test_comparison_with_null[ge],"AssertionError: DataFrame.iloc[:, 0] (column name=""0"") are different +6630,tests.integ.modin.binary.test_timedelta,test_comparison_with_null[ge],"AssertionError: DataFrame.iloc[:, 0] (column name=""0"") are different DataFrame.iloc[:, 0] (column name=""0"") values are different (100.0 %) [index]: [0, 1] [left]: [False, False] [right]: [None, None]",failed -7537,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_0[ndarray0-rmod],"ValueError: Unable to coerce to Series, length must be 3: given 2",failed -7540,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[False-6-7],IndexError: positional indexers are out-of-bounds,failed -7542,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_0[ndarray0-pow],"ValueError: Unable to coerce to Series, length must be 3: given 2",failed -7544,tests.integ.modin.frame.test_loc,test_df_loc_set_key_slice[True-2-None-1],ValueError: Incompatible indexer with DataFrame,failed -7545,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[False-6-52879115],IndexError: positional indexers are out-of-bounds,failed -7546,tests.integ.modin.binary.test_timedelta,test_eq_non_null,"AssertionError: DataFrame.iloc[:, 1] (column name=""1"") are different +6632,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice[False-2-4-None],"AssertionError: DataFrame are different + +DataFrame shape mismatch +[left]: (2, 7) +[right]: (3, 7)",failed +6633,tests.integ.modin.binary.test_binary_op,test_binary_logic_operations_between_series_and_list_like[index-__ror__],"ValueError: Unable to coerce to Series, length must be 1: given 6",failed +6634,tests.integ.modin.frame.test_loc,test_df_loc_get_reversed_key_slice_with_unordered_nullable_index[last--9-4-6],KeyError: 13,failed +6636,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice[False-2-4--1],"AssertionError: DataFrame are different + +DataFrame shape mismatch +[left]: (2, 7) +[right]: (3, 7)",failed +6637,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice[False-2-4-1],"AssertionError: DataFrame are different + +DataFrame shape mismatch +[left]: (1, 7) +[right]: (2, 7)",failed +6639,tests.integ.modin.binary.test_binary_op,test_binary_logic_operations_between_series_and_list_like[index-__and__],"ValueError: Unable to coerce to Series, length must be 1: given 6",failed +6640,tests.integ.modin.frame.test_loc,test_df_loc_get_reversed_key_slice_with_unordered_nullable_index[last--9-6-None],KeyError: 15,failed +6641,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice[False-2-4-4],"AssertionError: DataFrame are different + +DataFrame shape mismatch +[left]: (0, 7) +[right]: (1, 7)",failed +6642,tests.integ.modin.binary.test_timedelta,test_eq_non_null,"AssertionError: DataFrame.iloc[:, 1] (column name=""1"") are different DataFrame.iloc[:, 1] (column name=""1"") values are different (50.0 %) [index]: [0, 1] [left]: [False, False] [right]: [None, False]",failed -7549,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_0[ndarray0-rpow],"ValueError: Unable to coerce to Series, length must be 3: given 2",failed -7550,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[False-6--9028751],IndexError: index -9028751 is out of bounds for axis 0 with size 7,failed -7551,tests.integ.modin.binary.test_timedelta,test_neq_non_null,"AssertionError: DataFrame.iloc[:, 1] (column name=""1"") are different +6643,tests.integ.modin.test_apply_snowpark_python_functions,test_apply_snowpark_python_function_not_implemented,"TypeError: 'DESC' expected Column or str, got: ",failed +6646,tests.integ.modin.binary.test_timedelta,test_neq_non_null,"AssertionError: DataFrame.iloc[:, 1] (column name=""1"") are different DataFrame.iloc[:, 1] (column name=""1"") values are different (50.0 %) [index]: [0, 1] [left]: [True, True] [right]: [None, True]",failed -7553,tests.integ.modin.frame.test_aggregate,test_agg_axis_1_missing_label,KeyError: 'Column(s) [2] do not exist',failed -7559,tests.integ.modin.frame.test_aggregate,test_agg_numeric_only_negative[max],Failed: DID NOT RAISE ,failed -7560,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_0[index0-add],"ValueError: Unable to coerce to Series, length must be 3: given 2",failed -7564,tests.integ.modin.frame.test_aggregate,test_agg_numeric_only_negative[min],Failed: DID NOT RAISE ,failed -7566,tests.integ.modin.frame.test_aggregate,test_agg_numeric_only_negative[sum],Failed: DID NOT RAISE ,failed -7567,tests.integ.modin.frame.test_aggregate,test_agg_numeric_only_negative[std],Failed: DID NOT RAISE ,failed -7568,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_0[index0-radd],"ValueError: Unable to coerce to Series, length must be 3: given 2",failed -7572,tests.integ.modin.frame.test_aggregate,test_agg_numeric_only_negative[var],Failed: DID NOT RAISE ,failed -7573,tests.integ.modin.frame.test_aggregate,test_agg_numeric_only_negative[mean],Failed: DID NOT RAISE ,failed -7575,tests.integ.modin.frame.test_aggregate,test_agg_numeric_only_negative[median],Failed: DID NOT RAISE ,failed -7576,tests.integ.modin.binary.test_timedelta,test_timedelta_timedelta_null_arithmetic_invalid_in_pandas[div],TypeError: unsupported operand type(s) for /: 'numpy.ndarray' and 'NaTType',failed -7577,tests.integ.modin.frame.test_loc,test_df_loc_set_key_slice[True-2--1-1],ValueError: Incompatible indexer with DataFrame,failed -7578,tests.integ.modin.frame.test_aggregate,test_agg_numeric_only_negative[count],Failed: DID NOT RAISE ,failed -7591,tests.integ.modin.binary.test_timedelta,test_timedelta_timedelta_null_arithmetic_invalid_in_pandas[rdiv],TypeError: Cannot divide NaTType by TimedeltaArray,failed -7593,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_0[index0-sub],"ValueError: Unable to coerce to Series, length must be 3: given 2",failed -7601,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_0[index0-rsub],"ValueError: Unable to coerce to Series, length must be 3: given 2",failed -7607,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_0[index0-mul],"ValueError: Unable to coerce to Series, length must be 3: given 2",failed -7609,tests.integ.modin.frame.test_aggregate,test_agg_min_count_negative[TEST],TypeError: '>' not supported between instances of 'str' and 'int',failed -7610,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[False--6--8],IndexError: index -8 is out of bounds for axis 0 with size 7,failed -7611,tests.integ.modin.frame.test_aggregate,test_agg_min_count_negative[5.3],Failed: DID NOT RAISE ,failed -7612,tests.integ.modin.frame.test_aggregate,test_agg_min_count_negative[5.0],Failed: DID NOT RAISE ,failed -7613,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_0[index0-rmul],"ValueError: Unable to coerce to Series, length must be 3: given 2",failed -7615,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[False--6-7],IndexError: positional indexers are out-of-bounds,failed -7616,tests.integ.modin.frame.test_iloc,test_df_iloc_get_key_bool[col-index with name-key3],IndexError: positional indexers are out-of-bounds,failed -7617,tests.integ.modin.frame.test_aggregate,test_named_agg_not_supported_axis_1,"AssertionError: One of the passed functions has an invalid type: : None, only callable or string is acceptable.",failed -7618,tests.integ.modin.binary.test_timedelta,test_timedelta_timedelta_null_arithmetic_invalid_in_pandas[mod],TypeError: unsupported operand type(s) for //: 'numpy.ndarray' and 'NaTType',failed -7619,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_0[index0-truediv],"ValueError: Unable to coerce to Series, length must be 3: given 2",failed -7620,tests.integ.modin.frame.test_loc,test_df_loc_set_key_slice[True-2-1-1],ValueError: Incompatible indexer with DataFrame,failed -7622,tests.integ.modin.frame.test_aggregate,test_aggregate_unsupported_aggregation_SNOW_1526422[user_defined_function],Failed: DID NOT RAISE ,failed -7624,tests.integ.modin.frame.test_aggregate,test_aggregate_unsupported_aggregation_SNOW_1526422[list_with_user_defined_function_and_string],Failed: DID NOT RAISE ,failed -7625,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_0[index0-rtruediv],"ValueError: Unable to coerce to Series, length must be 3: given 2",failed -7627,tests.integ.modin.frame.test_aggregate,test_aggregate_unsupported_aggregation_SNOW_1526422[tuple_with_user_defined_function_and_string],Failed: DID NOT RAISE ,failed -7630,tests.integ.modin.binary.test_timedelta,test_timedelta_timedelta_null_arithmetic_invalid_in_pandas[rmod],TypeError: Cannot divide NaTType by TimedeltaArray,failed -7631,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_0[index0-floordiv],"ValueError: Unable to coerce to Series, length must be 3: given 2",failed -7632,tests.integ.modin.frame.test_aggregate,test_aggregate_unsupported_aggregation_SNOW_1526422[set_with_user_defined_function_and_string],Failed: DID NOT RAISE ,failed -7635,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[False--6-52879115],IndexError: positional indexers are out-of-bounds,failed -7638,tests.integ.modin.binary.test_timedelta,test_timedelta_timedelta_null_arithmetic_invalid_in_pandas[floordiv],TypeError: unsupported operand type(s) for //: 'numpy.ndarray' and 'NaTType',failed -7639,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[False--6--9028751],IndexError: index -9028751 is out of bounds for axis 0 with size 7,failed -7644,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[False--8-0],IndexError: index -8 is out of bounds for axis 0 with size 7,failed -7645,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_0[index0-rfloordiv],"ValueError: Unable to coerce to Series, length must be 3: given 2",failed -7649,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[False--8--3],IndexError: index -8 is out of bounds for axis 0 with size 7,failed -7650,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_0[index0-mod],"ValueError: Unable to coerce to Series, length must be 3: given 2",failed -7653,tests.integ.modin.frame.test_aggregate,test_aggregate_unsupported_aggregation_SNOW_1526422[tuple_with_builtins_and_native_pandas_function],ValueError: cannot combine transform and aggregation operations,failed -7655,tests.integ.modin.frame.test_aggregate,test_aggregate_unsupported_aggregation_SNOW_1526422[dict],Failed: DID NOT RAISE ,failed -7656,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[False--8-4],IndexError: index -8 is out of bounds for axis 0 with size 7,failed -7657,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_0[index0-rmod],"ValueError: Unable to coerce to Series, length must be 3: given 2",failed -7660,tests.integ.modin.frame.test_aggregate,test_aggregate_unsupported_aggregation_SNOW_1526422[named_agg0],TypeError: NamedAgg.__new__() missing 1 required positional argument: 'aggfunc',failed -7662,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_0[index0-pow],"ValueError: Unable to coerce to Series, length must be 3: given 2",failed -7663,tests.integ.modin.binary.test_timedelta,test_timedelta_timedelta_null_arithmetic_invalid_in_pandas[rfloordiv],TypeError: Cannot divide NaTType by TimedeltaArray,failed -7664,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[False--8--7],IndexError: index -8 is out of bounds for axis 0 with size 7,failed -7667,tests.integ.modin.frame.test_aggregate,test_aggregate_unsupported_aggregation_SNOW_1526422[named_agg1],TypeError: NamedAgg.__new__() missing 1 required positional argument: 'aggfunc',failed -7671,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_0[index0-rpow],"ValueError: Unable to coerce to Series, length must be 3: given 2",failed -7673,tests.integ.modin.frame.test_aggregate,test_aggregate_unsupported_aggregation_SNOW_1526422[named_agg2],TypeError: NamedAgg.__new__() missing 1 required positional argument: 'aggfunc',failed -7677,tests.integ.modin.frame.test_loc,test_df_loc_set_key_slice[True--2-None-4],ValueError: Incompatible indexer with DataFrame,failed -7680,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_0[index_with_name0-add],"ValueError: Unable to coerce to Series, length must be 3: given 2",failed -7683,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[False--8-6],IndexError: index -8 is out of bounds for axis 0 with size 7,failed -7684,tests.integ.modin.frame.test_aggregate,test_named_agg_passed_in_via_star_kwargs,TypeError: NamedAgg.__new__() missing 1 required positional argument: 'aggfunc',failed -7686,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_0[index_with_name0-radd],"ValueError: Unable to coerce to Series, length must be 3: given 2",failed -7694,tests.integ.modin.frame.test_loc,test_df_loc_set_key_slice[True--2--1-None],ValueError: Incompatible indexer with DataFrame,failed -7696,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[False--8--6],IndexError: index -8 is out of bounds for axis 0 with size 7,failed -7702,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[False--8--8],IndexError: index -8 is out of bounds for axis 0 with size 7,failed -7704,tests.integ.modin.frame.test_loc,test_df_loc_set_key_slice[True--2--1--1],ValueError: Incompatible indexer with DataFrame,failed -7706,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_0[index_with_name0-sub],"ValueError: Unable to coerce to Series, length must be 3: given 2",failed -7709,tests.integ.modin.frame.test_iloc,test_df_iloc_get_scalar_row_and_scalar_col[False--8-7],IndexError: index -8 is out of bounds for axis 0 with size 7,failed -7711,tests.integ.modin.frame.test_iloc,test_df_iloc_get_key_bool[col-index with name-key5],IndexError: positional indexers are out-of-bounds,failed -7714,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_0[index_with_name0-rsub],"ValueError: Unable to coerce to Series, length must be 3: given 2",failed -7716,tests.integ.modin.frame.test_loc,test_df_loc_set_key_slice[True--2--1-1],ValueError: Incompatible indexer with DataFrame,failed -7722,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_0[index_with_name0-mul],"ValueError: Unable to coerce to Series, length must be 3: given 2",failed -7726,tests.integ.modin.frame.test_iloc,test_df_iloc_get_key_bool_series_with_1k_shape[key0],pandas.errors.IndexingError: Unalignable boolean Series provided as indexer (index of the boolean Series and of the indexed object do not match).,failed -7733,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_0[index_with_name0-rmul],"ValueError: Unable to coerce to Series, length must be 3: given 2",failed -7745,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_0[index_with_name0-truediv],"ValueError: Unable to coerce to Series, length must be 3: given 2",failed -7746,tests.integ.modin.frame.test_iloc,test_df_iloc_get_key_bool_series_with_1k_shape[key1],pandas.errors.IndexingError: Unalignable boolean Series provided as indexer (index of the boolean Series and of the indexed object do not match).,failed -7756,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_0[index_with_name0-rtruediv],"ValueError: Unable to coerce to Series, length must be 3: given 2",failed -7759,tests.integ.modin.binary.test_timedelta,test_valid_arithmetic_between_possibly_negative_timedeltas[timedelta_scalar3-rfloordiv],reason: precision difference in snowflake,xfailed -7764,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_0[index_with_name0-floordiv],"ValueError: Unable to coerce to Series, length must be 3: given 2",failed -7781,tests.integ.modin.frame.test_loc,test_df_loc_set_key_slice[True--2-4-4],ValueError: Incompatible indexer with DataFrame,failed -7785,tests.integ.modin.binary.test_timedelta,test_valid_arithmetic_between_possibly_negative_timedeltas[timedelta_scalar4-rfloordiv],reason: precision difference in snowflake,xfailed -7787,tests.integ.modin.frame.test_iloc,test_df_iloc_get_key_bool_series_with_1k_shape[key2],pandas.errors.IndexingError: Unalignable boolean Series provided as indexer (index of the boolean Series and of the indexed object do not match).,failed -7791,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_0[index_with_name0-rfloordiv],"ValueError: Unable to coerce to Series, length must be 3: given 2",failed -7801,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_0[index_with_name0-mod],"ValueError: Unable to coerce to Series, length must be 3: given 2",failed -7810,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_0[index_with_name0-rmod],"ValueError: Unable to coerce to Series, length must be 3: given 2",failed -7812,tests.integ.modin.frame.test_loc,test_df_loc_set_general_col_key_type_with_duplicate_columns[series-col_key6],ValueError: cannot reindex on an axis with duplicate labels,failed -7815,tests.integ.modin.binary.test_timedelta,test_valid_arithmetic_between_possibly_negative_timedeltas[timedelta_scalar5-rfloordiv],reason: precision difference in snowflake,xfailed -7816,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_0[index_with_name0-pow],"ValueError: Unable to coerce to Series, length must be 3: given 2",failed -7826,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_0[index_with_name0-rpow],"ValueError: Unable to coerce to Series, length must be 3: given 2",failed -7832,tests.integ.modin.frame.test_loc,test_df_loc_set_general_col_key_type_with_duplicate_columns[series-col_key8],"AssertionError: DataFrame.iloc[:, 0] (column name=""A"") are different +6656,tests.integ.modin.binary.test_binary_op,test_binary_logic_operations_between_series_and_list_like[index-__rand__],"ValueError: Unable to coerce to Series, length must be 1: given 6",failed +6664,tests.integ.modin.binary.test_timedelta,test_timedelta_timedelta_null_arithmetic_invalid_in_pandas[div],TypeError: unsupported operand type(s) for /: 'numpy.ndarray' and 'NaTType',failed +6665,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice[False--2--1-None],"AssertionError: DataFrame are different -DataFrame.iloc[:, 0] (column name=""A"") values are different (100.0 %) -[index]: [0, 1, 2] -[left]: [nan, 7.0, 4.0] -[right]: [1.0, 4.0, 7.0] -At positional index 0, first diff: nan != 1.0",failed -7836,tests.integ.modin.frame.test_loc,test_df_loc_set_key_slice[True--2-10-4],ValueError: Incompatible indexer with DataFrame,failed -7837,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_0[list1-add],"ValueError: Unable to coerce to Series, length must be 3: given 4",failed -7838,tests.integ.modin.frame.test_iloc,test_df_iloc_get_key_numeric[row-list-key4],IndexError: index 12 is out of bounds for axis 0 with size 7,failed -7846,tests.integ.modin.binary.test_timedelta,test_valid_arithmetic_between_possibly_negative_timedeltas[timedelta_scalar6-rfloordiv],reason: precision difference in snowflake,xfailed -7847,tests.integ.modin.frame.test_iloc,test_df_iloc_get_key_numeric[row-list-key5],"ValueError: -Location based indexing can only have [integer, integer slice (START point is -INCLUDED, END point is EXCLUDED), listlike of integers, boolean array] types.",failed -7848,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_0[list1-radd],"ValueError: Unable to coerce to Series, length must be 3: given 4",failed -7852,tests.integ.modin.frame.test_loc,test_df_loc_set_general_col_key_type_with_duplicate_columns[series-col_key10],AssertionError: exception type does not match with expected type ,failed -7853,tests.integ.modin.frame.test_iloc,test_df_iloc_get_key_numeric[row-list-key6],"ValueError: -Location based indexing can only have [integer, integer slice (START point is -INCLUDED, END point is EXCLUDED), listlike of integers, boolean array] types.",failed -7858,tests.integ.modin.frame.test_loc,test_df_loc_set_key_slice[True-9-None-None],ValueError: Incompatible indexer with DataFrame,failed -7863,tests.integ.modin.frame.test_iloc,test_df_iloc_get_key_numeric[row-series-key0],"ValueError: -Location based indexing can only have [integer, integer slice (START point is -INCLUDED, END point is EXCLUDED), listlike of integers, boolean array] types.",failed -7872,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_0[list1-sub],"ValueError: Unable to coerce to Series, length must be 3: given 4",failed -7873,tests.integ.modin.binary.test_timedelta,test_valid_arithmetic_between_possibly_negative_timedeltas[timedelta_scalar7-rfloordiv],reason: precision difference in snowflake,xfailed -7876,tests.integ.modin.frame.test_loc,test_df_loc_set_key_slice[True-9-None-1],ValueError: Incompatible indexer with DataFrame,failed -7882,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_0[list1-rsub],"ValueError: Unable to coerce to Series, length must be 3: given 4",failed -7889,tests.integ.modin.frame.test_loc,test_df_loc_set_key_slice[True-9-None-4],ValueError: Incompatible indexer with DataFrame,failed -7890,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_0[list1-mul],"ValueError: Unable to coerce to Series, length must be 3: given 4",failed -7898,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_0[list1-rmul],"ValueError: Unable to coerce to Series, length must be 3: given 4",failed -7901,tests.integ.modin.frame.test_loc,test_df_loc_set_general_key_with_duplicate_rows[series-item1],ValueError: cannot reindex on an axis with duplicate labels,failed -7904,tests.integ.modin.frame.test_loc,test_df_loc_set_key_slice[True-9-None-10],ValueError: Incompatible indexer with DataFrame,failed -7907,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_0[list1-truediv],"ValueError: Unable to coerce to Series, length must be 3: given 4",failed -7915,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_0[list1-rtruediv],"ValueError: Unable to coerce to Series, length must be 3: given 4",failed -7925,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_0[list1-floordiv],"ValueError: Unable to coerce to Series, length must be 3: given 4",failed -7926,tests.integ.modin.frame.test_loc,test_df_loc_set_key_slice[True-9--1-None],ValueError: Incompatible indexer with DataFrame,failed -7933,tests.integ.modin.frame.test_iloc,test_df_iloc_get_key_numeric[row-series-key4],IndexError: index 12 is out of bounds for axis 0 with size 7,failed -7940,tests.integ.modin.frame.test_iloc,test_df_iloc_get_key_numeric[row-series-key5],"ValueError: -Location based indexing can only have [integer, integer slice (START point is -INCLUDED, END point is EXCLUDED), listlike of integers, boolean array] types.",failed -7941,tests.integ.modin.frame.test_loc,test_df_loc_get_key_bool[series-key4],pandas.errors.IndexingError: Unalignable boolean Series provided as indexer (index of the boolean Series and of the indexed object do not match).,failed -7949,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_0[list1-rfloordiv],"ValueError: Unable to coerce to Series, length must be 3: given 4",failed -7950,tests.integ.modin.frame.test_iloc,test_df_iloc_get_key_numeric[row-series-key6],"ValueError: -Location based indexing can only have [integer, integer slice (START point is -INCLUDED, END point is EXCLUDED), listlike of integers, boolean array] types.",failed -7958,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_0[list1-mod],"ValueError: Unable to coerce to Series, length must be 3: given 4",failed -7963,tests.integ.modin.frame.test_loc,test_df_loc_set_key_slice[True-9--1-1],ValueError: Incompatible indexer with DataFrame,failed -7964,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_0[list1-rmod],"ValueError: Unable to coerce to Series, length must be 3: given 4",failed -7969,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_0[list1-pow],"ValueError: Unable to coerce to Series, length must be 3: given 4",failed -7972,tests.integ.modin.frame.test_loc,test_df_loc_set_key_slice[True-9--1-4],ValueError: Incompatible indexer with DataFrame,failed -7976,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_0[list1-rpow],"ValueError: Unable to coerce to Series, length must be 3: given 4",failed -7980,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_0[ndarray1-add],"ValueError: Unable to coerce to Series, length must be 3: given 4",failed -7981,tests.integ.modin.frame.test_loc,test_df_loc_set_key_slice[True-9--1-10],ValueError: Incompatible indexer with DataFrame,failed -7986,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_0[ndarray1-radd],"ValueError: Unable to coerce to Series, length must be 3: given 4",failed -7988,tests.integ.modin.frame.test_loc,test_df_loc_set_key_slice[True-9-1-None],ValueError: Incompatible indexer with DataFrame,failed -8001,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_0[ndarray1-sub],"ValueError: Unable to coerce to Series, length must be 3: given 4",failed -8003,tests.integ.modin.frame.test_loc,test_df_loc_set_key_slice[True-9-1-1],ValueError: Incompatible indexer with DataFrame,failed -8006,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_0[ndarray1-rsub],"ValueError: Unable to coerce to Series, length must be 3: given 4",failed -8011,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_0[ndarray1-mul],"ValueError: Unable to coerce to Series, length must be 3: given 4",failed -8012,tests.integ.modin.frame.test_loc,test_df_loc_set_key_slice[True-9-1-4],ValueError: Incompatible indexer with DataFrame,failed -8017,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_0[ndarray1-rmul],"ValueError: Unable to coerce to Series, length must be 3: given 4",failed -8033,tests.integ.modin.frame.test_loc,test_df_loc_set_key_slice[True-9-1-10],ValueError: Incompatible indexer with DataFrame,failed -8035,tests.integ.modin.frame.test_loc,test_df_loc_set_series_and_list_like_row_key_negative[list],KeyError: array([3]),failed -8040,tests.integ.modin.frame.test_loc,test_df_loc_set_key_slice[True-9-4-None],ValueError: Incompatible indexer with DataFrame,failed -8050,tests.integ.modin.test_dtype_mapping,float)-expected_dtype12-expected_to_pandas_dtype12-expected_to_pandas12],"AssertionError: unexpected dtypes [dtype('float64')], expected [object] -assert False",failed -8053,tests.integ.modin.frame.test_loc,test_df_loc_set_key_slice[True-9-4-1],ValueError: Incompatible indexer with DataFrame,failed -8061,tests.integ.modin.frame.test_loc,test_df_loc_set_general_col_key_type[list-row_key0-col_key6],"AssertionError: DataFrame are different +DataFrame shape mismatch +[left]: (3, 7) +[right]: (4, 7)",failed +6669,tests.integ.modin.frame.test_loc,test_df_loc_get_reversed_key_slice_with_unordered_nullable_index[last--9-6-1],KeyError: 15,failed +6670,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice[False--2--1-4],"AssertionError: DataFrame are different DataFrame shape mismatch -[left]: (3, 8) -[right]: (3, 4)",failed -8064,tests.integ.modin.frame.test_iloc,test_df_iloc_get_key_numeric[row-index-key1],"ValueError: -Location based indexing can only have [integer, integer slice (START point is -INCLUDED, END point is EXCLUDED), listlike of integers, boolean array] types.",failed -8065,tests.integ.modin.frame.test_loc,test_df_loc_set_key_slice[True-9-4-4],ValueError: Incompatible indexer with DataFrame,failed -8075,tests.integ.modin.frame.test_loc,test_df_loc_set_key_slice[True-9-4-10],ValueError: Incompatible indexer with DataFrame,failed -8086,tests.integ.modin.frame.test_loc,test_df_loc_set_general_col_key_type[list-row_key0-col_key8],"AssertionError: DataFrame.iloc[:, 0] (column name=""D"") are different +[left]: (2, 7) +[right]: (3, 7)",failed +6672,tests.integ.modin.binary.test_timedelta,test_timedelta_timedelta_null_arithmetic_invalid_in_pandas[rdiv],TypeError: Cannot divide NaTType by TimedeltaArray,failed +6673,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice[False--2--1-10],"AssertionError: DataFrame are different -DataFrame.iloc[:, 0] (column name=""D"") values are different (66.66667 %) -[index]: [0, 1, 2] -[left]: [nan, 4.0, nan] -[right]: [1.0, 4.0, 7.0] -At positional index 0, first diff: nan != 1.0",failed -8088,tests.integ.modin.frame.test_set_index,test_set_index_timedelta_index[frame_of_ints],"TypeError: The parameter ""keys"" may be a column key, one-dimensional array, or a list containing only valid column keys and one-dimensional arrays. Received column of type ",failed -8089,tests.integ.modin.frame.test_loc,test_df_loc_set_key_slice[True-9-10-None],ValueError: Incompatible indexer with DataFrame,failed -8097,tests.integ.modin.frame.test_loc,test_df_loc_set_general_col_key_type[list-row_key0-col_key9],"KeyError: array(['1', '2'], dtype=',failed -8145,tests.integ.modin.frame.test_nlargest_nsmallest,test_nlargest_nsmallest_all_keep_not_implemented[nsmallest],Failed: DID NOT RAISE ,failed -8146,tests.integ.modin.frame.test_loc,test_df_loc_set_general_col_key_type[list-row_key1-col_key6],"AssertionError: DataFrame are different +DataFrame shape mismatch +[left]: (0, 7) +[right]: (1, 7)",failed +6681,tests.integ.modin.binary.test_binary_op,test_binary_logic_operations_between_series_and_list_like[index_with_name-__ror__],"ValueError: Unable to coerce to Series, length must be 1: given 6",failed +6682,tests.integ.modin.frame.test_loc,test_df_loc_get_reversed_key_slice_with_unordered_nullable_index[last--9-6-6],KeyError: 15,failed +6689,tests.integ.modin.binary.test_binary_op,test_binary_logic_operations_between_series_and_list_like[index_with_name-__and__],"ValueError: Unable to coerce to Series, length must be 1: given 6",failed +6693,tests.integ.modin.binary.test_timedelta,test_timedelta_timedelta_null_arithmetic_invalid_in_pandas[mod],TypeError: unsupported operand type(s) for //: 'numpy.ndarray' and 'NaTType',failed +6694,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice[False--2-1-4],"AssertionError: DataFrame are different DataFrame shape mismatch -[left]: (3, 8) -[right]: (3, 4)",failed -8150,tests.integ.modin.frame.test_loc,test_df_loc_set_key_slice[True-9-10-10],ValueError: Incompatible indexer with DataFrame,failed -8154,tests.integ.modin.frame.test_nlargest_nsmallest,test_nlargest_nsmallest_invalid_label[nlargest-None],AssertionError: exception type does not match with expected type ,failed -8160,tests.integ.modin.frame.test_set_index,test_set_index_timedelta_index[frame_of_ints_and_timedelta],"TypeError: The parameter ""keys"" may be a column key, one-dimensional array, or a list containing only valid column keys and one-dimensional arrays. Received column of type ",failed -8162,tests.integ.modin.frame.test_nlargest_nsmallest,test_nlargest_nsmallest_invalid_label[nsmallest-None],AssertionError: exception type does not match with expected type ,failed -8163,tests.integ.modin.frame.test_loc,test_df_loc_set_general_col_key_type[list-row_key1-col_key8],"AssertionError: DataFrame.iloc[:, 0] (column name=""D"") are different +[left]: (1, 7) +[right]: (2, 7)",failed +6696,tests.integ.modin.frame.test_loc,test_df_loc_get_reversed_key_slice_with_unordered_nullable_index[first--1-1-None],KeyError: 2,failed +6697,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice[False--2-1-10],"AssertionError: DataFrame are different -DataFrame.iloc[:, 0] (column name=""D"") values are different (100.0 %) -[index]: [0, 1, 2] -[left]: [nan, nan, nan] -[right]: [1.0, 4.0, 7.0] -At positional index 0, first diff: nan != 1.0",failed -8165,tests.integ.modin.frame.test_iloc,test_df_iloc_get_key_numeric[row-index-key4],"ValueError: -Location based indexing can only have [integer, integer slice (START point is -INCLUDED, END point is EXCLUDED), listlike of integers, boolean array] types.",failed -8166,tests.integ.modin.frame.test_loc,test_df_loc_set_key_slice[True--9-None-None],ValueError: Incompatible indexer with DataFrame,failed -8172,tests.integ.modin.frame.test_loc,test_df_loc_set_general_col_key_type[list-row_key1-col_key9],"KeyError: array(['1', '2'], dtype='",failed -8203,tests.integ.modin.frame.test_set_index,test_set_index_dup_column_name,"AssertionError: Regex pattern did not match. - Regex: ""The column label 'A' is not unique"" - Input: 'Index data must be 1-dimensional'",failed -8205,tests.integ.modin.frame.test_loc,test_df_loc_set_key_slice[True--9--1-None],ValueError: Incompatible indexer with DataFrame,failed -8206,tests.integ.modin.frame.test_nlargest_nsmallest,test_nlargest_nsmallest_non_numeric_types[nsmallest-data1],TypeError: '<' not supported between instances of 'str' and 'int',failed -8208,tests.integ.modin.frame.test_iloc,test_df_iloc_get_key_numeric[row-index-key6],"ValueError: -Location based indexing can only have [integer, integer slice (START point is -INCLUDED, END point is EXCLUDED), listlike of integers, boolean array] types.",failed -8210,tests.integ.modin.frame.test_loc,test_df_loc_set_general_col_key_type_with_duplicate_columns[list-col_key6],ValueError: cannot reindex on an axis with duplicate labels,failed -8214,tests.integ.modin.frame.test_iloc,test_df_iloc_get_key_numeric[row-ndarray-key0],"ValueError: -Location based indexing can only have [integer, integer slice (START point is -INCLUDED, END point is EXCLUDED), listlike of integers, boolean array] types.",failed -8217,tests.integ.modin.frame.test_loc,test_df_loc_set_key_slice[True--9--1--1],ValueError: Incompatible indexer with DataFrame,failed -8221,tests.integ.modin.frame.test_loc,test_df_loc_set_general_col_key_type_with_duplicate_columns[list-col_key8],"AssertionError: DataFrame.iloc[:, 0] (column name=""A"") are different +DataFrame shape mismatch +[left]: (1, 7) +[right]: (2, 7)",failed +6704,tests.integ.modin.binary.test_timedelta,test_timedelta_timedelta_null_arithmetic_invalid_in_pandas[rmod],TypeError: Cannot divide NaTType by TimedeltaArray,failed +6705,tests.integ.modin.frame.test_loc,test_df_loc_get_reversed_key_slice_with_unordered_nullable_index[first--1-1-1],KeyError: 2,failed +6706,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice[False--2-4-4],"AssertionError: DataFrame are different -DataFrame.iloc[:, 0] (column name=""A"") values are different (100.0 %) -[index]: [0, 1, 2] -[left]: [nan, 7.0, 4.0] -[right]: [1.0, 4.0, 7.0] -At positional index 0, first diff: nan != 1.0",failed -8228,tests.integ.modin.frame.test_loc,test_df_loc_set_key_slice[True--9--1-1],ValueError: Incompatible indexer with DataFrame,failed -8234,tests.integ.modin.frame.test_loc,test_df_loc_set_general_col_key_type_with_duplicate_columns[list-col_key10],AssertionError: exception type does not match with expected type ,failed -8240,tests.integ.modin.frame.test_loc,test_df_loc_set_key_slice[True--9--1-4],ValueError: Incompatible indexer with DataFrame,failed -8246,tests.integ.modin.frame.test_iloc,test_df_iloc_get_key_numeric[row-ndarray-key4],IndexError: index 12 is out of bounds for axis 0 with size 7,failed -8250,tests.integ.modin.frame.test_iloc,test_df_iloc_get_key_numeric[row-ndarray-key5],"ValueError: -Location based indexing can only have [integer, integer slice (START point is -INCLUDED, END point is EXCLUDED), listlike of integers, boolean array] types.",failed -8254,tests.integ.modin.frame.test_set_index,test_set_index_names[frame_of_ints],"TypeError: The parameter ""keys"" may be a column key, one-dimensional array, or a list containing only valid column keys and one-dimensional arrays. Received column of type ",failed -8256,tests.integ.modin.frame.test_iloc,test_df_iloc_get_key_numeric[row-ndarray-key6],"ValueError: -Location based indexing can only have [integer, integer slice (START point is -INCLUDED, END point is EXCLUDED), listlike of integers, boolean array] types.",failed -8257,tests.integ.modin.frame.test_loc,test_df_loc_set_key_slice[True--9-1-None],ValueError: Incompatible indexer with DataFrame,failed -8258,tests.integ.modin.frame.test_loc,test_df_loc_set_general_key_with_duplicate_rows[list-item1],ValueError: cannot reindex on an axis with duplicate labels,failed -8276,tests.integ.modin.frame.test_to_view,test_to_view_index[method-False-None-expected_index_columns2],"NotImplementedError: Modin supports the method DataFrame.to_view on the Snowflake backend, but not on the backend Pandas.",failed -8284,tests.integ.modin.frame.test_loc,test_df_loc_set_key_slice[True--9-1--1],ValueError: Incompatible indexer with DataFrame,failed -8290,tests.integ.modin.frame.test_loc,test_df_loc_get_key_bool[list-key5],IndexError: positional indexers are out-of-bounds,failed -8294,tests.integ.modin.frame.test_loc,test_df_loc_set_key_slice[True--9-1-1],ValueError: Incompatible indexer with DataFrame,failed -8299,tests.integ.modin.frame.test_loc,test_df_loc_set_key_slice[True--9-1-4],ValueError: Incompatible indexer with DataFrame,failed -8302,tests.integ.modin.frame.test_set_index,test_set_index_names[frame_of_ints_and_timedelta],"TypeError: The parameter ""keys"" may be a column key, one-dimensional array, or a list containing only valid column keys and one-dimensional arrays. Received column of type ",failed -8311,tests.integ.modin.frame.test_loc,test_df_loc_set_key_slice[True--9-4-None],ValueError: Incompatible indexer with DataFrame,failed -8319,tests.integ.modin.frame.test_loc,test_df_loc_set_key_slice[True--9-4--1],ValueError: Incompatible indexer with DataFrame,failed -8329,tests.integ.modin.frame.test_loc,test_df_loc_set_key_slice[True--9-4-1],ValueError: Incompatible indexer with DataFrame,failed -8333,tests.integ.modin.frame.test_to_view,test_to_view_index[method-False-index_labels3-expected_index_columns3],"NotImplementedError: Modin supports the method DataFrame.to_view on the Snowflake backend, but not on the backend Pandas.",failed -8338,tests.integ.modin.frame.test_loc,test_df_loc_set_series_and_list_like_row_key_negative[array],KeyError: array([3]),failed -8345,tests.integ.modin.frame.test_loc,test_df_loc_set_key_slice[True--9-4-4],ValueError: Incompatible indexer with DataFrame,failed -8374,tests.integ.modin.frame.test_nunique,test_dataframe_unique_dropna_negative,Failed: DID NOT RAISE ,failed -8377,tests.integ.modin.frame.test_nunique,test_dataframe_unique_axis1_not_implemented[True],Failed: DID NOT RAISE ,failed -8379,tests.integ.modin.frame.test_nunique,test_dataframe_unique_axis1_not_implemented[False],Failed: DID NOT RAISE ,failed -8382,tests.integ.modin.frame.test_loc,test_df_loc_set_general_col_key_type[array-row_key0-col_key6],"AssertionError: DataFrame are different +DataFrame shape mismatch +[left]: (0, 7) +[right]: (1, 7)",failed +6708,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice[False--2-4-10],"AssertionError: DataFrame are different DataFrame shape mismatch -[left]: (3, 8) -[right]: (3, 4)",failed -8389,tests.integ.modin.frame.test_loc,test_df_loc_set_key_slice[True--9-10-None],ValueError: Incompatible indexer with DataFrame,failed -8392,tests.integ.modin.frame.test_loc,test_df_loc_set_general_col_key_type[array-row_key0-col_key8],"AssertionError: DataFrame.iloc[:, 0] (column name=""D"") are different +[left]: (1, 7) +[right]: (2, 7)",failed +6709,tests.integ.modin.binary.test_binary_op,test_binary_logic_operations_between_series_and_list_like[index_with_name-__rand__],"ValueError: Unable to coerce to Series, length must be 1: given 6",failed +6712,tests.integ.modin.binary.test_timedelta,test_timedelta_timedelta_null_arithmetic_invalid_in_pandas[floordiv],TypeError: unsupported operand type(s) for //: 'numpy.ndarray' and 'NaTType',failed +6717,tests.integ.modin.binary.test_binary_op,test_binary_logic_operations_between_df_and_list_like[list-__or__],"ValueError: Unable to coerce to Series, length must be 2: given 3",failed +6720,tests.integ.modin.binary.test_binary_op,test_binary_logic_operations_between_df_and_list_like[list-__ror__],"ValueError: Unable to coerce to Series, length must be 2: given 3",failed +6723,tests.integ.modin.binary.test_timedelta,test_timedelta_timedelta_null_arithmetic_invalid_in_pandas[rfloordiv],TypeError: Cannot divide NaTType by TimedeltaArray,failed +6730,tests.integ.modin.binary.test_binary_op,test_binary_logic_operations_between_df_and_list_like[list-__and__],"ValueError: Unable to coerce to Series, length must be 2: given 3",failed +6738,tests.integ.modin.frame.test_loc,test_df_loc_get_reversed_key_slice_with_unordered_nullable_index[first--1-1-4],KeyError: 2,failed +6741,tests.integ.modin.binary.test_binary_op,test_binary_logic_operations_between_df_and_list_like[list-__rand__],"ValueError: Unable to coerce to Series, length must be 2: given 3",failed +6746,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice[False-9-1-None],"AssertionError: DataFrame are different -DataFrame.iloc[:, 0] (column name=""D"") values are different (66.66667 %) -[index]: [0, 1, 2] -[left]: [nan, 4.0, nan] -[right]: [1.0, 4.0, 7.0] -At positional index 0, first diff: nan != 1.0",failed -8396,tests.integ.modin.frame.test_iloc,test_df_iloc_get_key_numeric[row-index with name-key1],"ValueError: -Location based indexing can only have [integer, integer slice (START point is -INCLUDED, END point is EXCLUDED), listlike of integers, boolean array] types.",failed -8398,tests.integ.modin.frame.test_loc,test_df_loc_set_key_slice[True--9-10--1],ValueError: Incompatible indexer with DataFrame,failed -8403,tests.integ.modin.frame.test_loc,test_df_loc_set_general_col_key_type[array-row_key0-col_key9],"KeyError: array(['1', '2'], dtype=',) were emitted. -The list of emitted warnings is: [].",failed -8425,tests.integ.modin.frame.test_pct_change,test_pct_change_simple[rows-_NoDefault.no_default-0-nonulls],"Failed: DID NOT WARN. No warnings of type (,) were emitted. -The list of emitted warnings is: [].",failed -8429,tests.integ.modin.frame.test_loc,test_df_loc_set_key_slice[True--9-10-4],ValueError: Incompatible indexer with DataFrame,failed -8430,tests.integ.modin.frame.test_pct_change,test_pct_change_simple[rows-_NoDefault.no_default-1-nonulls],"Failed: DID NOT WARN. No warnings of type (,) were emitted. -The list of emitted warnings is: [].",failed -8432,tests.integ.modin.frame.test_loc,test_df_loc_set_general_col_key_type[array-row_key1-col_key1],"AssertionError: DataFrame.iloc[:, 3] (column name=""A"") are different +DataFrame shape mismatch +[left]: (0, 7) +[right]: (1, 7)",failed +6749,tests.integ.modin.binary.test_binary_op,test_binary_logic_operations_between_df_and_list_like[ndarray-__or__],"ValueError: Unable to coerce to Series, length must be 2: given 3",failed +6751,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice[False-9-1--1],"AssertionError: DataFrame are different -DataFrame.iloc[:, 3] (column name=""A"") values are different (100.0 %) -[index]: [0, 1, 2] -[left]: [1, 4, 7] -[right]: [nan, 7.0, 4.0]",failed -8433,tests.integ.modin.frame.test_apply,test_apply_axis1_with_dynamic_pivot_and_with_3rd_party_libraries_and_decorator[packages1-9],TODO: SNOW-1261830 need to support PandasSeriesType annotation.,xfailed -8437,tests.integ.modin.frame.test_pct_change,test_pct_change_simple[rows-_NoDefault.no_default-2-nonulls],"Failed: DID NOT WARN. No warnings of type (,) were emitted. -The list of emitted warnings is: [].",failed -8443,tests.integ.modin.frame.test_iloc,test_df_iloc_get_key_numeric[row-index with name-key2],"ValueError: -Location based indexing can only have [integer, integer slice (START point is -INCLUDED, END point is EXCLUDED), listlike of integers, boolean array] types.",failed -8445,tests.integ.modin.frame.test_loc,test_df_loc_set_general_col_key_type[array-row_key1-col_key2],"AssertionError: DataFrame.iloc[:, 4] (column name=""Y"") are different +DataFrame shape mismatch +[left]: (0, 7) +[right]: (1, 7)",failed +6754,tests.integ.modin.frame.test_loc,test_df_loc_get_reversed_key_slice_with_unordered_nullable_index[first--1-1-6],KeyError: 2,failed +6759,tests.integ.modin.binary.test_binary_op,test_binary_logic_operations_between_df_and_list_like[ndarray-__ror__],"ValueError: Unable to coerce to Series, length must be 2: given 3",failed +6761,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice[False-9-1-1],"AssertionError: DataFrame are different -DataFrame.iloc[:, 4] (column name=""Y"") values are different (100.0 %) -[index]: [0, 1, 2] -[left]: [1, 4, 7] -[right]: [nan, nan, nan]",failed -8448,tests.integ.modin.frame.test_to_view,test_to_view_index[function-True-None-expected_index_columns0],"NotImplementedError: Modin supports the method DataFrame.to_view on the Snowflake backend, but not on the backend Pandas.",failed -8458,tests.integ.modin.frame.test_loc,test_df_loc_set_item_df_single_value[key0-val_columns0-val_index0],ValueError: Length of values (1) does not match length of index (4),failed -8478,tests.integ.modin.frame.test_set_index,test_set_index_duplicate_label_in_dataframe_negative[True],"AssertionError: Regex pattern did not match. - Regex: ""The column label 'a' is not unique"" - Input: 'Index data must be 1-dimensional'",failed -8484,tests.integ.modin.frame.test_loc,test_df_loc_set_general_col_key_type[array-row_key1-col_key6],"AssertionError: DataFrame are different +DataFrame shape mismatch +[left]: (0, 7) +[right]: (1, 7)",failed +6763,tests.integ.modin.frame.test_loc,test_df_loc_get_reversed_key_slice_with_unordered_nullable_index[first--1-4-None],"AssertionError: DataFrame are different DataFrame shape mismatch -[left]: (3, 8) -[right]: (3, 4)",failed -8489,tests.integ.modin.frame.test_iloc,test_df_iloc_get_key_numeric[row-index with name-key3],"ValueError: -Location based indexing can only have [integer, integer slice (START point is -INCLUDED, END point is EXCLUDED), listlike of integers, boolean array] types.",failed -8492,tests.integ.modin.frame.test_set_index,test_set_index_duplicate_label_in_dataframe_negative[False],"AssertionError: Regex pattern did not match. - Regex: ""The column label 'a' is not unique"" - Input: 'Index data must be 1-dimensional'",failed -8494,tests.integ.modin.frame.test_loc,test_df_loc_set_item_df_single_value[key0-val_columns0-val_index1],ValueError: Length of values (1) does not match length of index (4),failed -8502,tests.integ.modin.frame.test_loc,test_df_loc_set_general_col_key_type[array-row_key1-col_key8],"AssertionError: DataFrame.iloc[:, 0] (column name=""D"") are different +[left]: (5, 8) +[right]: (1, 8)",failed +6770,tests.integ.modin.binary.test_binary_op,test_binary_logic_operations_between_df_and_list_like[ndarray-__and__],"ValueError: Unable to coerce to Series, length must be 2: given 3",failed +6772,tests.integ.modin.frame.test_loc,test_df_loc_get_reversed_key_slice_with_unordered_nullable_index[first--1-4-4],"AssertionError: DataFrame are different -DataFrame.iloc[:, 0] (column name=""D"") values are different (100.0 %) -[index]: [0, 1, 2] -[left]: [nan, nan, nan] -[right]: [1.0, 4.0, 7.0] -At positional index 0, first diff: nan != 1.0",failed -8506,tests.integ.modin.frame.test_apply,test_udfs_and_udtfs_with_snowpark_object_error_msg,Failed: DID NOT RAISE ,failed -8514,tests.integ.modin.frame.test_loc,test_df_loc_set_item_df_single_value[key0-val_columns1-val_index0],ValueError: Length of values (1) does not match length of index (4),failed -8518,tests.integ.modin.frame.test_loc,test_df_loc_set_general_col_key_type[array-row_key1-col_key9],"KeyError: array(['1', '2'], dtype=',) were emitted. -The list of emitted warnings is: [].",failed -8543,tests.integ.modin.frame.test_pct_change,test_pct_change_simple[columns-_NoDefault.no_default-0-nonulls],"Failed: DID NOT WARN. No warnings of type (,) were emitted. -The list of emitted warnings is: [].",failed -8545,tests.integ.modin.frame.test_loc,test_df_loc_set_item_df_single_value[A-val_columns0-val_index0],ValueError: Length of values (1) does not match length of index (4),failed -8548,tests.integ.modin.frame.test_pct_change,test_pct_change_simple[columns-_NoDefault.no_default-1-nonulls],"Failed: DID NOT WARN. No warnings of type (,) were emitted. -The list of emitted warnings is: [].",failed -8549,tests.integ.modin.frame.test_iloc,test_df_iloc_get_key_numeric[row-index with name-key4],"ValueError: -Location based indexing can only have [integer, integer slice (START point is -INCLUDED, END point is EXCLUDED), listlike of integers, boolean array] types.",failed -8552,tests.integ.modin.frame.test_pct_change,test_pct_change_simple[columns-_NoDefault.no_default-2-nonulls],"Failed: DID NOT WARN. No warnings of type (,) were emitted. -The list of emitted warnings is: [].",failed -8566,tests.integ.modin.frame.test_loc,test_df_loc_set_general_col_key_type_with_duplicate_columns[array-col_key6],ValueError: cannot reindex on an axis with duplicate labels,failed -8573,tests.integ.modin.frame.test_loc,test_df_loc_set_item_df_single_value[A-val_columns0-val_index1],ValueError: Length of values (1) does not match length of index (4),failed -8575,tests.integ.modin.frame.test_iloc,test_df_iloc_get_key_numeric[row-index with name-key5],"ValueError: -Location based indexing can only have [integer, integer slice (START point is -INCLUDED, END point is EXCLUDED), listlike of integers, boolean array] types.",failed -8576,tests.integ.modin.frame.test_set_index,test_set_index_pass_single_array[True-True-frame_of_ints-Index],"TypeError: The parameter ""keys"" may be a column key, one-dimensional array, or a list containing only valid column keys and one-dimensional arrays. Received column of type ",failed -8577,tests.integ.modin.frame.test_to_view,test_to_view_index[function-True-index_labels1-expected_index_columns1],"NotImplementedError: Modin supports the method DataFrame.to_view on the Snowflake backend, but not on the backend Pandas.",failed -8581,tests.integ.modin.frame.test_loc,test_df_loc_set_general_col_key_type_with_duplicate_columns[array-col_key8],"AssertionError: DataFrame.iloc[:, 0] (column name=""A"") are different - -DataFrame.iloc[:, 0] (column name=""A"") values are different (100.0 %) -[index]: [0, 1, 2] -[left]: [nan, 7.0, 4.0] -[right]: [1.0, 4.0, 7.0] -At positional index 0, first diff: nan != 1.0",failed -8595,tests.integ.modin.frame.test_apply_axis_0,test_axis_0_basic_types_without_type_hints[return_timedelta_scalar],[XPASS(strict)] SNOW-1619940,failed -8596,tests.integ.modin.frame.test_loc,test_df_loc_set_general_col_key_type_with_duplicate_columns[array-col_key10],AssertionError: exception type does not match with expected type ,failed -8598,tests.integ.modin.frame.test_loc,test_df_loc_set_item_df_single_value[A-val_columns1-val_index0],ValueError: Length of values (1) does not match length of index (4),failed -8604,tests.integ.modin.frame.test_iloc,test_df_iloc_get_key_numeric[row-index with name-key6],"ValueError: -Location based indexing can only have [integer, integer slice (START point is -INCLUDED, END point is EXCLUDED), listlike of integers, boolean array] types.",failed -8618,tests.integ.modin.frame.test_loc,test_df_loc_set_item_df_single_value[A-val_columns1-val_index1],ValueError: Length of values (1) does not match length of index (4),failed -8630,tests.integ.modin.frame.test_pct_change,test_axis_0_with_timedelta[None--1],TypeError: unsupported operand type for /: got timedelta64[ns],failed -8634,tests.integ.modin.frame.test_apply_axis_0,test_axis_0_basic_types_without_type_hints[apply_on_frame_with_timedelta_data_columns_returns_int],[XPASS(strict)] ,failed -8635,tests.integ.modin.frame.test_pct_change,test_axis_0_with_timedelta[None-0],TypeError: unsupported operand type for /: got timedelta64[ns],failed -8636,tests.integ.modin.frame.test_loc,test_df_loc_set_with_scalar_item[col_key4],SNOW-1321196: pandas 2.2.1 migration,xfailed -8640,tests.integ.modin.frame.test_pct_change,test_axis_0_with_timedelta[None-1],TypeError: unsupported operand type for /: got timedelta64[ns],failed -8642,tests.integ.modin.frame.test_loc,test_df_loc_set_general_key_with_duplicate_rows[array-item1],ValueError: cannot reindex on an axis with duplicate labels,failed -8644,tests.integ.modin.frame.test_apply_axis_0,test_axis_0_basic_types_with_type_hints[return_timedelta_scalar],[XPASS(strict)] SNOW-1619940,failed -8647,tests.integ.modin.frame.test_pct_change,test_axis_0_with_timedelta[None-2],TypeError: unsupported operand type for /: got timedelta64[ns],failed -8655,tests.integ.modin.frame.test_pct_change,test_axis_0_with_timedelta[_NoDefault.no_default--1],TypeError: unsupported operand type for /: got timedelta64[ns],failed -8657,tests.integ.modin.frame.test_iloc,test_df_iloc_get_key_numeric[col-list-key4],IndexError: index 12 is out of bounds for axis 0 with size 7,failed -8662,tests.integ.modin.frame.test_pct_change,test_axis_0_with_timedelta[_NoDefault.no_default-0],TypeError: unsupported operand type for /: got timedelta64[ns],failed -8665,tests.integ.modin.frame.test_set_index,test_set_index_pass_single_array[True-True-frame_of_ints_and_timedelta-Index],"TypeError: The parameter ""keys"" may be a column key, one-dimensional array, or a list containing only valid column keys and one-dimensional arrays. Received column of type ",failed -8666,tests.integ.modin.frame.test_to_view,test_to_view_index[function-False-None-expected_index_columns2],"NotImplementedError: Modin supports the method DataFrame.to_view on the Snowflake backend, but not on the backend Pandas.",failed -8669,tests.integ.modin.frame.test_pct_change,test_axis_0_with_timedelta[_NoDefault.no_default-1],TypeError: unsupported operand type for /: got timedelta64[ns],failed -8671,tests.integ.modin.frame.test_iloc,test_df_iloc_get_key_numeric[col-list-key5],"ValueError: -Location based indexing can only have [integer, integer slice (START point is -INCLUDED, END point is EXCLUDED), listlike of integers, boolean array] types.",failed -8677,tests.integ.modin.frame.test_pct_change,test_axis_0_with_timedelta[_NoDefault.no_default-2],TypeError: unsupported operand type for /: got timedelta64[ns],failed -8679,tests.integ.modin.frame.test_loc,test_df_loc_get_key_bool[array-key5],IndexError: positional indexers are out-of-bounds,failed -8680,tests.integ.modin.frame.test_iloc,test_df_iloc_get_key_numeric[col-list-key6],"ValueError: -Location based indexing can only have [integer, integer slice (START point is -INCLUDED, END point is EXCLUDED), listlike of integers, boolean array] types.",failed -8684,tests.integ.modin.frame.test_pct_change,test_axis_0_with_timedelta[ffill--1],TypeError: unsupported operand type for /: got timedelta64[ns],failed -8689,tests.integ.modin.frame.test_pct_change,test_axis_0_with_timedelta[ffill-0],TypeError: unsupported operand type for /: got timedelta64[ns],failed -8690,tests.integ.modin.frame.test_iloc,test_df_iloc_get_key_numeric[col-series-key0],"ValueError: -Location based indexing can only have [integer, integer slice (START point is -INCLUDED, END point is EXCLUDED), listlike of integers, boolean array] types.",failed -8692,tests.integ.modin.frame.test_loc,test_df_loc_set_with_column_wise_list_like_item[list--item2-A],"ValueError: could not broadcast input array from shape (4,) into shape (2, 1)",failed -8693,tests.integ.modin.frame.test_apply_axis_0,test_axis_0_basic_types_with_type_hints[apply_on_frame_with_timedelta_data_columns_returns_int],[XPASS(strict)] ,failed -8694,tests.integ.modin.frame.test_pct_change,test_axis_0_with_timedelta[ffill-1],TypeError: unsupported operand type for /: got timedelta64[ns],failed -8695,tests.integ.modin.frame.test_apply_axis_0,test_frame_with_timedelta_index,[XPASS(strict)] ,failed -8697,tests.integ.modin.frame.test_pct_change,test_axis_0_with_timedelta[ffill-2],TypeError: unsupported operand type for /: got timedelta64[ns],failed -8700,tests.integ.modin.frame.test_pct_change,test_axis_0_with_timedelta[pad--1],TypeError: unsupported operand type for /: got timedelta64[ns],failed -8708,tests.integ.modin.frame.test_loc,test_df_loc_set_with_column_wise_list_like_item[list--item2-X],"ValueError: could not broadcast input array from shape (4,) into shape (2, 1)",failed -8711,tests.integ.modin.frame.test_pct_change,test_axis_0_with_timedelta[pad-0],TypeError: unsupported operand type for /: got timedelta64[ns],failed -8712,tests.integ.modin.frame.test_loc,test_df_loc_set_with_column_wise_list_like_item[list--item2-col_key2],"ValueError: could not broadcast input array from shape (4,) into shape (2, 1)",failed -8716,tests.integ.modin.frame.test_pct_change,test_axis_0_with_timedelta[pad-1],TypeError: unsupported operand type for /: got timedelta64[ns],failed -8717,tests.integ.modin.frame.test_apply_axis_0,test_axis_0_return_dataframe_not_supported,"ValueError: If using all scalar values, you must pass an index",failed -8718,tests.integ.modin.frame.test_loc,test_df_loc_set_with_column_wise_list_like_item[list--item2-col_key3],"ValueError: could not broadcast input array from shape (4,) into shape (2, 1)",failed -8720,tests.integ.modin.frame.test_pct_change,test_axis_0_with_timedelta[pad-2],TypeError: unsupported operand type for /: got timedelta64[ns],failed -8721,tests.integ.modin.frame.test_apply_axis_0,test_result_type[reduce],Failed: DID NOT RAISE ,failed -8724,tests.integ.modin.frame.test_pct_change,test_axis_0_with_timedelta[backfill--1],TypeError: unsupported operand type for /: got timedelta64[ns],failed -8725,tests.integ.modin.frame.test_apply_axis_0,test_result_type[expand],Failed: DID NOT RAISE ,failed -8726,tests.integ.modin.frame.test_loc,test_df_loc_set_with_column_wise_list_like_item[list--item2-col_key4],"ValueError: could not broadcast input array from shape (4,) into shape (2, 1)",failed -8727,tests.integ.modin.frame.test_apply_axis_0,test_result_type[broadcast],Failed: DID NOT RAISE ,failed -8728,tests.integ.modin.frame.test_pct_change,test_axis_0_with_timedelta[backfill-0],TypeError: unsupported operand type for /: got timedelta64[ns],failed -8730,tests.integ.modin.frame.test_apply_axis_0,test_axis_1_apply_args_kwargs_with_snowpandas_object,Failed: DID NOT RAISE ,failed -8733,tests.integ.modin.frame.test_pct_change,test_axis_0_with_timedelta[backfill-1],TypeError: unsupported operand type for /: got timedelta64[ns],failed -8734,tests.integ.modin.frame.test_to_view,test_to_view_index[function-False-index_labels3-expected_index_columns3],"NotImplementedError: Modin supports the method DataFrame.to_view on the Snowflake backend, but not on the backend Pandas.",failed -8735,tests.integ.modin.frame.test_loc,test_df_loc_set_with_column_wise_list_like_item[list--item2-None],"ValueError: could not broadcast input array from shape (4,) into shape (2, 1)",failed -8737,tests.integ.modin.frame.test_pct_change,test_axis_0_with_timedelta[backfill-2],TypeError: unsupported operand type for /: got timedelta64[ns],failed -8739,tests.integ.modin.frame.test_loc,test_df_loc_set_series_and_list_like_row_key_negative[index],"KeyError: Index([3], dtype='int64')",failed -8742,tests.integ.modin.frame.test_iloc,test_df_iloc_get_key_numeric[col-series-key4],IndexError: index 12 is out of bounds for axis 0 with size 7,failed -8743,tests.integ.modin.frame.test_pct_change,test_axis_0_with_timedelta[bfill--1],TypeError: unsupported operand type for /: got timedelta64[ns],failed -8744,tests.integ.modin.frame.test_set_index,test_set_index_pass_single_array[True-False-frame_of_ints-Index],"TypeError: The parameter ""keys"" may be a column key, one-dimensional array, or a list containing only valid column keys and one-dimensional arrays. Received column of type ",failed -8750,tests.integ.modin.frame.test_pct_change,test_axis_0_with_timedelta[bfill-0],TypeError: unsupported operand type for /: got timedelta64[ns],failed -8754,tests.integ.modin.frame.test_iloc,test_df_iloc_get_key_numeric[col-series-key5],"ValueError: -Location based indexing can only have [integer, integer slice (START point is -INCLUDED, END point is EXCLUDED), listlike of integers, boolean array] types.",failed -8758,tests.integ.modin.frame.test_pct_change,test_axis_0_with_timedelta[bfill-1],TypeError: unsupported operand type for /: got timedelta64[ns],failed -8763,tests.integ.modin.frame.test_pct_change,test_axis_0_with_timedelta[bfill-2],TypeError: unsupported operand type for /: got timedelta64[ns],failed -8764,tests.integ.modin.frame.test_iloc,test_df_iloc_get_key_numeric[col-series-key6],"ValueError: -Location based indexing can only have [integer, integer slice (START point is -INCLUDED, END point is EXCLUDED), listlike of integers, boolean array] types.",failed -8769,tests.integ.modin.frame.test_pct_change,test_axis_1_with_timedelta_columns[None--1],TypeError: unsupported operand type for /: got timedelta64[ns],failed -8772,tests.integ.modin.frame.test_pct_change,test_axis_1_with_timedelta_columns[None-0],TypeError: unsupported operand type for /: got timedelta64[ns],failed -8774,tests.integ.modin.frame.test_loc,test_df_loc_set_with_column_wise_list_like_item[array--item2-A],"ValueError: could not broadcast input array from shape (4,) into shape (2, 1)",failed -8777,tests.integ.modin.frame.test_pct_change,test_axis_1_with_timedelta_columns[None-1],TypeError: unsupported operand type for /: got timedelta64[ns],failed -8779,tests.integ.modin.frame.test_pct_change,test_axis_1_with_timedelta_columns[None-2],TypeError: unsupported operand type for /: got timedelta64[ns],failed -8780,tests.integ.modin.frame.test_loc,test_df_loc_set_with_column_wise_list_like_item[array--item2-X],"ValueError: could not broadcast input array from shape (4,) into shape (2, 1)",failed -8790,tests.integ.modin.frame.test_pct_change,test_axis_1_with_timedelta_columns[_NoDefault.no_default--1],TypeError: unsupported operand type for /: got timedelta64[ns],failed -8791,tests.integ.modin.frame.test_loc,test_df_loc_set_with_column_wise_list_like_item[array--item2-col_key2],"ValueError: could not broadcast input array from shape (4,) into shape (2, 1)",failed -8793,tests.integ.modin.frame.test_pct_change,test_axis_1_with_timedelta_columns[_NoDefault.no_default-0],TypeError: unsupported operand type for /: got timedelta64[ns],failed -8795,tests.integ.modin.frame.test_loc,test_df_loc_set_with_column_wise_list_like_item[array--item2-col_key3],"ValueError: could not broadcast input array from shape (4,) into shape (2, 1)",failed -8796,tests.integ.modin.frame.test_to_view,test_to_view_multiindex[method],"NotImplementedError: Modin supports the method DataFrame.to_view on the Snowflake backend, but not on the backend Pandas.",failed -8797,tests.integ.modin.frame.test_pct_change,test_axis_1_with_timedelta_columns[_NoDefault.no_default-1],TypeError: unsupported operand type for /: got timedelta64[ns],failed -8798,tests.integ.modin.frame.test_loc,test_df_loc_set_with_column_wise_list_like_item[array--item2-col_key4],"ValueError: could not broadcast input array from shape (4,) into shape (2, 1)",failed -8799,tests.integ.modin.frame.test_pct_change,test_axis_1_with_timedelta_columns[_NoDefault.no_default-2],TypeError: unsupported operand type for /: got timedelta64[ns],failed -8802,tests.integ.modin.frame.test_apply_axis_0,test_axis_0_date_time_timestamp_type[data0--expected_result0],AttributeError: Can only use .dt accessor with datetimelike values,failed -8803,tests.integ.modin.frame.test_pct_change,test_axis_1_with_timedelta_columns[ffill--1],TypeError: unsupported operand type for /: got timedelta64[ns],failed -8804,tests.integ.modin.frame.test_loc,test_df_loc_set_with_column_wise_list_like_item[array--item2-None],"ValueError: could not broadcast input array from shape (4,) into shape (2, 1)",failed -8807,tests.integ.modin.frame.test_pct_change,test_axis_1_with_timedelta_columns[ffill-0],TypeError: unsupported operand type for /: got timedelta64[ns],failed -8810,tests.integ.modin.frame.test_pct_change,test_axis_1_with_timedelta_columns[ffill-1],TypeError: unsupported operand type for /: got timedelta64[ns],failed -8814,tests.integ.modin.frame.test_pct_change,test_axis_1_with_timedelta_columns[ffill-2],TypeError: unsupported operand type for /: got timedelta64[ns],failed -8817,tests.integ.modin.frame.test_apply_axis_0,test_axis_0_date_time_timestamp_type[data1--expected_result1],AttributeError: Can only use .dt accessor with datetimelike values,failed -8819,tests.integ.modin.frame.test_set_index,test_set_index_pass_single_array[True-False-frame_of_ints_and_timedelta-Index],"TypeError: The parameter ""keys"" may be a column key, one-dimensional array, or a list containing only valid column keys and one-dimensional arrays. Received column of type ",failed -8821,tests.integ.modin.frame.test_pct_change,test_axis_1_with_timedelta_columns[pad--1],TypeError: unsupported operand type for /: got timedelta64[ns],failed -8828,tests.integ.modin.frame.test_pct_change,test_axis_1_with_timedelta_columns[pad-0],TypeError: unsupported operand type for /: got timedelta64[ns],failed -8835,tests.integ.modin.frame.test_pct_change,test_axis_1_with_timedelta_columns[pad-1],TypeError: unsupported operand type for /: got timedelta64[ns],failed -8840,tests.integ.modin.frame.test_pct_change,test_axis_1_with_timedelta_columns[pad-2],TypeError: unsupported operand type for /: got timedelta64[ns],failed -8841,tests.integ.modin.frame.test_apply_axis_0,test_axis_0_apply_args_kwargs,AssertionError: exception type does not match with expected type ,failed -8842,tests.integ.modin.frame.test_loc,test_df_loc_set_general_col_key_type[index-row_key0-col_key6],"AssertionError: DataFrame are different +DataFrame shape mismatch +[left]: (0, 7) +[right]: (1, 7)",failed +6776,tests.integ.modin.binary.test_binary_op,test_binary_logic_operations_between_df_and_list_like[ndarray-__rand__],"ValueError: Unable to coerce to Series, length must be 2: given 3",failed +6779,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice[False-9-4--1],"AssertionError: DataFrame are different DataFrame shape mismatch -[left]: (3, 8) -[right]: (3, 4)",failed -8845,tests.integ.modin.frame.test_pct_change,test_axis_1_with_timedelta_columns[backfill--1],TypeError: unsupported operand type for /: got timedelta64[ns],failed -8846,tests.integ.modin.frame.test_loc,test_df_loc_set_with_column_wise_list_like_item[tuple--item2-A],"ValueError: could not broadcast input array from shape (4,) into shape (2, 1)",failed -8848,tests.integ.modin.frame.test_pct_change,test_axis_1_with_timedelta_columns[backfill-0],TypeError: unsupported operand type for /: got timedelta64[ns],failed -8849,tests.integ.modin.frame.test_loc,test_df_loc_set_with_column_wise_list_like_item[tuple--item2-X],"ValueError: could not broadcast input array from shape (4,) into shape (2, 1)",failed -8852,tests.integ.modin.frame.test_pct_change,test_axis_1_with_timedelta_columns[backfill-1],TypeError: unsupported operand type for /: got timedelta64[ns],failed -8853,tests.integ.modin.frame.test_to_view,test_to_view_multiindex[function],"NotImplementedError: Modin supports the method DataFrame.to_view on the Snowflake backend, but not on the backend Pandas.",failed -8854,tests.integ.modin.frame.test_loc,test_df_loc_set_with_column_wise_list_like_item[tuple--item2-col_key2],"ValueError: could not broadcast input array from shape (4,) into shape (2, 1)",failed -8857,tests.integ.modin.frame.test_pct_change,test_axis_1_with_timedelta_columns[backfill-2],TypeError: unsupported operand type for /: got timedelta64[ns],failed -8859,tests.integ.modin.frame.test_apply_axis_0,test_apply_axis_0_bug_1650918[data0-],[XPASS(strict)] SNOW-1650918: Apply on dataframe data columns containing NULL fails with invalid arguments to udtf function,failed -8860,tests.integ.modin.frame.test_loc,test_df_loc_set_general_col_key_type[index-row_key0-col_key8],"AssertionError: DataFrame.iloc[:, 0] (column name=""D"") are different +[left]: (0, 7) +[right]: (1, 7)",failed +6783,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice[False-9-4-1],"AssertionError: DataFrame are different -DataFrame.iloc[:, 0] (column name=""D"") values are different (66.66667 %) -[index]: [0, 1, 2] -[left]: [nan, 4.0, nan] -[right]: [1.0, 4.0, 7.0] -At positional index 0, first diff: nan != 1.0",failed -8862,tests.integ.modin.frame.test_apply_axis_0,test_apply_axis_0_bug_1650918[data1-],[XPASS(strict)] SNOW-1650918: Apply on dataframe data columns containing NULL fails with invalid arguments to udtf function,failed -8863,tests.integ.modin.frame.test_iloc,test_df_iloc_get_key_numeric[col-index-key1],"ValueError: -Location based indexing can only have [integer, integer slice (START point is -INCLUDED, END point is EXCLUDED), listlike of integers, boolean array] types.",failed -8864,tests.integ.modin.frame.test_apply_axis_0,test_apply_nested_series_negative,Failed: DID NOT RAISE ,failed -8866,tests.integ.modin.frame.test_pct_change,test_axis_1_with_timedelta_columns[bfill--1],TypeError: unsupported operand type for /: got timedelta64[ns],failed -8867,tests.integ.modin.frame.test_loc,test_df_loc_set_with_column_wise_list_like_item[tuple--item2-col_key3],"ValueError: could not broadcast input array from shape (4,) into shape (2, 1)",failed -8868,tests.integ.modin.frame.test_set_index,test_set_index_pass_single_array[False-True-frame_of_ints-Index],"TypeError: The parameter ""keys"" may be a column key, one-dimensional array, or a list containing only valid column keys and one-dimensional arrays. Received column of type ",failed -8869,tests.integ.modin.frame.test_pct_change,test_axis_1_with_timedelta_columns[bfill-0],TypeError: unsupported operand type for /: got timedelta64[ns],failed -8872,tests.integ.modin.frame.test_pct_change,test_axis_1_with_timedelta_columns[bfill-1],TypeError: unsupported operand type for /: got timedelta64[ns],failed -8874,tests.integ.modin.frame.test_loc,test_df_loc_set_with_column_wise_list_like_item[tuple--item2-col_key4],"ValueError: could not broadcast input array from shape (4,) into shape (2, 1)",failed -8877,tests.integ.modin.frame.test_pct_change,test_axis_1_with_timedelta_columns[bfill-2],TypeError: unsupported operand type for /: got timedelta64[ns],failed -8879,tests.integ.modin.frame.test_pct_change,test_axis_1_with_timedelta_and_non_timedelta_column_invalid[data0],"AssertionError: Regex pattern did not match. - Regex: 'pct_change\\(axis=1\\)\\ is\\ invalid\\ when\\ one\\ column\\ is\\ Timedelta\\ another\\ column\\ is\\ not\\.' - Input: 'unsupported operand type for /: got timedelta64[ns]'",failed -8881,tests.integ.modin.frame.test_loc,test_df_loc_set_with_column_wise_list_like_item[tuple--item2-None],"ValueError: could not broadcast input array from shape (4,) into shape (2, 1)",failed -8882,tests.integ.modin.frame.test_pct_change,test_axis_1_with_timedelta_and_non_timedelta_column_invalid[data1],"AssertionError: Regex pattern did not match. - Regex: 'pct_change\\(axis=1\\)\\ is\\ invalid\\ when\\ one\\ column\\ is\\ Timedelta\\ another\\ column\\ is\\ not\\.' - Input: 'unsupported operand type for /: got timedelta64[ns]'",failed -8883,tests.integ.modin.frame.test_iloc,test_df_iloc_get_key_numeric[col-index-key2],"ValueError: -Location based indexing can only have [integer, integer slice (START point is -INCLUDED, END point is EXCLUDED), listlike of integers, boolean array] types.",failed -8884,tests.integ.modin.frame.test_pct_change,test_pct_change_unsupported_args[params0],Failed: DID NOT RAISE ,failed -8887,tests.integ.modin.frame.test_pct_change,test_pct_change_bad_periods,ValueError: periods must be an int. got instead,failed -8888,tests.integ.modin.frame.test_pct_change,test_pct_change_bad_dtypes[data0],"AssertionError: Regex pattern did not match. - Regex: 'cannot perform pct_change on non-numeric column with dtype' - Input: 'unsupported operand type for /: got object'",failed -8890,tests.integ.modin.frame.test_pct_change,test_pct_change_bad_dtypes[data1],"AssertionError: Regex pattern did not match. - Regex: 'cannot perform pct_change on non-numeric column with dtype' - Input: 'unsupported operand type for /: got object'",failed -8891,tests.integ.modin.frame.test_loc,test_df_loc_set_general_col_key_type[index-row_key0-col_key9],"KeyError: array(['1', '2'], dtype='",failed -8908,tests.integ.modin.frame.test_loc,test_df_loc_set_general_col_key_type[index-row_key1-col_key1],"AssertionError: DataFrame.iloc[:, 3] (column name=""A"") are different +DataFrame shape mismatch +[left]: (0, 7) +[right]: (1, 7)",failed +6784,tests.integ.modin.binary.test_binary_op,test_binary_logic_operations_between_df_and_list_like[index-__or__],"ValueError: Unable to coerce to Series, length must be 2: given 3",failed +6788,tests.integ.modin.frame.test_loc,test_df_loc_get_reversed_key_slice_with_unordered_nullable_index[first--1-6-None],KeyError: 7,failed +6790,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice[False-9-4-4],"AssertionError: DataFrame are different -DataFrame.iloc[:, 3] (column name=""A"") values are different (100.0 %) -[index]: [0, 1, 2] -[left]: [1, 4, 7] -[right]: [nan, 7.0, 4.0]",failed -8924,tests.integ.modin.frame.test_iloc,test_df_iloc_get_key_numeric[col-index-key5],"ValueError: -Location based indexing can only have [integer, integer slice (START point is -INCLUDED, END point is EXCLUDED), listlike of integers, boolean array] types.",failed -8925,tests.integ.modin.frame.test_loc,test_df_loc_set_general_col_key_type[index-row_key1-col_key2],"AssertionError: DataFrame.iloc[:, 4] (column name=""Y"") are different +DataFrame shape mismatch +[left]: (0, 7) +[right]: (1, 7)",failed +6802,tests.integ.modin.frame.test_loc,test_df_loc_get_reversed_key_slice_with_unordered_nullable_index[first--1-6-1],KeyError: 7,failed +6804,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice[False-9-10-4],"AssertionError: DataFrame are different -DataFrame.iloc[:, 4] (column name=""Y"") values are different (100.0 %) -[index]: [0, 1, 2] -[left]: [1, 4, 7] -[right]: [nan, nan, nan]",failed -8928,tests.integ.modin.frame.test_to_view,test_to_view_multiindex_length_mismatch_raises[function],"NotImplementedError: Modin supports the method DataFrame.to_view on the Snowflake backend, but not on the backend Pandas.",failed -8944,tests.integ.modin.frame.test_iloc,test_df_iloc_get_key_numeric[col-index-key6],"ValueError: -Location based indexing can only have [integer, integer slice (START point is -INCLUDED, END point is EXCLUDED), listlike of integers, boolean array] types.",failed -8947,tests.integ.modin.frame.test_quantile,test_quantile_unsupported_args_negative[table-lower-0],Failed: DID NOT RAISE ,failed -8948,tests.integ.modin.frame.test_quantile,test_quantile_unsupported_args_negative[table-lower-1],Failed: DID NOT RAISE ,failed -8950,tests.integ.modin.frame.test_iloc,test_df_iloc_get_key_numeric[col-ndarray-key0],"ValueError: -Location based indexing can only have [integer, integer slice (START point is -INCLUDED, END point is EXCLUDED), listlike of integers, boolean array] types.",failed -8951,tests.integ.modin.frame.test_quantile,test_quantile_unsupported_args_negative[table-higher-0],Failed: DID NOT RAISE ,failed -8954,tests.integ.modin.frame.test_quantile,test_quantile_unsupported_args_negative[table-higher-1],Failed: DID NOT RAISE ,failed -8962,tests.integ.modin.frame.test_transpose,test_dataframe_transpose_set_timedelta_index_SNOW_1652608[index0-transpose_twice],[XPASS(strict)] SNOW-886400,failed -8964,tests.integ.modin.frame.test_quantile,test_quantile_unsupported_args_negative[table-midpoint-0],"ValueError: Invalid interpolation: midpoint. Interpolation must be in {'nearest', 'lower', 'higher'}",failed -8967,tests.integ.modin.frame.test_transpose,test_dataframe_transpose_set_timedelta_index_SNOW_1652608[index1-transpose_twice],[XPASS(strict)] SNOW-886400,failed -8969,tests.integ.modin.frame.test_set_index,test_set_index_pass_single_array[False-False-frame_of_ints-Index],"TypeError: The parameter ""keys"" may be a column key, one-dimensional array, or a list containing only valid column keys and one-dimensional arrays. Received column of type ",failed -8970,tests.integ.modin.frame.test_applymap,test_applymap_basic_without_type_hints[applymap-return_timedelta_scalar],[XPASS(strict)] SNOW-1619940,failed -8971,tests.integ.modin.frame.test_loc,test_df_loc_set_general_col_key_type[index-row_key1-col_key6],"AssertionError: DataFrame are different +DataFrame shape mismatch +[left]: (0, 7) +[right]: (1, 7)",failed +6812,tests.integ.modin.binary.test_binary_op,test_binary_logic_operations_between_df_and_list_like[index-__ror__],"ValueError: Unable to coerce to Series, length must be 2: given 3",failed +6818,tests.integ.modin.binary.test_binary_op,test_binary_logic_operations_between_df_and_list_like[index-__and__],"ValueError: Unable to coerce to Series, length must be 2: given 3",failed +6819,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice[False--9--1-None],"AssertionError: DataFrame are different DataFrame shape mismatch -[left]: (3, 8) -[right]: (3, 4)",failed -8977,tests.integ.modin.frame.test_quantile,test_quantile_unsupported_args_negative[table-midpoint-1],"ValueError: Invalid interpolation: midpoint. Interpolation must be in {'nearest', 'lower', 'higher'}",failed -8982,tests.integ.modin.frame.test_quantile,test_quantile_datetime_negative,Failed: DID NOT RAISE ,failed -8994,tests.integ.modin.frame.test_iloc,test_df_iloc_get_key_numeric[col-ndarray-key4],IndexError: index 12 is out of bounds for axis 0 with size 7,failed -8999,tests.integ.modin.frame.test_iloc,test_df_iloc_get_key_numeric[col-ndarray-key5],"ValueError: -Location based indexing can only have [integer, integer slice (START point is -INCLUDED, END point is EXCLUDED), listlike of integers, boolean array] types.",failed -9005,tests.integ.modin.frame.test_iloc,test_df_iloc_get_key_numeric[col-ndarray-key6],"ValueError: -Location based indexing can only have [integer, integer slice (START point is -INCLUDED, END point is EXCLUDED), listlike of integers, boolean array] types.",failed -9012,tests.integ.modin.frame.test_loc,test_df_loc_set_general_col_key_type[index-row_key1-col_key8],"AssertionError: DataFrame.iloc[:, 0] (column name=""D"") are different +[left]: (0, 7) +[right]: (1, 7)",failed +6822,tests.integ.modin.binary.test_binary_op,test_binary_logic_operations_between_df_and_list_like[index-__rand__],"ValueError: Unable to coerce to Series, length must be 2: given 3",failed +6824,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice[False--9--1-1],"AssertionError: DataFrame are different -DataFrame.iloc[:, 0] (column name=""D"") values are different (100.0 %) -[index]: [0, 1, 2] -[left]: [nan, nan, nan] -[right]: [1.0, 4.0, 7.0] -At positional index 0, first diff: nan != 1.0",failed -9028,tests.integ.modin.frame.test_applymap,test_applymap_basic_without_type_hints[applymap-apply_on_frame_with_timedelta_data_columns_returns_int],[XPASS(strict)] ,failed -9035,tests.integ.modin.frame.test_loc,test_df_loc_set_with_column_wise_list_like_item[index--item2-A],"ValueError: could not broadcast input array from shape (4,) into shape (2, 1)",failed -9038,tests.integ.modin.frame.test_applymap,test_applymap_basic_without_type_hints[map-return_timedelta_scalar],[XPASS(strict)] SNOW-1619940,failed -9050,tests.integ.modin.frame.test_set_index,test_set_index_pass_single_array[False-False-frame_of_ints_and_timedelta-Index],"TypeError: The parameter ""keys"" may be a column key, one-dimensional array, or a list containing only valid column keys and one-dimensional arrays. Received column of type ",failed -9068,tests.integ.modin.frame.test_transpose,test_dataframe_transpose_not_json_serializable_unimplemented[col_label0],[XPASS(strict)] SNOW-896985: Support non-JSON serializable types in dataframe,failed -9069,tests.integ.modin.frame.test_loc,test_df_loc_set_with_column_wise_list_like_item[index--item2-X],"ValueError: could not broadcast input array from shape (4,) into shape (2, 1)",failed -9071,tests.integ.modin.frame.test_transpose,test_dataframe_transpose_not_json_serializable_unimplemented[col_label1],[XPASS(strict)] SNOW-896985: Support non-JSON serializable types in dataframe,failed -9073,tests.integ.modin.frame.test_loc,test_df_loc_set_general_col_key_type[index-row_key1-col_key9],"KeyError: array(['1', '2'], dtype='-item2-col_key2],"ValueError: could not broadcast input array from shape (4,) into shape (2, 1)",failed -9094,tests.integ.modin.frame.test_applymap,test_applymap_basic_with_type_hints[applymap-return_timedelta_scalar],[XPASS(strict)] SNOW-1619940,failed -9101,tests.integ.modin.frame.test_transpose,test_dataframe_transpose_args_warning_log,TypeError: transpose() takes at most 1 argument (2 given),failed -9107,tests.integ.modin.frame.test_loc,test_df_loc_set_general_col_key_type[index-row_key1-col_key10],"KeyError: array(['E', 1, 'X', 2], dtype=object)",failed -9110,tests.integ.modin.frame.test_loc,test_df_loc_set_with_column_wise_list_like_item[index--item2-col_key3],"ValueError: could not broadcast input array from shape (4,) into shape (2, 1)",failed -9133,tests.integ.modin.frame.test_applymap,test_applymap_basic_with_type_hints[applymap-apply_on_frame_with_timedelta_data_columns_returns_int],[XPASS(strict)] ,failed -9134,tests.integ.modin.frame.test_loc,test_df_loc_set_general_col_key_type_with_duplicate_columns[index-col_key1],"AssertionError: DataFrame.iloc[:, 0] (column name=""A"") are different +DataFrame shape mismatch +[left]: (0, 7) +[right]: (1, 7)",failed +6826,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice[False--9--1-4],"AssertionError: DataFrame are different -DataFrame.iloc[:, 0] (column name=""A"") values are different (100.0 %) -[index]: [0, 1, 2] -[left]: [1, 4, 7] -[right]: [nan, 7.0, 4.0]",failed -9136,tests.integ.modin.frame.test_set_index,test_set_index_pass_arrays[True-True-frame_of_ints-Index],"TypeError: The parameter ""keys"" may be a column key, one-dimensional array, or a list containing only valid column keys and one-dimensional arrays. Received column of type ",failed -9142,tests.integ.modin.frame.test_applymap,test_applymap_basic_with_type_hints[map-return_timedelta_scalar],[XPASS(strict)] SNOW-1619940,failed -9150,tests.integ.modin.frame.test_iloc,test_df_iloc_get_key_numeric[col-index with name-key1],"ValueError: -Location based indexing can only have [integer, integer slice (START point is -INCLUDED, END point is EXCLUDED), listlike of integers, boolean array] types.",failed -9156,tests.integ.modin.frame.test_loc,test_df_loc_set_with_column_wise_list_like_item[index--item2-col_key4],"ValueError: could not broadcast input array from shape (4,) into shape (2, 1)",failed -9176,tests.integ.modin.frame.test_iloc,test_df_iloc_get_slice_with_non_integer_parameters_negative[row-slice_key0],"ValueError: -Location based indexing can only have [integer, integer slice (START point is -INCLUDED, END point is EXCLUDED), listlike of integers, boolean array] types.",failed -9183,tests.integ.modin.frame.test_iloc,test_df_iloc_get_slice_with_non_integer_parameters_negative[row-slice_key1],"ValueError: -Location based indexing can only have [integer, integer slice (START point is -INCLUDED, END point is EXCLUDED), listlike of integers, boolean array] types.",failed -9185,tests.integ.modin.frame.test_loc,test_df_loc_set_with_column_wise_list_like_item[index--item2-None],"ValueError: could not broadcast input array from shape (4,) into shape (2, 1)",failed -9191,tests.integ.modin.frame.test_iloc,test_df_iloc_get_slice_with_non_integer_parameters_negative[row-slice_key2],"ValueError: -Location based indexing can only have [integer, integer slice (START point is -INCLUDED, END point is EXCLUDED), listlike of integers, boolean array] types.",failed -9195,tests.integ.modin.frame.test_applymap,test_applymap_basic_with_type_hints[map-apply_on_frame_with_timedelta_data_columns_returns_int],[XPASS(strict)] ,failed -9199,tests.integ.modin.frame.test_iloc,test_df_iloc_get_slice_with_non_integer_parameters_negative[col-slice_key0],"ValueError: -Location based indexing can only have [integer, integer slice (START point is -INCLUDED, END point is EXCLUDED), listlike of integers, boolean array] types.",failed -9202,tests.integ.modin.frame.test_applymap,test_applymap_date_time_timestamp[data0-str-str-expected_result0],"AssertionError: DataFrame.iloc[:, 0] (column name=""0"") are different +DataFrame shape mismatch +[left]: (0, 7) +[right]: (1, 7)",failed +6828,tests.integ.modin.binary.test_binary_op,test_binary_logic_operations_between_df_and_list_like[index_with_name-__or__],"ValueError: Unable to coerce to Series, length must be 2: given 3",failed +6830,tests.integ.modin.binary.test_timedelta,test_valid_arithmetic_between_possibly_negative_timedeltas[timedelta_scalar3-rfloordiv],reason: precision difference in snowflake,xfailed +6833,tests.integ.modin.frame.test_loc,test_df_loc_get_reversed_key_slice_with_unordered_nullable_index[first--1-6-4],KeyError: 7,failed +6838,tests.integ.modin.binary.test_binary_op,test_binary_logic_operations_between_df_and_list_like[index_with_name-__ror__],"ValueError: Unable to coerce to Series, length must be 2: given 3",failed +6846,tests.integ.modin.binary.test_binary_op,test_binary_logic_operations_between_df_and_list_like[index_with_name-__and__],"ValueError: Unable to coerce to Series, length must be 2: given 3",failed +6849,tests.integ.modin.frame.test_loc,test_df_loc_get_reversed_key_slice_with_unordered_nullable_index[first--1-6-6],KeyError: 7,failed +6855,tests.integ.modin.binary.test_timedelta,test_valid_arithmetic_between_possibly_negative_timedeltas[timedelta_scalar4-rfloordiv],reason: precision difference in snowflake,xfailed +6857,tests.integ.modin.binary.test_binary_op,test_binary_logic_operations_between_df_and_list_like[index_with_name-__rand__],"ValueError: Unable to coerce to Series, length must be 2: given 3",failed +6862,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice[False--9--1-10],"AssertionError: DataFrame are different -DataFrame.iloc[:, 0] (column name=""0"") values are different (100.0 %) -[index]: [0, 1] -[left]: [2023-01-01, None] -[right]: [2023-01-01 00:00:00, NaT] -At positional index 0, first diff: 2023-01-01 != 2023-01-01 00:00:00",failed -9203,tests.integ.modin.frame.test_loc,test_df_loc_set_with_row_wise_list_like_item[list--item0-col_key2],ValueError: Must have equal len keys and value when setting with an iterable,failed -9206,tests.integ.modin.frame.test_iloc,test_df_iloc_get_slice_with_non_integer_parameters_negative[col-slice_key1],"ValueError: -Location based indexing can only have [integer, integer slice (START point is -INCLUDED, END point is EXCLUDED), listlike of integers, boolean array] types.",failed -9209,tests.integ.modin.frame.test_iloc,test_df_iloc_get_key_numeric[col-index with name-key2],"ValueError: -Location based indexing can only have [integer, integer slice (START point is -INCLUDED, END point is EXCLUDED), listlike of integers, boolean array] types.",failed -9212,tests.integ.modin.frame.test_applymap,test_applymap_date_time_timestamp[data1-type-str-expected_result1],"AssertionError: DataFrame.iloc[:, 0] (column name=""0"") are different +DataFrame shape mismatch +[left]: (0, 7) +[right]: (1, 7)",failed +6871,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice[False--9-1-None],"AssertionError: DataFrame are different -DataFrame.iloc[:, 0] (column name=""0"") values are different (100.0 %) -[index]: [0, 1] -[left]: [, ] -[right]: [, ] -At positional index 0, first diff: != ",failed -9217,tests.integ.modin.frame.test_iloc,test_df_iloc_get_slice_with_non_integer_parameters_negative[col-slice_key2],"ValueError: -Location based indexing can only have [integer, integer slice (START point is -INCLUDED, END point is EXCLUDED), listlike of integers, boolean array] types.",failed -9219,tests.integ.modin.frame.test_loc,test_df_loc_set_with_row_wise_list_like_item[list--item0-col_key3],ValueError: Must have equal len keys and value when setting with an iterable,failed -9222,tests.integ.modin.frame.test_applymap,test_applymap_date_time_timestamp[data2-str-str-expected_result2],"AssertionError: DataFrame.iloc[:, 0] (column name=""0"") are different +DataFrame shape mismatch +[left]: (0, 7) +[right]: (1, 7)",failed +6883,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice[False--9-1-1],"AssertionError: DataFrame are different -DataFrame.iloc[:, 0] (column name=""0"") values are different (100.0 %) -[index]: [0, 1] -[left]: [01:02:03, None] -[right]: [0 days 01:02:03, NaT] -At positional index 0, first diff: 01:02:03 != 0 days 01:02:03",failed -9227,tests.integ.modin.frame.test_loc,test_df_loc_set_with_row_wise_list_like_item[list--item0-col_key4],ValueError: Must have equal len keys and value when setting with an iterable,failed -9230,tests.integ.modin.frame.test_applymap,test_applymap_date_time_timestamp[data3-type-str-expected_result3],"AssertionError: DataFrame.iloc[:, 0] (column name=""0"") are different +DataFrame shape mismatch +[left]: (0, 7) +[right]: (1, 7)",failed +6891,tests.integ.modin.frame.test_loc,test_df_loc_get_reversed_key_slice_with_unordered_nullable_index[first--2-1-None],KeyError: 3,failed +6893,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice[False--9-1-4],"AssertionError: DataFrame are different -DataFrame.iloc[:, 0] (column name=""0"") values are different (100.0 %) -[index]: [0, 1] -[left]: [, ] -[right]: [, ] -At positional index 0, first diff: != ",failed -9236,tests.integ.modin.frame.test_loc,test_df_loc_set_with_row_wise_list_like_item[list--item0-col_key5],ValueError: Must have equal len keys and value when setting with an iterable,failed -9246,tests.integ.modin.frame.test_applymap,test_applymap_date_time_timestamp[data5-type-str-expected_result5],"AssertionError: DataFrame.iloc[:, 0] (column name=""0"") are different +DataFrame shape mismatch +[left]: (0, 7) +[right]: (1, 7)",failed +6894,tests.integ.modin.binary.test_timedelta,test_valid_arithmetic_between_possibly_negative_timedeltas[timedelta_scalar5-rfloordiv],reason: precision difference in snowflake,xfailed +6897,tests.integ.modin.frame.test_iloc,test_df_iloc_get_key_bool[row-index with name-key5],IndexError: positional indexers are out-of-bounds,failed +6902,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice[False--9-1-10],"AssertionError: DataFrame are different -DataFrame.iloc[:, 0] (column name=""0"") values are different (100.0 %) -[index]: [0, 1] -[left]: [, ] -[right]: [, ] -At positional index 0, first diff: != ",failed -9251,tests.integ.modin.frame.test_loc,test_df_loc_set_with_row_wise_list_like_item[list--item1-col_key1],"AssertionError: Regex pattern did not match. - Regex: 'Must have equal len keys and value when setting with an iterable' - Input: 'could not broadcast input array from shape (2,) into shape (2, 3)'",failed -9255,tests.integ.modin.frame.test_applymap,test_applymap_date_time_timestamp[data6-str-str-expected_result6],"AssertionError: DataFrame.iloc[:, 0] (column name=""0"") are different +DataFrame shape mismatch +[left]: (0, 7) +[right]: (1, 7)",failed +6910,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice[False--9-4-None],"AssertionError: DataFrame are different -DataFrame.iloc[:, 0] (column name=""0"") values are different (33.33333 %) -[index]: [0, 1, 2] -[left]: [2023-01-01 01:02:03+00:00, 2023-01-01 01:02:03, None] -[right]: [2023-01-01 01:02:03+00:00, 2023-01-01 01:02:03-08:00, None] -At positional index 1, first diff: 2023-01-01 01:02:03 != 2023-01-01 01:02:03-08:00",failed -9256,tests.integ.modin.frame.test_iloc,test_df_iloc_get_key_numeric[col-index with name-key3],"ValueError: -Location based indexing can only have [integer, integer slice (START point is -INCLUDED, END point is EXCLUDED), listlike of integers, boolean array] types.",failed -9260,tests.integ.modin.frame.test_loc,test_df_loc_set_with_row_wise_list_like_item[list--item1-col_key2],ValueError: Must have equal len keys and value when setting with an iterable,failed -9264,tests.integ.modin.frame.test_loc,test_df_loc_set_general_col_key_type_with_duplicate_columns[index-col_key6],ValueError: cannot reindex on an axis with duplicate labels,failed -9266,tests.integ.modin.frame.test_applymap,test_applymap_date_time_timestamp[data7-type-str-expected_result7],"AssertionError: DataFrame.iloc[:, 0] (column name=""0"") are different +DataFrame shape mismatch +[left]: (0, 7) +[right]: (1, 7)",failed +6917,tests.integ.modin.frame.test_loc,test_df_loc_get_reversed_key_slice_with_unordered_nullable_index[first--2-1-1],KeyError: 3,failed +6926,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice[False--9-4-4],"AssertionError: DataFrame are different -DataFrame.iloc[:, 0] (column name=""0"") values are different (100.0 %) -[index]: [0, 1] -[left]: [, ] -[right]: [, ] -At positional index 0, first diff: != ",failed -9269,tests.integ.modin.frame.test_set_index,test_set_index_pass_arrays[True-True-frame_of_ints_and_timedelta-Index],"TypeError: The parameter ""keys"" may be a column key, one-dimensional array, or a list containing only valid column keys and one-dimensional arrays. Received column of type ",failed -9271,tests.integ.modin.frame.test_loc,test_df_loc_set_with_row_wise_list_like_item[list--item1-col_key3],ValueError: Must have equal len keys and value when setting with an iterable,failed -9275,tests.integ.modin.frame.test_applymap,test_frame_with_timedelta_index,[XPASS(strict)] ,failed -9283,tests.integ.modin.frame.test_loc,test_df_loc_set_with_row_wise_list_like_item[list--item1-col_key4],ValueError: Must have equal len keys and value when setting with an iterable,failed -9295,tests.integ.modin.frame.test_loc,test_df_loc_set_with_row_wise_list_like_item[list--item2-col_key0],Failed: DID NOT RAISE ,failed -9304,tests.integ.modin.frame.test_iloc,test_df_iloc_get_key_numeric[col-index with name-key4],"ValueError: -Location based indexing can only have [integer, integer slice (START point is -INCLUDED, END point is EXCLUDED), listlike of integers, boolean array] types.",failed -9312,tests.integ.modin.frame.test_loc,test_df_loc_set_general_col_key_type_with_duplicate_columns[index-col_key8],"AssertionError: DataFrame.iloc[:, 0] (column name=""A"") are different +DataFrame shape mismatch +[left]: (0, 7) +[right]: (1, 7)",failed +6928,tests.integ.modin.frame.test_iloc,test_df_iloc_get_key_bool[col-list-key1],IndexError: positional indexers are out-of-bounds,failed +6929,tests.integ.modin.binary.test_timedelta,test_valid_arithmetic_between_possibly_negative_timedeltas[timedelta_scalar6-rfloordiv],reason: precision difference in snowflake,xfailed +6935,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice[False--9-4-10],"AssertionError: DataFrame are different -DataFrame.iloc[:, 0] (column name=""A"") values are different (100.0 %) -[index]: [0, 1, 2] -[left]: [nan, 7.0, 4.0] -[right]: [1.0, 4.0, 7.0] -At positional index 0, first diff: nan != 1.0",failed -9313,tests.integ.modin.frame.test_tz_convert,test_tz_convert_negative[1-None-None-UTC-NotImplementedError],AttributeError: 'RangeIndex' object has no attribute 'tz_convert',failed -9321,tests.integ.modin.frame.test_tz_convert,test_tz_convert_negative[columns-None-None-UTC-NotImplementedError],AttributeError: 'RangeIndex' object has no attribute 'tz_convert',failed -9329,tests.integ.modin.frame.test_tz_convert,test_tz_convert_negative[0-1-None-UTC-NotImplementedError],ValueError: The level 1 is not valid,failed -9330,tests.integ.modin.frame.test_iloc,test_df_iloc_get_key_numeric[col-index with name-key5],"ValueError: -Location based indexing can only have [integer, integer slice (START point is -INCLUDED, END point is EXCLUDED), listlike of integers, boolean array] types.",failed -9332,tests.integ.modin.frame.test_loc,test_df_loc_set_with_row_wise_list_like_item[list--item2-col_key1],"AssertionError: Regex pattern did not match. - Regex: 'Must have equal len keys and value when setting with an iterable' - Input: 'could not broadcast input array from shape (4,) into shape (2, 3)'",failed -9334,tests.integ.modin.frame.test_tz_convert,test_tz_convert_negative[0-None-False-UTC-NotImplementedError],Failed: DID NOT RAISE ,failed -9339,tests.integ.modin.frame.test_tz_convert,test_tz_convert_negative[0-None-None-UTC+09:00-NotImplementedError],Failed: DID NOT RAISE ,failed -9345,tests.integ.modin.frame.test_applymap,test_applymap_na_action_ignore[applymap],Failed: DID NOT RAISE ,failed -9347,tests.integ.modin.frame.test_loc,test_df_loc_set_general_col_key_type_with_duplicate_columns[index-col_key10],AssertionError: exception type does not match with expected type ,failed -9350,tests.integ.modin.frame.test_applymap,test_applymap_na_action_ignore[map],Failed: DID NOT RAISE ,failed -9352,tests.integ.modin.frame.test_loc,test_df_loc_set_with_row_wise_list_like_item[list--item2-col_key5],ValueError: Must have equal len keys and value when setting with an iterable,failed -9366,tests.integ.modin.frame.test_loc,test_df_loc_set_with_row_wise_list_like_item[array--item0-col_key2],ValueError: Must have equal len keys and value when setting with an iterable,failed -9372,tests.integ.modin.frame.test_loc,test_df_loc_set_with_row_wise_list_like_item[array--item0-col_key3],ValueError: Must have equal len keys and value when setting with an iterable,failed -9377,tests.integ.modin.frame.test_iloc,test_df_iloc_get_key_numeric[col-index with name-key6],"ValueError: -Location based indexing can only have [integer, integer slice (START point is -INCLUDED, END point is EXCLUDED), listlike of integers, boolean array] types.",failed -9382,tests.integ.modin.frame.test_loc,test_df_loc_set_with_row_wise_list_like_item[array--item0-col_key4],ValueError: Must have equal len keys and value when setting with an iterable,failed -9388,tests.integ.modin.frame.test_loc,test_df_loc_set_with_row_wise_list_like_item[array--item0-col_key5],ValueError: Must have equal len keys and value when setting with an iterable,failed -9390,tests.integ.modin.frame.test_set_index,test_set_index_pass_arrays[True-False-frame_of_ints-Index],"TypeError: The parameter ""keys"" may be a column key, one-dimensional array, or a list containing only valid column keys and one-dimensional arrays. Received column of type ",failed -9396,tests.integ.modin.frame.test_iloc,test_df_iloc_get_key_int_series_with_1k_shape[key0],"ValueError: -Location based indexing can only have [integer, integer slice (START point is -INCLUDED, END point is EXCLUDED), listlike of integers, boolean array] types.",failed -9402,tests.integ.modin.frame.test_loc,test_df_loc_set_general_key_with_duplicate_rows[index-item1],ValueError: cannot reindex on an axis with duplicate labels,failed -9408,tests.integ.modin.frame.test_loc,test_df_loc_set_with_row_wise_list_like_item[array--item1-col_key1],"AssertionError: Regex pattern did not match. - Regex: 'Must have equal len keys and value when setting with an iterable' - Input: 'could not broadcast input array from shape (2,) into shape (2, 3)'",failed -9417,tests.integ.modin.frame.test_loc,test_df_loc_set_with_row_wise_list_like_item[array--item1-col_key2],ValueError: Must have equal len keys and value when setting with an iterable,failed -9419,tests.integ.modin.frame.test_iloc,test_df_iloc_get_key_int_series_with_1k_shape[key1],IndexError: index 1204 is out of bounds for axis 0 with size 1000,failed -9428,tests.integ.modin.frame.test_loc,test_df_loc_set_with_row_wise_list_like_item[array--item1-col_key3],ValueError: Must have equal len keys and value when setting with an iterable,failed -9430,tests.integ.modin.frame.test_iloc,test_df_iloc_get_key_int_series_with_1k_shape[key2],"ValueError: -Location based indexing can only have [integer, integer slice (START point is -INCLUDED, END point is EXCLUDED), listlike of integers, boolean array] types.",failed -9438,tests.integ.modin.frame.test_loc,test_df_loc_set_with_row_wise_list_like_item[array--item1-col_key4],ValueError: Must have equal len keys and value when setting with an iterable,failed -9449,tests.integ.modin.frame.test_loc,test_df_loc_set_with_row_wise_list_like_item[array--item2-col_key0],Failed: DID NOT RAISE ,failed -9485,tests.integ.modin.frame.test_set_index,test_set_index_pass_arrays[True-False-frame_of_ints_and_timedelta-Index],"TypeError: The parameter ""keys"" may be a column key, one-dimensional array, or a list containing only valid column keys and one-dimensional arrays. Received column of type ",failed -9488,tests.integ.modin.frame.test_loc,test_df_loc_set_with_row_wise_list_like_item[array--item2-col_key1],"AssertionError: Regex pattern did not match. - Regex: 'Must have equal len keys and value when setting with an iterable' - Input: 'could not broadcast input array from shape (4,) into shape (2, 3)'",failed -9504,tests.integ.modin.frame.test_assign,test_assign_basic_series,"AssertionError: DataFrame.index are different +DataFrame shape mismatch +[left]: (0, 7) +[right]: (1, 7)",failed +6942,tests.integ.modin.frame.test_loc,test_df_loc_get_reversed_key_slice_with_unordered_nullable_index[first--2-1-4],KeyError: 3,failed +6965,tests.integ.modin.binary.test_timedelta,test_valid_arithmetic_between_possibly_negative_timedeltas[timedelta_scalar7-rfloordiv],reason: precision difference in snowflake,xfailed +6981,tests.integ.modin.test_concat,test_concat_mixed_objs[1-inner],"AssertionError: DataFrame.columns are different -Attribute ""names"" are different -[left]: [None] -[right]: ['index']",failed -9513,tests.integ.modin.frame.test_loc,test_df_loc_set_with_row_wise_list_like_item[array--item2-col_key5],ValueError: Must have equal len keys and value when setting with an iterable,failed -9517,tests.integ.modin.frame.test_join,test_join_suffix_on_list_negative,"AssertionError: Regex pattern did not match. - Regex: 'Join dataframes have overlapping column labels' - Input: ""Indexes have overlapping values: Index(['key'], dtype='object')""",failed -9522,tests.integ.modin.frame.test_assign,test_assign_basic_series_mismatched_index[reversed_index],"AssertionError: DataFrame.index are different +DataFrame.columns values are different (50.0 %) +[left]: Index([0, 0], dtype='int64') +[right]: RangeIndex(start=0, stop=2, step=1) +At positional index 1, first diff: 0 != 1",failed +7001,tests.integ.modin.frame.test_loc,test_df_loc_get_reversed_key_slice_with_unordered_nullable_index[first--2-1-6],KeyError: 3,failed +7004,tests.integ.modin.test_concat,test_concat_mixed_objs[1-outer],"AssertionError: DataFrame.columns are different -Attribute ""names"" are different -[left]: [None] -[right]: ['index']",failed -9524,tests.integ.modin.frame.test_set_index,test_set_index_pass_arrays[False-True-frame_of_ints-Series],"KeyError: ""None of ['a'] are in the columns""",failed -9531,tests.integ.modin.frame.test_iloc,test_df_iloc_get_key_scalar[row--8],IndexError: index -8 is out of bounds for axis 0 with size 7,failed -9537,tests.integ.modin.frame.test_loc,test_df_loc_set_with_row_wise_list_like_item[tuple--item0-col_key2],ValueError: Must have equal len keys and value when setting with an iterable,failed -9540,tests.integ.modin.frame.test_assign,test_assign_basic_series_mismatched_index[different_index],"AssertionError: DataFrame.index are different +DataFrame.columns values are different (50.0 %) +[left]: Index([0, 0], dtype='int64') +[right]: RangeIndex(start=0, stop=2, step=1) +At positional index 1, first diff: 0 != 1",failed +7010,tests.integ.modin.frame.test_loc,test_df_loc_get_reversed_key_slice_with_unordered_nullable_index[first--2-4-None],"AssertionError: DataFrame are different -Attribute ""names"" are different -[left]: [None] -[right]: ['index']",failed -9542,tests.integ.modin.frame.test_join,test_join_invalid_how_negative,"AssertionError: Regex pattern did not match. - Regex: 'do not recognize join method full_outer_join' - Input: ""columns overlap but no suffix specified: Index(['a'], dtype='object')""",failed -9546,tests.integ.modin.frame.test_loc,test_df_loc_set_with_row_wise_list_like_item[tuple--item0-col_key3],ValueError: Must have equal len keys and value when setting with an iterable,failed -9552,tests.integ.modin.frame.test_assign,test_assign_basic_non_pandas_object[2],"AssertionError: DataFrame.index are different +DataFrame shape mismatch +[left]: (4, 8) +[right]: (1, 8)",failed +7013,tests.integ.modin.test_concat,test_concat_series_names_axis1[None-None-expected_columns0],"AssertionError: DataFrame.columns are different -Attribute ""names"" are different -[left]: [None] -[right]: ['index']",failed -9558,tests.integ.modin.frame.test_loc,test_df_loc_set_with_row_wise_list_like_item[tuple--item0-col_key4],ValueError: Must have equal len keys and value when setting with an iterable,failed -9563,tests.integ.modin.frame.test_assign,test_assign_basic_non_pandas_object[new_col_value1],"AssertionError: DataFrame.index are different +DataFrame.columns values are different (50.0 %) +[left]: Index([0, 0], dtype='int64') +[right]: RangeIndex(start=0, stop=2, step=1) +At positional index 1, first diff: 0 != 1",failed +7014,tests.integ.modin.frame.test_iloc,test_df_iloc_get_key_bool[col-list-key5],IndexError: positional indexers are out-of-bounds,failed +7022,tests.integ.modin.frame.test_loc,test_df_loc_get_reversed_key_slice_with_unordered_nullable_index[first--2-4-1],"AssertionError: DataFrame are different -Attribute ""names"" are different -[left]: [None] -[right]: ['index']",failed -9565,tests.integ.modin.frame.test_join,test_join_unnamed_series_in_list_negative,AttributeError: 'Series' object has no attribute 'columns',failed -9566,tests.integ.modin.frame.test_loc,test_df_loc_set_with_row_wise_list_like_item[tuple--item0-col_key5],ValueError: Must have equal len keys and value when setting with an iterable,failed -9571,tests.integ.modin.frame.test_iloc,test_df_iloc_get_key_scalar[row-7],IndexError: positional indexers are out-of-bounds,failed -9573,tests.integ.modin.frame.test_assign,test_assign_basic_non_pandas_object[x],"AssertionError: DataFrame.index are different +DataFrame shape mismatch +[left]: (1, 8) +[right]: (0, 8)",failed +7033,tests.integ.modin.frame.test_loc,test_df_loc_get_reversed_key_slice_with_unordered_nullable_index[first--2-4-4],"AssertionError: DataFrame are different -Attribute ""names"" are different -[left]: [None] -[right]: ['index']",failed -9574,tests.integ.modin.frame.test_tz_localize,test_tz_localize_negative[UTC-1-None-None-raise-raise-NotImplementedError],ValueError: No axis named 1 for object type Series,failed -9577,tests.integ.modin.frame.test_iloc,test_df_iloc_get_range_deviating_behavior[row-range_key0],IndexError: positional indexers are out-of-bounds,failed -9578,tests.integ.modin.frame.test_join,test_join_list_mixed,AttributeError: 'Series' object has no attribute 'columns',failed -9579,tests.integ.modin.frame.test_loc,test_df_loc_set_with_row_wise_list_like_item[tuple--item1-col_key1],"AssertionError: Regex pattern did not match. - Regex: 'Must have equal len keys and value when setting with an iterable' - Input: 'could not broadcast input array from shape (2,) into shape (2, 3)'",failed -9580,tests.integ.modin.frame.test_loc,test_df_loc_get_key_bool[index-key5],IndexError: positional indexers are out-of-bounds,failed -9582,tests.integ.modin.frame.test_assign,test_assign_invalid_long_column_length_negative,ValueError: Length of values (5) does not match length of index (3),failed -9584,tests.integ.modin.frame.test_iloc,test_df_iloc_get_key_scalar[row-52879115],IndexError: positional indexers are out-of-bounds,failed -9585,tests.integ.modin.frame.test_tz_localize,test_tz_localize_negative[UTC-columns-None-None-raise-raise-NotImplementedError],ValueError: No axis named 1 for object type Series,failed -9587,tests.integ.modin.frame.test_loc,test_df_loc_set_with_row_wise_list_like_item[tuple--item1-col_key2],ValueError: Must have equal len keys and value when setting with an iterable,failed -9590,tests.integ.modin.frame.test_iloc,test_df_iloc_get_range_deviating_behavior[row-range_key1],IndexError: positional indexers are out-of-bounds,failed -9591,tests.integ.modin.frame.test_assign,test_assign_invalid_short_column_length_negative,ValueError: Length of values (2) does not match length of index (3),failed -9593,tests.integ.modin.frame.test_iloc,test_df_iloc_get_key_scalar[row--9028751],IndexError: index -9028751 is out of bounds for axis 0 with size 7,failed -9595,tests.integ.modin.frame.test_loc,test_df_loc_set_with_row_wise_list_like_item[tuple--item1-col_key3],ValueError: Must have equal len keys and value when setting with an iterable,failed -9599,tests.integ.modin.frame.test_loc,test_df_loc_set_with_row_wise_list_like_item[tuple--item1-col_key4],ValueError: Must have equal len keys and value when setting with an iterable,failed -9601,tests.integ.modin.frame.test_assign,test_assign_short_series,"AssertionError: DataFrame.index are different +DataFrame shape mismatch +[left]: (4, 8) +[right]: (1, 8)",failed +7042,tests.integ.modin.frame.test_loc,test_df_loc_get_reversed_key_slice_with_unordered_nullable_index[first--2-4-6],"AssertionError: DataFrame are different -Attribute ""names"" are different -[left]: [None] -[right]: ['index']",failed -9602,tests.integ.modin.frame.test_set_index,test_set_index_pass_arrays[False-True-frame_of_ints-Index],"TypeError: The parameter ""keys"" may be a column key, one-dimensional array, or a list containing only valid column keys and one-dimensional arrays. Received column of type ",failed -9607,tests.integ.modin.frame.test_loc,test_df_loc_set_with_row_wise_list_like_item[tuple--item2-col_key0],Failed: DID NOT RAISE ,failed -9610,tests.integ.modin.frame.test_set_index,test_set_index_pass_arrays[False-True-frame_of_ints-array],"KeyError: ""None of ['a'] are in the columns""",failed -9611,tests.integ.modin.frame.test_assign,test_assign_short_series_mismatched_index[reversed_index],"AssertionError: DataFrame.index are different +DataFrame shape mismatch +[left]: (1, 8) +[right]: (0, 8)",failed +7055,tests.integ.modin.test_concat,test_concat_series_names_axis0[foo-None-None],AttributeError: 'DataFrame' object has no attribute 'dtype',failed +7062,tests.integ.modin.test_concat,test_concat_series_names_axis0[None-bar-None],AttributeError: 'DataFrame' object has no attribute 'dtype',failed +7063,tests.integ.modin.frame.test_loc,test_df_loc_get_reversed_key_slice_with_unordered_nullable_index[first--2-6-None],KeyError: 8,failed +7068,tests.integ.modin.frame.test_iloc,test_df_iloc_get_key_bool[col-series-key1],IndexError: positional indexers are out-of-bounds,failed +7070,tests.integ.modin.test_concat,test_concat_series_names_axis0[foo-bar-None],AttributeError: 'DataFrame' object has no attribute 'dtype',failed +7080,tests.integ.modin.frame.test_loc,test_df_loc_get_reversed_key_slice_with_unordered_nullable_index[first--2-6-1],KeyError: 8,failed +7094,tests.integ.modin.frame.test_loc,test_df_loc_get_reversed_key_slice_with_unordered_nullable_index[first--2-6-4],KeyError: 8,failed +7100,tests.integ.modin.test_concat,test_concat_native_object_negative[obj0],"AssertionError: Regex pattern did not match. + Regex: "" is not supported as 'value' argument. Please convert this to Snowpark pandas objects by calling modin.pandas.Series\\(\\)/DataFrame\\(\\)"" + Input: 'first argument must be an iterable of pandas objects, you passed an object of type ""DataFrame""'",failed +7103,tests.integ.modin.test_concat,test_concat_native_object_negative[obj1],"AssertionError: Regex pattern did not match. + Regex: "" is not supported as 'value' argument. Please convert this to Snowpark pandas objects by calling modin.pandas.Series\\(\\)/DataFrame\\(\\)"" + Input: 'first argument must be an iterable of pandas objects, you passed an object of type ""Series""'",failed +7105,tests.integ.modin.test_concat,test_concat_invalid_type_negative,AssertionError: exception type does not match with expected type ,failed +7131,tests.integ.modin.frame.test_iloc,test_df_iloc_get_key_bool[col-series-key5],IndexError: positional indexers are out-of-bounds,failed +7133,tests.integ.modin.frame.test_loc,test_df_loc_get_reversed_key_slice_with_unordered_nullable_index[first--2-6-6],KeyError: 8,failed +7144,tests.integ.modin.test_concat,test_concat_multiindex_columns_axis1[columns19-columns29-expected_cols9],"AssertionError: Index are different -Attribute ""names"" are different -[left]: [None] -[right]: ['index']",failed -9613,tests.integ.modin.frame.test_tz_localize,test_tz_localize_negative[UTC-0-1-None-raise-raise-NotImplementedError],ValueError: The level 1 is not valid,failed -9616,tests.integ.modin.frame.test_tz_localize,test_tz_localize_negative[UTC-0-None-False-raise-raise-NotImplementedError],Failed: DID NOT RAISE ,failed -9618,tests.integ.modin.frame.test_tz_localize,test_tz_localize_negative[UTC-0-None-True-infer-raise-NotImplementedError],Failed: DID NOT RAISE ,failed -9619,tests.integ.modin.frame.test_set_index,test_set_index_pass_arrays[False-True-frame_of_ints-list],"KeyError: ""None of ['a'] are in the columns""",failed -9620,tests.integ.modin.frame.test_loc,test_df_loc_set_with_row_wise_list_like_item[tuple--item2-col_key1],"AssertionError: Regex pattern did not match. - Regex: 'Must have equal len keys and value when setting with an iterable' - Input: 'could not broadcast input array from shape (4,) into shape (2, 3)'",failed -9623,tests.integ.modin.frame.test_tz_localize,test_tz_localize_negative[UTC-0-None-True-NaT-raise-NotImplementedError],Failed: DID NOT RAISE ,failed -9624,tests.integ.modin.frame.test_iloc,test_df_iloc_get_range_deviating_behavior[row-range_key2],IndexError: positional indexers are out-of-bounds,failed -9627,tests.integ.modin.frame.test_tz_localize,test_tz_localize_negative[UTC-0-None-True-ambiguous6-raise-NotImplementedError],Failed: DID NOT RAISE ,failed -9629,tests.integ.modin.frame.test_assign,test_assign_short_series_mismatched_index[different_index],"AssertionError: DataFrame.index are different +Index classes are different +[left]: MultiIndex([(1, 2), + (1, 2)], + ) +[right]: Index([(1, 2), (1, 2, 3)], dtype='object')",failed +7148,tests.integ.modin.frame.test_aggregate,test_agg_axis_1_simple[size],AssertionError: Got type: ,failed +7157,tests.integ.modin.test_concat,test_concat_multiindex_columns_axis1[columns112-columns212-expected_cols12],"AssertionError: Index are different -Attribute ""names"" are different -[left]: [None] -[right]: ['index']",failed -9632,tests.integ.modin.frame.test_tz_localize,test_tz_localize_negative[UTC-0-None-True-raise-shift_forward-NotImplementedError],Failed: DID NOT RAISE ,failed -9633,tests.integ.modin.frame.test_set_index,test_set_index_pass_arrays[False-True-frame_of_ints-],"KeyError: ""None of ['a'] are in the columns""",failed -9636,tests.integ.modin.frame.test_tz_localize,test_tz_localize_negative[UTC-0-None-True-raise-shift_backward-NotImplementedError],Failed: DID NOT RAISE ,failed -9638,tests.integ.modin.frame.test_tz_localize,test_tz_localize_negative[UTC-0-None-True-raise-NaT-NotImplementedError],Failed: DID NOT RAISE ,failed -9639,tests.integ.modin.frame.test_iloc,test_df_iloc_get_range_deviating_behavior[row-range_key3],IndexError: positional indexers are out-of-bounds,failed -9642,tests.integ.modin.frame.test_tz_localize,test_tz_localize_negative[UTC-0-None-True-raise-nonexistent10-NotImplementedError],Failed: DID NOT RAISE ,failed -9643,tests.integ.modin.frame.test_assign,test_assign_basic_callable[identity_fn],"AssertionError: DataFrame.index are different +Index classes are different +[left]: MultiIndex([(1, 2), + (1, 2)], + ) +[right]: Index([(1, 2), (1, 2, 3)], dtype='object')",failed +7160,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice[True-1-1-None],"AssertionError: DataFrame are different -Attribute ""names"" are different -[left]: [None] -[right]: ['index']",failed -9644,tests.integ.modin.frame.test_iloc,test_df_iloc_get_key_scalar[col--7],IndexError: index -7 is out of bounds for axis 0 with size 6,failed -9645,tests.integ.modin.frame.test_tz_localize,test_tz_localize_negative[UTC-0-None-True-infer-shift_forward-NotImplementedError],Failed: DID NOT RAISE ,failed -9647,tests.integ.modin.frame.test_tz_localize,test_tz_localize_negative[UTC+09:00-0-None-None-raise-raise-NotImplementedError],Failed: DID NOT RAISE ,failed -9649,tests.integ.modin.frame.test_set_index,test_set_index_pass_arrays[False-True-frame_of_ints_and_timedelta-Series],"KeyError: ""None of ['a'] are in the columns""",failed -9653,tests.integ.modin.frame.test_iloc,test_df_iloc_get_range_deviating_behavior[col-range_key0],IndexError: positional indexers are out-of-bounds,failed -9655,tests.integ.modin.frame.test_iloc,test_df_iloc_get_key_scalar[col-6],IndexError: positional indexers are out-of-bounds,failed -9656,tests.integ.modin.frame.test_rank,test_rank_unsupported_args_negative[keep-True-min],Failed: DID NOT RAISE ,failed -9657,tests.integ.modin.frame.test_rank,test_rank_unsupported_args_negative[keep-True-dense],Failed: DID NOT RAISE ,failed -9659,tests.integ.modin.frame.test_rank,test_rank_unsupported_args_negative[keep-True-first],Failed: DID NOT RAISE ,failed -9660,tests.integ.modin.frame.test_iloc,test_df_iloc_get_range_deviating_behavior[col-range_key1],IndexError: positional indexers are out-of-bounds,failed -9661,tests.integ.modin.frame.test_rank,test_rank_unsupported_args_negative[keep-True-max],Failed: DID NOT RAISE ,failed -9663,tests.integ.modin.frame.test_loc,test_df_loc_set_with_row_wise_list_like_item[tuple--item2-col_key5],ValueError: Must have equal len keys and value when setting with an iterable,failed -9664,tests.integ.modin.frame.test_rank,test_rank_unsupported_args_negative[keep-True-average],Failed: DID NOT RAISE ,failed -9665,tests.integ.modin.frame.test_rank,test_rank_unsupported_args_negative[keep-False-min],Failed: DID NOT RAISE ,failed -9666,tests.integ.modin.frame.test_assign,test_assign_basic_callable[add_two_cols_fn],"AssertionError: DataFrame.index are different - -Attribute ""names"" are different -[left]: [None] -[right]: ['index']",failed -9667,tests.integ.modin.frame.test_rank,test_rank_unsupported_args_negative[keep-False-dense],Failed: DID NOT RAISE ,failed -9668,tests.integ.modin.frame.test_rank,test_rank_unsupported_args_negative[keep-False-first],Failed: DID NOT RAISE ,failed -9669,tests.integ.modin.frame.test_iloc,test_df_iloc_get_key_scalar[col--8],IndexError: index -8 is out of bounds for axis 0 with size 7,failed -9670,tests.integ.modin.frame.test_iloc,test_df_iloc_get_range_deviating_behavior[col-range_key2],IndexError: positional indexers are out-of-bounds,failed -9671,tests.integ.modin.frame.test_rank,test_rank_unsupported_args_negative[keep-False-max],Failed: DID NOT RAISE ,failed -9674,tests.integ.modin.frame.test_rank,test_rank_unsupported_args_negative[keep-False-average],Failed: DID NOT RAISE ,failed -9676,tests.integ.modin.frame.test_rank,test_rank_unsupported_args_negative[top-True-min],Failed: DID NOT RAISE ,failed -9678,tests.integ.modin.frame.test_assign,test_assign_chained_callable,"AssertionError: DataFrame.index are different +DataFrame shape mismatch +[left]: (7, 7) +[right]: (6, 7)",failed +7166,tests.integ.modin.test_concat,test_concat_multiindex_row_labels_axis0[index11-index21-expected_index1-2],"assert [1, (1, 2)] == [1, [1, 2]] + At index 1 diff: (1, 2) != [1, 2] + Full diff: + - [1, [1, 2]] + ? ^ - + + [1, (1, 2)] + ? ^ +",failed +7170,tests.integ.modin.frame.test_loc,test_df_loc_get_reversed_key_slice_with_unordered_nullable_index[first--9-1-None],KeyError: 10,failed +7174,tests.integ.modin.test_concat,test_concat_multiindex_row_labels_axis0[index12-index22-expected_index2-2],"assert [1, (1,)] == [1, 1] + At index 1 diff: (1,) != 1 + Full diff: + - [1, 1] + + [1, (1,)] + ? + ++",failed +7177,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice[True-1-1-1],"AssertionError: DataFrame are different -Attribute ""names"" are different -[left]: [None] -[right]: ['index']",failed -9679,tests.integ.modin.frame.test_rank,test_rank_unsupported_args_negative[top-True-dense],Failed: DID NOT RAISE ,failed -9681,tests.integ.modin.frame.test_rank,test_rank_unsupported_args_negative[top-True-first],Failed: DID NOT RAISE ,failed -9682,tests.integ.modin.frame.test_iloc,test_df_iloc_get_range_deviating_behavior[col-range_key3],IndexError: positional indexers are out-of-bounds,failed -9683,tests.integ.modin.frame.test_join,test_join_different_levels_negative,"AssertionError: Regex pattern did not match. - Regex: 'Can not merge objects with different column levels' - Input: 'Not allowed to merge between different levels. (1 levels on the left, 2 on the right)'",failed -9685,tests.integ.modin.frame.test_rank,test_rank_unsupported_args_negative[top-True-max],Failed: DID NOT RAISE ,failed -9686,tests.integ.modin.frame.test_unary_op,test_df_unary_all_pos[timedelta64[ns]-abs],TypeError: timedelta64[ns] is not a numeric data type,failed -9687,tests.integ.modin.frame.test_rank,test_rank_unsupported_args_negative[top-True-average],Failed: DID NOT RAISE ,failed -9689,tests.integ.modin.frame.test_rank,test_rank_unsupported_args_negative[top-False-min],Failed: DID NOT RAISE ,failed -9691,tests.integ.modin.frame.test_unary_op,test_df_unary_all_pos[timedelta64[ns]-neg],TypeError: timedelta64[ns] is not a numeric data type,failed -9692,tests.integ.modin.frame.test_rank,test_rank_unsupported_args_negative[top-False-dense],Failed: DID NOT RAISE ,failed -9694,tests.integ.modin.frame.test_rank,test_rank_unsupported_args_negative[top-False-first],Failed: DID NOT RAISE ,failed -9696,tests.integ.modin.frame.test_join,test_join_validate[lvalues0-rvalues0-1:1],Failed: DID NOT RAISE ,failed -9698,tests.integ.modin.frame.test_rank,test_rank_unsupported_args_negative[top-False-max],Failed: DID NOT RAISE ,failed -9699,tests.integ.modin.frame.test_iloc,test_df_iloc_get_key_scalar[col-7],IndexError: positional indexers are out-of-bounds,failed -9702,tests.integ.modin.frame.test_rank,test_rank_unsupported_args_negative[top-False-average],Failed: DID NOT RAISE ,failed -9703,tests.integ.modin.frame.test_join,test_join_validate[lvalues1-rvalues1-1:m],Failed: DID NOT RAISE ,failed -9705,tests.integ.modin.frame.test_rank,test_rank_unsupported_args_negative[bottom-True-min],Failed: DID NOT RAISE ,failed -9707,tests.integ.modin.frame.test_join,test_join_validate[lvalues2-rvalues2-m:1],Failed: DID NOT RAISE ,failed -9708,tests.integ.modin.frame.test_rank,test_rank_unsupported_args_negative[bottom-True-dense],Failed: DID NOT RAISE ,failed -9709,tests.integ.modin.frame.test_loc,test_df_loc_set_with_row_wise_list_like_item[index--item0-col_key2],ValueError: Must have equal len keys and value when setting with an iterable,failed -9710,tests.integ.modin.frame.test_assign,test_assign_self_columns,"AssertionError: DataFrame.index are different +DataFrame shape mismatch +[left]: (2, 7) +[right]: (1, 7)",failed +7180,tests.integ.modin.test_concat,test_concat_multiindex_row_labels_axis0[index13-index23-expected_index3-3],"assert [1, (1, 2)] == [1, [1, 2]] + At index 1 diff: (1, 2) != [1, 2] + Full diff: + - [1, [1, 2]] + ? ^ - + + [1, (1, 2)] + ? ^ +",failed +7185,tests.integ.modin.test_concat,test_concat_multiindex_row_labels_axis0[index14-index24-expected_index4-2],"assert [(1, 2), (1,)] == [[1, 2], 1] + At index 0 diff: (1, 2) != [1, 2] + Full diff: + - [[1, 2], 1] + + [(1, 2), (1,)]",failed +7188,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice[True-1-1-4],"AssertionError: DataFrame are different -Attribute ""names"" are different -[left]: [None] -[right]: ['index']",failed -9712,tests.integ.modin.frame.test_rank,test_rank_unsupported_args_negative[bottom-True-first],Failed: DID NOT RAISE ,failed -9713,tests.integ.modin.frame.test_join,test_join_validate[lvalues3-rvalues3-m:m],Failed: DID NOT RAISE ,failed -9715,tests.integ.modin.frame.test_rank,test_rank_unsupported_args_negative[bottom-True-max],Failed: DID NOT RAISE ,failed -9716,tests.integ.modin.frame.test_iloc,test_df_iloc_get_key_scalar[col-52879115],IndexError: positional indexers are out-of-bounds,failed -9718,tests.integ.modin.frame.test_rank,test_rank_unsupported_args_negative[bottom-True-average],Failed: DID NOT RAISE ,failed -9719,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_series_row_key_df_item_match_pandas[row_pos0-col_pos0-item_values0],"AssertionError: DataFrame.iloc[:, 0] (column name=""A"") are different +DataFrame shape mismatch +[left]: (5, 7) +[right]: (4, 7)",failed +7189,tests.integ.modin.test_concat,test_concat_multiindex_row_labels_axis0[index15-index25-expected_index5-3],"assert [(1, 2), (1, 2)] == [[1, 2], [1, 2]] + At index 0 diff: (1, 2) != [1, 2] + Full diff: + - [[1, 2], [1, 2]] + ? ^ ^ ^ - + + [(1, 2), (1, 2)] + ? ^ ^ ^ +",failed +7192,tests.integ.modin.frame.test_loc,test_df_loc_get_reversed_key_slice_with_unordered_nullable_index[first--9-1-1],KeyError: 10,failed +7195,tests.integ.modin.test_concat,test_concat_multiindex_row_labels_axis0[index16-index26-expected_index6-4],"assert [(1, 2), (1, 2, 3)] == [[1, 2], [1, 2, 3]] + At index 0 diff: (1, 2) != [1, 2] + Full diff: + - [[1, 2], [1, 2, 3]] + ? ^ ^ ^ - + + [(1, 2), (1, 2, 3)] + ? ^ ^ ^ +",failed +7198,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice[True-1-1-10],"AssertionError: DataFrame are different -DataFrame.iloc[:, 0] (column name=""A"") values are different (75.0 %) -[index]: [0, 1, 2, 3] -[left]: [5.0, nan, nan, nan] -[right]: [5, 91, 92, 93]",failed -9720,tests.integ.modin.frame.test_join,test_join_validate[lvalues4-rvalues4-1:m],Failed: DID NOT RAISE ,failed -9722,tests.integ.modin.frame.test_rank,test_rank_unsupported_args_negative[bottom-False-min],Failed: DID NOT RAISE ,failed -9723,tests.integ.modin.frame.test_assign,test_overwrite_columns_via_assign,"AssertionError: DataFrame.index are different +DataFrame shape mismatch +[left]: (7, 7) +[right]: (6, 7)",failed +7199,tests.integ.modin.test_concat,test_concat_multiindex_row_labels_axis0[index17-index27-expected_index7-3],"assert [(1, 2), 1] == [[1, 2], 1] + At index 0 diff: (1, 2) != [1, 2] + Full diff: + - [[1, 2], 1] + ? ^ ^ + + [(1, 2), 1] + ? ^ ^",failed +7204,tests.integ.modin.test_concat,test_concat_multiindex_row_labels_axis0[index18-index28-expected_index8-3],"AssertionError: assert True == False + + where True = isinstance(MultiIndex([(1, 2),\n (1, 2)],\n ), MultiIndex) + + and False = isinstance(Index([(1, 2), (1, 2)], dtype='object'), MultiIndex)",failed +7208,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice[True-1-4-None],"AssertionError: DataFrame are different -Attribute ""names"" are different -[left]: [None] -[right]: ['index']",failed -9724,tests.integ.modin.frame.test_rank,test_rank_unsupported_args_negative[bottom-False-dense],Failed: DID NOT RAISE ,failed -9725,tests.integ.modin.frame.test_join,test_join_validate[lvalues5-rvalues5-m:m],Failed: DID NOT RAISE ,failed -9726,tests.integ.modin.frame.test_iloc,test_df_iloc_get_key_scalar[col--9028751],IndexError: index -9028751 is out of bounds for axis 0 with size 7,failed -9727,tests.integ.modin.frame.test_rank,test_rank_unsupported_args_negative[bottom-False-first],Failed: DID NOT RAISE ,failed -9728,tests.integ.modin.frame.test_set_index,test_set_index_pass_arrays[False-True-frame_of_ints_and_timedelta-Index],"TypeError: The parameter ""keys"" may be a column key, one-dimensional array, or a list containing only valid column keys and one-dimensional arrays. Received column of type ",failed -9729,tests.integ.modin.frame.test_unary_op,test_df_unary_np_none_bool[True-abs],TypeError: object is not a numeric data type,failed -9731,tests.integ.modin.frame.test_join,test_join_validate[lvalues6-rvalues6-m:1],Failed: DID NOT RAISE ,failed -9732,tests.integ.modin.frame.test_rank,test_rank_unsupported_args_negative[bottom-False-max],Failed: DID NOT RAISE ,failed -9734,tests.integ.modin.frame.test_rank,test_rank_unsupported_args_negative[bottom-False-average],Failed: DID NOT RAISE ,failed -9735,tests.integ.modin.frame.test_join,test_join_validate[lvalues7-rvalues7-m:m],Failed: DID NOT RAISE ,failed -9737,tests.integ.modin.frame.test_assign,test_assign_basic_timedelta_series,"AssertionError: DataFrame.index are different +DataFrame shape mismatch +[left]: (4, 7) +[right]: (3, 7)",failed +7209,tests.integ.modin.test_concat,test_concat_multiindex_row_labels_axis0[index19-index29-expected_index9-3],"AssertionError: assert True == False + + where True = isinstance(MultiIndex([(1, 2),\n (1, 2)],\n ), MultiIndex) + + and False = isinstance(Index([(1, 2), (1, 2, 3)], dtype='object'), MultiIndex)",failed +7213,tests.integ.modin.frame.test_loc,test_df_loc_get_reversed_key_slice_with_unordered_nullable_index[first--9-1-4],KeyError: 10,failed +7217,tests.integ.modin.test_concat,test_concat_multiindex_row_labels_axis0[index110-index210-expected_index10-3],"assert [(1, 2), (1,)] == [[1, 2], 1] + At index 0 diff: (1, 2) != [1, 2] + Full diff: + - [[1, 2], 1] + + [(1, 2), (1,)]",failed +7226,tests.integ.modin.test_concat,test_concat_multiindex_row_labels_axis0[index112-index212-expected_index12-5],"AssertionError: assert True == False + + where True = isinstance(MultiIndex([(1, 2),\n (1, 2)],\n ), MultiIndex) + + and False = isinstance(Index([(1, 2), (1, 2, 3)], dtype='object'), MultiIndex)",failed +7231,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice[True-1-4-4],"AssertionError: DataFrame are different -Attribute ""names"" are different -[left]: [None] -[right]: ['index']",failed -9738,tests.integ.modin.frame.test_unary_op,test_df_unary_np_none_bool[True-neg],TypeError: object is not a numeric data type,failed -9739,tests.integ.modin.frame.test_set_index,test_set_index_pass_arrays[False-True-frame_of_ints_and_timedelta-array],"KeyError: ""None of ['a'] are in the columns""",failed -9741,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_series_row_key_df_item_match_pandas[row_pos1-col_pos1-item_values1],"AssertionError: DataFrame.iloc[:, 0] (column name=""A"") are different +DataFrame shape mismatch +[left]: (2, 7) +[right]: (1, 7)",failed +7233,tests.integ.modin.frame.test_loc,test_df_loc_get_reversed_key_slice_with_unordered_nullable_index[first--9-1-6],KeyError: 10,failed +7237,tests.integ.modin.test_concat,test_concat_multiindex_row_labels_axis1[index11-index21-expected_index1-3],"assert [1, (1,)] == [1] + Left contains one more item: (1,) + Full diff: + - [1] + + [1, (1,)]",failed +7240,tests.integ.modin.test_concat,test_concat_multiindex_row_labels_axis1[index12-index22-expected_index2-4],"assert [(1, 2)] == [[1, 2]] + At index 0 diff: (1, 2) != [1, 2] + Full diff: + - [[1, 2]] + ? ^ - + + [(1, 2)] + ? ^ +",failed +7242,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice[True-1-4-10],"AssertionError: DataFrame are different -DataFrame.iloc[:, 0] (column name=""A"") values are different (75.0 %) -[index]: [0, 1, 2, 3] -[left]: [5.0, nan, nan, nan] -[right]: [5, 93, 92, 91]",failed -9743,tests.integ.modin.frame.test_loc,test_df_loc_set_with_row_wise_list_like_item[index--item0-col_key3],ValueError: Must have equal len keys and value when setting with an iterable,failed -9744,tests.integ.modin.frame.test_join,test_join_validate[lvalues8-rvalues8-m:m],Failed: DID NOT RAISE ,failed -9749,tests.integ.modin.frame.test_unary_op,test_df_unary_np_none_bool[False-abs],TypeError: object is not a numeric data type,failed -9751,tests.integ.modin.frame.test_set_index,test_set_index_pass_arrays[False-True-frame_of_ints_and_timedelta-list],"KeyError: ""None of ['a'] are in the columns""",failed -9756,tests.integ.modin.frame.test_unary_op,test_df_unary_np_none_bool[False-neg],TypeError: object is not a numeric data type,failed -9758,tests.integ.modin.frame.test_iloc,test_df_iloc_get_native_pd_key_raises_type_error_negative[key0-\\ is\\ not\\ supported\\ as\\ 'value'\\ argument\\.\\ Please\\ convert\\ this\\ to\\ Snowpark\\ pandas\\ objects\\ by\\ calling\\ modin\\.pandas\\.Series\\(\\)/DataFrame\\(\\)-TypeError],"ValueError: -Location based indexing can only have [integer, integer slice (START point is -INCLUDED, END point is EXCLUDED), listlike of integers, boolean array] types.",failed -9759,tests.integ.modin.frame.test_set_index,test_set_index_pass_arrays[False-True-frame_of_ints_and_timedelta-],"KeyError: ""None of ['a'] are in the columns""",failed -9762,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_series_row_key_df_item_match_pandas[row_pos2-col_pos2-item_values2],"AssertionError: DataFrame.iloc[:, 1] (column name=""B"") are different +DataFrame shape mismatch +[left]: (4, 7) +[right]: (3, 7)",failed +7272,tests.integ.modin.test_concat,test_concat_multiindex_row_labels_axis1[index13-index23-expected_index3-5],AssertionError: Length of new_levels (3) must be <= self.nlevels (2),failed +7277,tests.integ.modin.test_concat,test_concat_multiindex_row_labels_axis1[index14-index24-expected_index4-4],"AssertionError: assert True == False + + where True = isinstance(MultiIndex([(1, 2)],\n ), MultiIndex) + + and False = isinstance(Index([(1, 2)], dtype='object'), MultiIndex)",failed +7278,tests.integ.modin.frame.test_loc,test_df_loc_get_reversed_key_slice_with_unordered_nullable_index[first--9-4-None],KeyError: 13,failed +7284,tests.integ.modin.test_concat,test_concat_multiindex_row_labels_axis1[index15-index25-expected_index5-4],"AssertionError: assert True == False + + where True = isinstance(MultiIndex([(1, 2)],\n ), MultiIndex) + + and False = isinstance(Index([(1, 2), (1, 2, 3)], dtype='object'), MultiIndex)",failed +7301,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice[True--1--1-None],"AssertionError: DataFrame are different -DataFrame.iloc[:, 1] (column name=""B"") values are different (75.0 %) -[index]: [0, 1, 2, 3] -[left]: [nan, nan, 12.0, nan] -[right]: [95, 92, 12, 98]",failed -9765,tests.integ.modin.frame.test_iloc,test_df_iloc_get_native_pd_key_raises_type_error_negative[key1-\\ is\\ not\\ supported\\ as\\ 'value'\\ argument\\.\\ Please\\ convert\\ this\\ to\\ Snowpark\\ pandas\\ objects\\ by\\ calling\\ modin\\.pandas\\.Series\\(\\)/DataFrame\\(\\)-TypeError],"ValueError: -Location based indexing can only have [integer, integer slice (START point is -INCLUDED, END point is EXCLUDED), listlike of integers, boolean array] types.",failed -9768,tests.integ.modin.frame.test_unary_op,test_df_unary_invalid_in_native_negative[data0-abs],TypeError: object is not a numeric data type,failed -9769,tests.integ.modin.frame.test_iloc,"test_df_iloc_get_native_pd_key_raises_type_error_negative[key2-\\.iloc\\ requires\\ numeric\\ indexers,\\ got\\ \\[Ellipsis,\\ 1\\]-IndexError]","ValueError: -Location based indexing can only have [integer, integer slice (START point is -INCLUDED, END point is EXCLUDED), listlike of integers, boolean array] types.",failed -9771,tests.integ.modin.frame.test_loc,test_df_loc_set_with_row_wise_list_like_item[index--item0-col_key4],ValueError: Must have equal len keys and value when setting with an iterable,failed -9772,tests.integ.modin.frame.test_set_index,test_set_index_pass_arrays[False-False-frame_of_ints-Series],"KeyError: ""None of ['a'] are in the columns""",failed -9774,tests.integ.modin.frame.test_unary_op,test_df_unary_invalid_in_native_negative[data0-neg],TypeError: object is not a numeric data type,failed -9775,tests.integ.modin.frame.test_iloc,test_df_iloc_get_key_raises_indexing_error_negative[key0-Too many indexers],Failed: DID NOT RAISE ,failed -9777,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_series_row_key_df_item_match_pandas[row_pos3-col_pos3-item_values3],"AssertionError: DataFrame.iloc[:, 0] (column name=""A"") are different +DataFrame shape mismatch +[left]: (1, 7) +[right]: (0, 7)",failed +7302,tests.integ.modin.frame.test_nlargest_nsmallest,test_nlargest_nsmallest_all_keep_not_implemented[nlargest],Failed: DID NOT RAISE ,failed +7303,tests.integ.modin.test_concat,test_concat_multiindex_row_labels_axis1[index17-index27-expected_index7-6],AssertionError: Length of new_levels (3) must be <= self.nlevels (2),failed +7304,tests.integ.modin.frame.test_loc,test_df_loc_get_reversed_key_slice_with_unordered_nullable_index[first--9-4-1],KeyError: 13,failed +7305,tests.integ.modin.frame.test_nlargest_nsmallest,test_nlargest_nsmallest_all_keep_not_implemented[nsmallest],Failed: DID NOT RAISE ,failed +7309,tests.integ.modin.test_concat,test_concat_multiindex_row_labels_axis1_negative[index10-index20],Failed: DID NOT RAISE ,failed +7313,tests.integ.modin.test_concat,test_concat_multiindex_row_labels_axis1_negative[index11-index21],Failed: DID NOT RAISE ,failed +7315,tests.integ.modin.frame.test_nlargest_nsmallest,test_nlargest_nsmallest_invalid_label[nlargest-None],AssertionError: exception type does not match with expected type ,failed +7320,tests.integ.modin.frame.test_loc,test_df_loc_get_reversed_key_slice_with_unordered_nullable_index[first--9-4-4],KeyError: 13,failed +7321,tests.integ.modin.frame.test_nlargest_nsmallest,test_nlargest_nsmallest_invalid_label[nsmallest-None],AssertionError: exception type does not match with expected type ,failed +7323,tests.integ.modin.test_concat,test_concat_multiindex_row_labels_axis1_negative[index12-index22],IndexError: tuple index out of range,failed +7326,tests.integ.modin.frame.test_aggregate,test_agg_axis_1_missing_label,KeyError: 'Column(s) [2] do not exist',failed +7327,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice[True--1--1--1],"AssertionError: DataFrame are different -DataFrame.iloc[:, 0] (column name=""A"") values are different (50.0 %) -[index]: [0, 1, 2, 3] -[left]: [nan, 8.0, nan, nan] -[right]: [92.0, 8.0, 98.0, nan] -At positional index 0, first diff: nan != 92.0",failed -9778,tests.integ.modin.frame.test_unary_op,test_df_unary_invalid_in_sf_negative[data0-abs],Failed: DID NOT RAISE ,failed -9781,tests.integ.modin.frame.test_unary_op,test_df_unary_invalid_in_sf_negative[data0-neg],Failed: DID NOT RAISE ,failed -9783,tests.integ.modin.frame.test_iloc,test_df_iloc_get_key_raises_indexing_error_negative[key2-Too many indexers],Failed: DID NOT RAISE ,failed -9784,tests.integ.modin.frame.test_unary_op,test_df_unary_invalid_in_sf_negative[data1-abs],Failed: DID NOT RAISE ,failed -9787,tests.integ.modin.frame.test_unary_op,test_df_unary_invalid_in_sf_negative[data1-neg],Failed: DID NOT RAISE ,failed -9789,tests.integ.modin.frame.test_unary_op,test_df_unary_invalid_in_sf_negative[data2-abs],Failed: DID NOT RAISE ,failed -9790,tests.integ.modin.frame.test_iloc,test_df_iloc_get_key_raises_indexing_error_negative[key3-indexer may only contain one '...' entry],"ValueError: -Location based indexing can only have [integer, integer slice (START point is -INCLUDED, END point is EXCLUDED), listlike of integers, boolean array] types.",failed -9792,tests.integ.modin.frame.test_unary_op,test_df_unary_invalid_in_sf_negative[data2-neg],Failed: DID NOT RAISE ,failed -9794,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_series_row_key_df_item_match_pandas[row_pos4-col_pos4-item_values4],"AssertionError: DataFrame.iloc[:, 0] (column name=""A"") are different +DataFrame shape mismatch +[left]: (1, 7) +[right]: (0, 7)",failed +7329,tests.integ.modin.frame.test_nlargest_nsmallest,test_nlargest_nsmallest_duplicate_labels[nlargest],AttributeError: 'DataFrame' object has no attribute 'dtype',failed +7330,tests.integ.modin.test_concat,test_concat_multiindex_row_labels_axis1_negative[index13-index23],"NotImplementedError: Can only union MultiIndex with MultiIndex or Index of tuples, try mi.to_flat_index().union(other) instead.",failed +7331,tests.integ.modin.frame.test_loc,test_df_loc_get_reversed_key_slice_with_unordered_nullable_index[first--9-4-6],KeyError: 13,failed +7333,tests.integ.modin.frame.test_aggregate,test_agg_numeric_only_negative[max],Failed: DID NOT RAISE ,failed +7335,tests.integ.modin.frame.test_aggregate,test_agg_numeric_only_negative[min],Failed: DID NOT RAISE ,failed +7337,tests.integ.modin.frame.test_aggregate,test_agg_numeric_only_negative[sum],Failed: DID NOT RAISE ,failed +7339,tests.integ.modin.frame.test_aggregate,test_agg_numeric_only_negative[std],Failed: DID NOT RAISE ,failed +7341,tests.integ.modin.frame.test_nlargest_nsmallest,test_nlargest_nsmallest_duplicate_labels[nsmallest],AttributeError: 'DataFrame' object has no attribute 'dtype',failed +7342,tests.integ.modin.frame.test_aggregate,test_agg_numeric_only_negative[var],Failed: DID NOT RAISE ,failed +7343,tests.integ.modin.frame.test_aggregate,test_agg_numeric_only_negative[mean],Failed: DID NOT RAISE ,failed +7344,tests.integ.modin.frame.test_loc,test_df_loc_get_reversed_key_slice_with_unordered_nullable_index[first--9-6-None],KeyError: 15,failed +7345,tests.integ.modin.frame.test_aggregate,test_agg_numeric_only_negative[median],Failed: DID NOT RAISE ,failed +7346,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice[True--1-1-None],"AssertionError: DataFrame are different -DataFrame.iloc[:, 0] (column name=""A"") values are different (75.0 %) -[index]: [0, 1, 2, 3] -[left]: [5.0, nan, nan, nan] -[right]: [5, 91, 91, 91]",failed -9795,tests.integ.modin.frame.test_join,test_join_validate_negative[lvalues0-rvalues0-1:1],pandas.errors.MergeError: Merge keys are not unique in right dataset; not a one-to-one merge,failed -9796,tests.integ.modin.frame.test_loc,test_df_loc_set_with_row_wise_list_like_item[index--item0-col_key5],ValueError: Must have equal len keys and value when setting with an iterable,failed -9799,tests.integ.modin.frame.test_iloc,test_df_iloc_get_invalid_slice_key_negative[row-key0],"ValueError: -Location based indexing can only have [integer, integer slice (START point is -INCLUDED, END point is EXCLUDED), listlike of integers, boolean array] types.",failed -9800,tests.integ.modin.frame.test_unary_op,test_ser_unary_invalid_in_both_native_and_sf_negative[invalid_value0-Invalid argument types for function-abs],TypeError: object is not a numeric data type,failed -9802,tests.integ.modin.frame.test_astype,test_input_negative,"AssertionError: Regex pattern did not match. - Regex: 'not found in columns' - Input: ""'Only a column name can be used for the key in a dtype mappings argument.'""",failed -9804,tests.integ.modin.frame.test_iloc,test_df_iloc_get_invalid_slice_key_negative[row-key1],"ValueError: -Location based indexing can only have [integer, integer slice (START point is -INCLUDED, END point is EXCLUDED), listlike of integers, boolean array] types.",failed -9807,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_series_row_key_df_item_match_pandas[row_pos5-col_pos5-item_values5],"AssertionError: DataFrame.iloc[:, 0] (column name=""A"") are different +DataFrame shape mismatch +[left]: (3, 7) +[right]: (2, 7)",failed +7347,tests.integ.modin.frame.test_nlargest_nsmallest,test_nlargest_nsmallest_non_numeric_types[nlargest-data0],"TypeError: Column 'A' has dtype object, cannot use method 'nlargest' with this dtype",failed +7349,tests.integ.modin.frame.test_aggregate,test_agg_numeric_only_negative[count],Failed: DID NOT RAISE ,failed +7354,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice[True--1-1--1],"AssertionError: DataFrame are different -DataFrame.iloc[:, 0] (column name=""A"") values are different (75.0 %) -[index]: [0, 1, 2, 3] -[left]: [5.0, nan, nan, nan] -[right]: [5, 91, 92, 93]",failed -9808,tests.integ.modin.frame.test_join,test_join_validate_negative[lvalues1-rvalues1-m:1],pandas.errors.MergeError: Merge keys are not unique in right dataset; not a many-to-one merge,failed -9809,tests.integ.modin.frame.test_iloc,test_df_iloc_get_invalid_slice_key_negative[row-key2],"ValueError: -Location based indexing can only have [integer, integer slice (START point is -INCLUDED, END point is EXCLUDED), listlike of integers, boolean array] types.",failed -9815,tests.integ.modin.frame.test_iloc,test_df_iloc_get_invalid_slice_key_negative[col-key0],"ValueError: -Location based indexing can only have [integer, integer slice (START point is -INCLUDED, END point is EXCLUDED), listlike of integers, boolean array] types.",failed -9817,tests.integ.modin.frame.test_join,test_join_validate_negative[lvalues2-rvalues2-1:1],pandas.errors.MergeError: Merge keys are not unique in left dataset; not a one-to-one merge,failed -9819,tests.integ.modin.frame.test_unary_op,test_ser_unary_invalid_in_both_native_and_sf_negative[invalid_value0-Invalid argument types for function-neg],TypeError: object is not a numeric data type,failed -9820,tests.integ.modin.frame.test_loc,test_df_loc_set_with_row_wise_list_like_item[index--item1-col_key1],"AssertionError: Regex pattern did not match. - Regex: 'Must have equal len keys and value when setting with an iterable' - Input: 'could not broadcast input array from shape (2,) into shape (2, 3)'",failed -9821,tests.integ.modin.frame.test_join,test_join_validate_negative[lvalues3-rvalues3-1:m],pandas.errors.MergeError: Merge keys are not unique in left dataset; not a one-to-many merge,failed -9822,tests.integ.modin.frame.test_unary_op,test_ser_unary_invalid_in_both_native_and_sf_negative[invalid_value1-Invalid argument types for function-abs],TypeError: object is not a numeric data type,failed -9823,tests.integ.modin.frame.test_set_index,test_set_index_pass_arrays[False-False-frame_of_ints-Index],"TypeError: The parameter ""keys"" may be a column key, one-dimensional array, or a list containing only valid column keys and one-dimensional arrays. Received column of type ",failed -9824,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_series_row_key_df_item_match_pandas[row_pos7-col_pos7-item_values7],"AssertionError: DataFrame.iloc[:, 1] (column name=""B"") are different +DataFrame shape mismatch +[left]: (3, 7) +[right]: (2, 7)",failed +7360,tests.integ.modin.test_concat,test_concat_multiindex_row_labels_axis1_negative[index14-index24],AssertionError: Length of new_levels (2) must be <= self.nlevels (1),failed +7361,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice[True--1-1-1],"AssertionError: DataFrame are different -DataFrame.iloc[:, 1] (column name=""B"") values are different (75.0 %) -[index]: [0, 1, 2, 3] -[left]: [nan, nan, nan, 15.0] -[right]: [93, 91, 92, 15]",failed -9825,tests.integ.modin.frame.test_iloc,test_df_iloc_get_invalid_slice_key_negative[col-key1],"ValueError: -Location based indexing can only have [integer, integer slice (START point is -INCLUDED, END point is EXCLUDED), listlike of integers, boolean array] types.",failed -9826,tests.integ.modin.frame.test_unary_op,test_ser_unary_invalid_in_both_native_and_sf_negative[invalid_value1-Invalid argument types for function-neg],TypeError: object is not a numeric data type,failed -9829,tests.integ.modin.frame.test_set_index,test_set_index_pass_arrays[False-False-frame_of_ints-array],"KeyError: ""None of ['a'] are in the columns""",failed -9830,tests.integ.modin.frame.test_iloc,test_df_iloc_get_invalid_slice_key_negative[col-key2],"ValueError: -Location based indexing can only have [integer, integer slice (START point is -INCLUDED, END point is EXCLUDED), listlike of integers, boolean array] types.",failed -9832,tests.integ.modin.frame.test_loc,test_df_loc_set_with_row_wise_list_like_item[index--item1-col_key2],ValueError: Must have equal len keys and value when setting with an iterable,failed -9834,tests.integ.modin.frame.test_unary_op,test_ser_unary_invalid_in_both_native_and_sf_negative[invalid_value2-is not recognized-abs],TypeError: object is not a numeric data type,failed -9836,tests.integ.modin.frame.test_iloc,test_df_iloc_get_non_numeric_key_negative[row-None],"ValueError: -Location based indexing can only have [integer, integer slice (START point is -INCLUDED, END point is EXCLUDED), listlike of integers, boolean array] types.",failed -9838,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_series_row_key_df_item_match_pandas[row_pos8-col_pos8-item_values8],"AssertionError: DataFrame.iloc[:, 0] (column name=""A"") are different +DataFrame shape mismatch +[left]: (2, 7) +[right]: (1, 7)",failed +7376,tests.integ.modin.frame.test_nlargest_nsmallest,test_nlargest_nsmallest_non_numeric_types[nlargest-data1],TypeError: '<' not supported between instances of 'str' and 'float',failed +7377,tests.integ.modin.frame.test_aggregate,test_agg_min_count_negative[TEST],TypeError: '>' not supported between instances of 'str' and 'int',failed +7378,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice[True--1-4-None],"AssertionError: DataFrame are different -DataFrame.iloc[:, 0] (column name=""A"") values are different (75.0 %) -[index]: [0, 1, 2, 3] -[left]: [5.0, nan, nan, nan] -[right]: [5, 93, 93, 93]",failed -9840,tests.integ.modin.frame.test_unary_op,test_ser_unary_invalid_in_both_native_and_sf_negative[invalid_value2-is not recognized-neg],TypeError: object is not a numeric data type,failed -9841,tests.integ.modin.frame.test_iloc,test_df_iloc_get_non_numeric_key_negative[row-True],"ValueError: -Location based indexing can only have [integer, integer slice (START point is -INCLUDED, END point is EXCLUDED), listlike of integers, boolean array] types.",failed -9845,tests.integ.modin.frame.test_iloc,test_df_iloc_get_non_numeric_key_negative[row-False],"ValueError: -Location based indexing can only have [integer, integer slice (START point is -INCLUDED, END point is EXCLUDED), listlike of integers, boolean array] types.",failed -9846,tests.integ.modin.frame.test_unary_op,test_ser_unary_invalid_in_both_native_and_sf_negative[invalid_value3- Numeric value 'bad_str' is not recognized-abs],TypeError: object is not a numeric data type,failed -9847,tests.integ.modin.frame.test_loc,test_df_loc_set_with_row_wise_list_like_item[index--item1-col_key3],ValueError: Must have equal len keys and value when setting with an iterable,failed -9848,tests.integ.modin.frame.test_join,test_join_validate_negative[lvalues4-rvalues4-1:1],pandas.errors.MergeError: Merge keys are not unique in either left or right dataset; not a one-to-one merge,failed -9852,tests.integ.modin.frame.test_iloc,test_df_iloc_get_non_numeric_key_negative[row--3.14],"ValueError: -Location based indexing can only have [integer, integer slice (START point is -INCLUDED, END point is EXCLUDED), listlike of integers, boolean array] types.",failed -9853,tests.integ.modin.frame.test_unary_op,test_ser_unary_invalid_in_both_native_and_sf_negative[invalid_value3- Numeric value 'bad_str' is not recognized-neg],TypeError: object is not a numeric data type,failed -9855,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_series_row_key_df_item_match_pandas[row_pos9-col_pos9-item_values9],"AssertionError: DataFrame.iloc[:, 1] (column name=""B"") are different +DataFrame shape mismatch +[left]: (6, 7) +[right]: (5, 7)",failed +7380,tests.integ.modin.frame.test_loc,test_df_loc_get_reversed_key_slice_with_unordered_nullable_index[first--9-6-1],KeyError: 15,failed +7381,tests.integ.modin.frame.test_aggregate,test_agg_min_count_negative[5.3],Failed: DID NOT RAISE ,failed +7382,tests.integ.modin.frame.test_aggregate,test_agg_min_count_negative[5.0],Failed: DID NOT RAISE ,failed +7383,tests.integ.modin.frame.test_nlargest_nsmallest,test_nlargest_nsmallest_non_numeric_types[nsmallest-data0],"TypeError: Column 'A' has dtype object, cannot use method 'nsmallest' with this dtype",failed +7384,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice[True--1-4--1],"AssertionError: DataFrame are different -DataFrame.iloc[:, 1] (column name=""B"") values are different (75.0 %) -[index]: [0, 1, 2, 3] -[left]: [6.0, nan, nan, nan] -[right]: [6, 91, 92, 93]",failed -9859,tests.integ.modin.frame.test_iloc,test_df_iloc_get_non_numeric_key_negative[row-3.142857142857143],"ValueError: -Location based indexing can only have [integer, integer slice (START point is -INCLUDED, END point is EXCLUDED), listlike of integers, boolean array] types.",failed -9860,tests.integ.modin.frame.test_set_index,test_set_index_pass_arrays[False-False-frame_of_ints-list],"KeyError: ""None of ['a'] are in the columns""",failed -9862,tests.integ.modin.frame.test_join,test_join_validate_negative[lvalues5-rvalues5-1:m],pandas.errors.MergeError: Merge keys are not unique in left dataset; not a one-to-many merge,failed -9864,tests.integ.modin.frame.test_iloc,test_df_iloc_get_non_numeric_key_negative[row-nan],"ValueError: -Location based indexing can only have [integer, integer slice (START point is -INCLUDED, END point is EXCLUDED), listlike of integers, boolean array] types.",failed -9866,tests.integ.modin.frame.test_loc,test_df_loc_set_with_row_wise_list_like_item[index--item1-col_key4],ValueError: Must have equal len keys and value when setting with an iterable,failed -9868,tests.integ.modin.frame.test_set_index,test_set_index_pass_arrays[False-False-frame_of_ints-],"KeyError: ""None of ['a'] are in the columns""",failed -9869,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_series_row_key_df_item_match_pandas[row_pos10-col_pos10-item_values10],"AssertionError: DataFrame.iloc[:, 1] (column name=""B"") are different +DataFrame shape mismatch +[left]: (6, 7) +[right]: (5, 7)",failed +7385,tests.integ.modin.test_concat,test_concat_multiindex_columns_axis0[columns14-columns24-expected_cols4],IndexError: tuple index out of range,failed +7387,tests.integ.modin.frame.test_aggregate,test_named_agg_not_supported_axis_1,"AssertionError: One of the passed functions has an invalid type: : None, only callable or string is acceptable.",failed +7388,tests.integ.modin.frame.test_nlargest_nsmallest,test_nlargest_nsmallest_non_numeric_types[nsmallest-data1],TypeError: '<' not supported between instances of 'str' and 'int',failed +7389,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice[True--1-4-1],"AssertionError: DataFrame are different -DataFrame.iloc[:, 1] (column name=""B"") values are different (50.0 %) -[index]: [0, 1, 2, 3] -[left]: [6.0, nan, nan, 15.0] -[right]: [6, 91, 93, 15]",failed -9871,tests.integ.modin.frame.test_iloc,test_df_iloc_get_non_numeric_key_negative[row-key6],"ValueError: -Location based indexing can only have [integer, integer slice (START point is -INCLUDED, END point is EXCLUDED), listlike of integers, boolean array] types.",failed -9875,tests.integ.modin.frame.test_join,test_join_validate_negative[lvalues6-rvalues6-m:1],pandas.errors.MergeError: Merge keys are not unique in right dataset; not a many-to-one merge,failed -9878,tests.integ.modin.frame.test_set_index,test_set_index_pass_arrays[False-False-frame_of_ints_and_timedelta-Series],"KeyError: ""None of ['a'] are in the columns""",failed -9880,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_series_row_key_df_item_match_pandas[row_pos11-col_pos11-item_values11],"AssertionError: DataFrame.iloc[:, 1] (column name=""B"") are different +DataFrame shape mismatch +[left]: (5, 7) +[right]: (4, 7)",failed +7390,tests.integ.modin.frame.test_loc,test_df_loc_get_reversed_key_slice_with_unordered_nullable_index[first--9-6-4],KeyError: 15,failed +7393,tests.integ.modin.frame.test_aggregate,test_aggregate_unsupported_aggregation_SNOW_1526422[user_defined_function],Failed: DID NOT RAISE ,failed +7396,tests.integ.modin.frame.test_iloc,test_df_iloc_get_key_bool[col-index-key1],IndexError: positional indexers are out-of-bounds,failed +7398,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice[True--1-4-4],"AssertionError: DataFrame are different -DataFrame.iloc[:, 1] (column name=""B"") values are different (50.0 %) -[index]: [0, 1, 2, 3] -[left]: [nan, 9.0, nan, 15.0] -[right]: [94, 9, 92, 15]",failed -9890,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_series_row_key_df_item_match_pandas[row_pos12-col_pos12-item_values12],"AssertionError: DataFrame.iloc[:, 2] (column name=""C"") are different +DataFrame shape mismatch +[left]: (2, 7) +[right]: (1, 7)",failed +7400,tests.integ.modin.frame.test_aggregate,test_aggregate_unsupported_aggregation_SNOW_1526422[list_with_user_defined_function_and_string],Failed: DID NOT RAISE ,failed +7405,tests.integ.modin.test_concat,test_concat_multiindex_columns_axis0[columns16-columns26-expected_cols6],AssertionError: Length of new_levels (3) must be <= self.nlevels (2),failed +7406,tests.integ.modin.frame.test_aggregate,test_aggregate_unsupported_aggregation_SNOW_1526422[tuple_with_user_defined_function_and_string],Failed: DID NOT RAISE ,failed +7408,tests.integ.modin.frame.test_loc,test_df_loc_get_reversed_key_slice_with_unordered_nullable_index[first--9-6-6],KeyError: 15,failed +7412,tests.integ.modin.frame.test_aggregate,test_aggregate_unsupported_aggregation_SNOW_1526422[set_with_user_defined_function_and_string],Failed: DID NOT RAISE ,failed +7419,tests.integ.modin.test_concat,test_concat_multiindex_columns_axis0[columns17-columns27-expected_cols7],"NotImplementedError: Can only union MultiIndex with MultiIndex or Index of tuples, try mi.to_flat_index().union(other) instead.",failed +7426,tests.integ.modin.frame.test_loc,test_df_loc_get_with_non_monotonic_index_get_key_slice[key0-expected_index0],"KeyError: ""Cannot get left slice bound for non-unique label: 'b'""",failed +7428,tests.integ.modin.test_concat,test_concat_multiindex_columns_axis0[columns19-columns29-expected_cols9],"AssertionError: Index are different -DataFrame.iloc[:, 2] (column name=""C"") values are different (100.0 %) -[index]: [0, 1, 2, 3] -[left]: [nan, nan, nan, nan] -[right]: [93, 91, 92, 94]",failed -9891,tests.integ.modin.frame.test_loc,test_df_loc_set_with_row_wise_list_like_item[index--item2-col_key0],Failed: DID NOT RAISE ,failed -9902,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_series_row_key_df_item_match_pandas[row_pos13-col_pos13-item_values13],"AssertionError: DataFrame.iloc[:, 1] (column name=""B"") are different +Index classes are different +[left]: MultiIndex([(1, 2)], + ) +[right]: Index([(1, 2), (1, 2, 3)], dtype='object')",failed +7440,tests.integ.modin.frame.test_loc,test_df_loc_get_with_non_monotonic_index_get_key_slice[key1-expected_index1],KeyError: 'a',failed +7451,tests.integ.modin.frame.test_aggregate,test_aggregate_unsupported_aggregation_SNOW_1526422[tuple_with_builtins_and_native_pandas_function],ValueError: cannot combine transform and aggregation operations,failed +7454,tests.integ.modin.frame.test_aggregate,test_aggregate_unsupported_aggregation_SNOW_1526422[dict],Failed: DID NOT RAISE ,failed +7459,tests.integ.modin.test_concat,test_concat_multiindex_columns_axis0[columns110-columns210-expected_cols10],AssertionError: Length of new_levels (2) must be <= self.nlevels (1),failed +7461,tests.integ.modin.frame.test_aggregate,test_aggregate_unsupported_aggregation_SNOW_1526422[named_agg0],TypeError: () missing 1 required positional argument: 'aggfunc',failed +7469,tests.integ.modin.frame.test_aggregate,test_aggregate_unsupported_aggregation_SNOW_1526422[named_agg1],TypeError: () missing 1 required positional argument: 'aggfunc',failed +7474,tests.integ.modin.frame.test_loc,test_df_loc_get_with_non_monotonic_index_get_key_slice[key2-expected_index2],KeyError: 'f',failed +7475,tests.integ.modin.test_concat,test_concat_multiindex_columns_axis0[columns112-columns212-expected_cols12],AssertionError: Length of new_levels (3) must be <= self.nlevels (2),failed +7477,tests.integ.modin.frame.test_aggregate,test_aggregate_unsupported_aggregation_SNOW_1526422[named_agg2],TypeError: () missing 1 required positional argument: 'aggfunc',failed +7483,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice[True-2-1-None],"AssertionError: DataFrame are different -DataFrame.iloc[:, 1] (column name=""B"") values are different (50.0 %) -[index]: [0, 1, 2, 3] -[left]: [6.0, nan, nan, 15.0] -[right]: [6, 99, 101, 15]",failed -9907,tests.integ.modin.frame.test_unstack,test_unstack_input_no_multiindex[timedelta64[ns]-index_names0],[XPASS(strict)] ,failed -9908,tests.integ.modin.frame.test_unstack,test_unstack_input_no_multiindex[timedelta64[ns]-index_names1],[XPASS(strict)] ,failed -9911,tests.integ.modin.frame.test_unstack,test_unstack_input_no_multiindex[timedelta64[ns]-index_names2],[XPASS(strict)] ,failed -9912,tests.integ.modin.frame.test_loc,test_df_loc_set_with_row_wise_list_like_item[index--item2-col_key1],"AssertionError: Regex pattern did not match. - Regex: 'Must have equal len keys and value when setting with an iterable' - Input: 'could not broadcast input array from shape (4,) into shape (2, 3)'",failed -9914,tests.integ.modin.frame.test_unstack,test_unstack_input_no_multiindex[timedelta64[ns]-index_names3],[XPASS(strict)] ,failed -9919,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_series_row_key_df_item_match_pandas[row_pos14-col_pos14-item_values14],"AssertionError: DataFrame.iloc[:, 1] (column name=""B"") are different +DataFrame shape mismatch +[left]: (4, 7) +[right]: (3, 7)",failed +7488,tests.integ.modin.frame.test_loc,test_df_loc_get_with_non_monotonic_index_get_key_slice[key3-expected_index3],"KeyError: ""Cannot get left slice bound for non-unique label: 'd'""",failed +7489,tests.integ.modin.frame.test_aggregate,test_named_agg_passed_in_via_star_kwargs,TypeError: () missing 1 required positional argument: 'aggfunc',failed +7496,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice_negative[key0-ValueError-slice step cannot be zero],"AssertionError: Regex pattern did not match. + Regex: 'slice step cannot be zero' + Input: 'Step must not be zero'",failed +7501,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice_negative[key1-TypeError-slice step must be integer],"AssertionError: Regex pattern did not match. + Regex: 'slice step must be integer' + Input: ""Wrong type for value 1.1""",failed +7503,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice[True-2-1-4],"AssertionError: DataFrame are different -DataFrame.iloc[:, 1] (column name=""B"") values are different (50.0 %) -[index]: [0, 1, 2, 3] -[left]: [6.0, nan, nan, 15.0] -[right]: [6, 99, 101, 15]",failed -9928,tests.integ.modin.frame.test_unstack,test_unstack_sort_notimplemented,Failed: DID NOT RAISE ,failed -9930,tests.integ.modin.frame.test_unstack,test_unstack_non_integer_level_notimplemented,Failed: DID NOT RAISE ,failed -9932,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_series_row_key_df_item_match_pandas[row_pos15-col_pos15-item_values15],"AssertionError: DataFrame.iloc[:, 0] (column name=""A"") are different +DataFrame shape mismatch +[left]: (3, 7) +[right]: (2, 7)",failed +7506,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice[True-2-1-10],"AssertionError: DataFrame are different -DataFrame.iloc[:, 0] (column name=""A"") values are different (25.0 %) -[index]: [0, 1, 2, 3] -[left]: [5.0, nan, 11.0, 14.0] -[right]: [5, 99, 11, 14]",failed -9946,tests.integ.modin.frame.test_astype,test_astype_from_timestamp_ltz[uint64],"TypeError: Converting from datetime64[ns, America/Los_Angeles] to uint64 is not supported. Do obj.astype('int64').astype(dtype) instead",failed -9951,tests.integ.modin.frame.test_iloc,test_df_iloc_get_non_numeric_key_negative[row-key7],"ValueError: -Location based indexing can only have [integer, integer slice (START point is -INCLUDED, END point is EXCLUDED), listlike of integers, boolean array] types.",failed -9956,tests.integ.modin.frame.test_set_index,test_set_index_pass_arrays[False-False-frame_of_ints_and_timedelta-Index],"TypeError: The parameter ""keys"" may be a column key, one-dimensional array, or a list containing only valid column keys and one-dimensional arrays. Received column of type ",failed -9962,tests.integ.modin.frame.test_set_index,test_set_index_pass_arrays[False-False-frame_of_ints_and_timedelta-array],"KeyError: ""None of ['a'] are in the columns""",failed -9969,tests.integ.modin.frame.test_set_index,test_set_index_pass_arrays[False-False-frame_of_ints_and_timedelta-list],"KeyError: ""None of ['a'] are in the columns""",failed -9974,tests.integ.modin.frame.test_loc,test_df_loc_set_with_row_wise_list_like_item[index--item2-col_key5],ValueError: Must have equal len keys and value when setting with an iterable,failed -9982,tests.integ.modin.frame.test_set_index,test_set_index_pass_arrays[False-False-frame_of_ints_and_timedelta-],"KeyError: ""None of ['a'] are in the columns""",failed -10057,tests.integ.modin.frame.test_iloc,test_df_iloc_get_non_numeric_key_negative[row-key8],Failed: DID NOT RAISE ,failed -10086,tests.integ.modin.frame.test_loc,test_df_loc_set_number_of_cols_mismatch_negative,Failed: DID NOT RAISE ,failed -10087,tests.integ.modin.test_from_pandas_to_pandas,test_type_mismatch_index_type[bool-object],AssertionError: Expected bool saw object,failed -10089,tests.integ.modin.frame.test_loc,test_df_loc_set_duplicate_index[duplicate-self_index_val1-index0-x-item0],ValueError: Length of values (2) does not match length of index (4),failed -10094,tests.integ.modin.test_from_pandas_to_pandas,test_type_mismatch_index_type[string-python],AssertionError: Expected object saw string,failed -10099,tests.integ.modin.frame.test_astype,test_astype_from_timestamp_ltz[int32],"TypeError: Converting from datetime64[ns, America/Los_Angeles] to int32 is not supported. Do obj.astype('int64').astype(dtype) instead",failed -10100,tests.integ.modin.test_from_pandas_to_pandas,test_type_mismatch_index_type[nullable_int],AssertionError: Expected float64 saw Int64,failed -10105,tests.integ.modin.frame.test_loc,test_df_loc_set_with_non_matching_1d_scalar_key[data0-None-columns0-A-7],Failed: DID NOT RAISE ,failed -10107,tests.integ.modin.test_from_pandas_to_pandas,test_type_mismatch_index_type[nullable_uint],AssertionError: Expected float64 saw UInt16,failed -10113,tests.integ.modin.test_from_pandas_to_pandas,test_type_mismatch_index_type[nullable_float],AssertionError: Expected float64 saw Float32,failed -10118,tests.integ.modin.frame.test_loc,test_df_loc_set_duplicate_index[duplicate-self_index_val1-index1-y-item1],ValueError: Length of values (2) does not match length of index (4),failed -10121,tests.integ.modin.test_from_pandas_to_pandas,test_type_mismatch_index_type[nullable_bool],AssertionError: Expected bool saw boolean,failed -10126,tests.integ.modin.test_from_pandas_to_pandas,test_type_mismatch_index_type[uint],AssertionError: Expected int16 saw uint64,failed -10131,tests.integ.modin.test_from_pandas_to_pandas,test_type_mismatch_index_type[num_int32],AssertionError: Expected int16 saw int32,failed -10136,tests.integ.modin.frame.test_loc,test_df_loc_set_with_non_matching_1d_scalar_key[data1-None-columns1-A-7],Failed: DID NOT RAISE ,failed -10137,tests.integ.modin.test_from_pandas_to_pandas,test_type_mismatch_index_type[num_uint64],AssertionError: Expected int16 saw uint64,failed -10144,tests.integ.modin.test_from_pandas_to_pandas,test_type_mismatch_index_type[num_uint32],AssertionError: Expected int16 saw uint32,failed -10150,tests.integ.modin.test_from_pandas_to_pandas,test_type_mismatch_index_type[num_uint16],AssertionError: Expected int16 saw uint16,failed -10156,tests.integ.modin.test_from_pandas_to_pandas,test_type_mismatch_index_type[num_uint8],AssertionError: Expected int16 saw uint8,failed -10162,tests.integ.modin.test_from_pandas_to_pandas,test_type_mismatch_index_type[num_float32],AssertionError: Expected float64 saw float32,failed -10169,tests.integ.modin.frame.test_loc,test_df_loc_set_duplicate_index[duplicate-self_index_val1-index2-x-item2],ValueError: cannot reindex on an axis with duplicate labels,failed -10170,tests.integ.modin.test_from_pandas_to_pandas,test_value_type_mismatch_index_type[categorical],"Failed: DID NOT RAISE (, )",failed -10174,tests.integ.modin.test_from_pandas_to_pandas,test_value_type_mismatch_index_type[interval],"Failed: DID NOT RAISE (, )",failed -10176,tests.integ.modin.test_from_pandas_to_pandas,test_value_type_mismatch_index_type[complex64],"Failed: DID NOT RAISE (, )",failed -10177,tests.integ.modin.frame.test_loc,test_df_loc_set_with_non_matching_1d_scalar_key[None-index3-columns3-5-0],Failed: DID NOT RAISE ,failed -10179,tests.integ.modin.test_from_pandas_to_pandas,test_value_type_mismatch_index_type[complex128],"Failed: DID NOT RAISE (, )",failed -10183,tests.integ.modin.test_from_pandas_to_pandas,test_value_type_mismatch_index_type[period],"Failed: DID NOT RAISE (, )",failed -10184,tests.integ.modin.frame.test_loc,test_df_loc_set_with_non_matching_1d_scalar_key[None-index3-columns3--2-20],Failed: DID NOT RAISE ,failed -10189,tests.integ.modin.test_from_pandas_to_pandas,test_value_type_mismatch_index_type[datetime],"Failed: DID NOT RAISE (, )",failed -10192,tests.integ.modin.test_from_pandas_to_pandas,test_value_type_mismatch_index_type[datetime-tz],"Failed: DID NOT RAISE (, )",failed -10196,tests.integ.modin.test_from_pandas_to_pandas,test_value_type_mismatch_index_type[timedelta],"Failed: DID NOT RAISE (, )",failed -10205,tests.integ.modin.frame.test_iloc,test_df_iloc_get_non_numeric_key_negative[row-key9],Failed: DID NOT RAISE ,failed -10217,tests.integ.modin.frame.test_iloc,test_df_iloc_get_non_numeric_key_negative[row-string],"ValueError: -Location based indexing can only have [integer, integer slice (START point is -INCLUDED, END point is EXCLUDED), listlike of integers, boolean array] types.",failed -10225,tests.integ.modin.frame.test_iloc,test_df_iloc_get_non_numeric_key_negative[row-test],"ValueError: +DataFrame shape mismatch +[left]: (4, 7) +[right]: (3, 7)",failed +7507,tests.integ.modin.test_concat,test_concat_with_keys[0-keys3],"ValueError: Length mismatch: Expected axis has 9 elements, new values have 6 elements",failed +7508,tests.integ.modin.frame.test_iloc,test_df_iloc_get_slice_with_non_integer_parameters_negative[row-slice_key0],"ValueError: Location based indexing can only have [integer, integer slice (START point is INCLUDED, END point is EXCLUDED), listlike of integers, boolean array] types.",failed -10227,tests.integ.modin.frame.test_loc,test_df_loc_set_row_col_with_non_matching_scalar_key[native_df0-5-A-0],KeyError: array([5]),failed -10238,tests.integ.modin.frame.test_loc,test_df_loc_set_row_col_with_non_matching_scalar_key[native_df0--2-B-20],KeyError: array([-2]),failed -10242,tests.integ.modin.groupby.test_groupby_basic_agg,test_groupby_agg_on_groupby_columns_named_agg[False-False-by1],"AssertionError: DataFrame are different +7509,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice[True-2-4-None],"AssertionError: DataFrame are different DataFrame shape mismatch -[left]: (6, 4) -[right]: (6, 6)",failed -10246,tests.integ.modin.frame.test_set_index,test_set_index_pass_arrays_duplicate[True-True-frame_of_ints-Index-Index],"TypeError: The parameter ""keys"" may be a column key, one-dimensional array, or a list containing only valid column keys and one-dimensional arrays. Received column of type ",failed -10251,tests.integ.modin.frame.test_loc,test_df_loc_set_row_col_with_non_matching_scalar_key[native_df0-A-C-7],"KeyError: array(['A'], dtype=',failed -10474,tests.integ.modin.frame.test_astype,test_astype_from_timestamp_ltz[int16],"TypeError: Converting from datetime64[ns, America/Los_Angeles] to int16 is not supported. Do obj.astype('int64').astype(dtype) instead",failed -10502,tests.integ.modin.frame.test_iloc,test_df_iloc_get_non_numeric_key_negative[col-key7],"ValueError: -Location based indexing can only have [integer, integer slice (START point is -INCLUDED, END point is EXCLUDED), listlike of integers, boolean array] types.",failed -10509,tests.integ.modin.test_from_pandas_to_pandas,test_from_to_pandas_datetime64_support,AssertionError,failed -10514,tests.integ.modin.test_from_pandas_to_pandas,test_rw_datetimeindex,"AssertionError: Series are different - -Series values are different (50.0 %) -[index]: [ntz, tz] -[left]: [datetime64[ns], datetime64[ns, US/Pacific]] -[right]: [datetime64[ns], datetime64[ns, UTC-08:00]] -At positional index 1, first diff: datetime64[ns, US/Pacific] != datetime64[ns, UTC-08:00]",failed -10520,tests.integ.modin.test_from_pandas_to_pandas,test_from_to_pandas_datetime64_timezone_support,"AssertionError: Attributes of DataFrame.iloc[:, 1] (column name=""pacific"") are different - -Attribute ""dtype"" are different -[left]: datetime64[ns, US/Pacific] -[right]: datetime64[ns, UTC-08:00]",failed -10535,tests.integ.modin.groupby.test_groupby_basic_agg,test_groupby_dropna_multi_index[False-group_index1-expected_index_dropna_false1],"AssertionError: DataFrame.index are different +7516,tests.integ.modin.frame.test_loc,test_df_loc_self_df_set_aligned_row_key[df2],ValueError: cannot reindex on an axis with duplicate labels,failed +7517,tests.integ.modin.test_concat,test_concat_with_keys[0-keys5],"AssertionError: DataFrame.index are different -Attribute ""inferred_type"" are different -[left]: mixed -[right]: string",failed -10540,tests.integ.modin.groupby.test_groupby_basic_agg,test_groupby_dropna_multi_index[False-group_index2-expected_index_dropna_false2],"AssertionError: DataFrame.index are different - -Attribute ""inferred_type"" are different -[left]: mixed -[right]: string",failed -10541,tests.integ.modin.frame.test_loc,test_df_loc_get_key_bool_series_with_unaligned_and_duplicate_indices,"AssertionError: DataFrame are different +DataFrame.index levels are different +[left]: 2, MultiIndex([(('x', 1), 3), + (('x', 1), 1), + (('x', 1), 2), + (('y', 2), 2), + (('y', 2), 0), + (('y', 2), 3), + (('y', 2), 4), + (('z', 3), 0), + (('z', 3), 1)], + ) +[right]: 3, MultiIndex([('x', 1, 3), + ('x', 1, 1), + ('x', 1, 2), + ('y', 2, 2), + ('y', 2, 0), + ('y', 2, 3), + ('y', 2, 4), + ('z', 3, 0), + ('z', 3, 1)], + )",failed +7518,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice[True-2-4-4],"AssertionError: DataFrame are different DataFrame shape mismatch -[left]: (5, 2) -[right]: (9, 2)",failed -10546,tests.integ.modin.groupby.test_groupby_basic_agg,test_groupby_dropna_multi_index[False-group_index3-expected_index_dropna_false3],"AssertionError: DataFrame.index are different - -Attribute ""inferred_type"" are different -[left]: mixed -[right]: string",failed -10553,tests.integ.modin.groupby.test_groupby_basic_agg,test_groupby_dropna_multi_index[False-group_index4-expected_index_dropna_false4],"AssertionError: MultiIndex level [0] are different - -Attribute ""dtype"" are different -[left]: float64 -[right]: object",failed -10554,tests.integ.modin.frame.test_loc,test_df_loc_set_scalar_indexer_2d_array_negative,Failed: DID NOT RAISE ,failed -10562,tests.integ.modin.frame.test_loc,test_df_loc_set_item_2d_array_scalar_row_loc_negative,Failed: DID NOT RAISE ,failed -10566,tests.integ.modin.frame.test_loc,test_df_loc_get_key_bool_series_with_mismatch_index_len[True-key0],pandas.errors.IndexingError: Unalignable boolean Series provided as indexer (index of the boolean Series and of the indexed object do not match).,failed -10576,tests.integ.modin.frame.test_loc,test_df_loc_set_item_2d_array_row_length_no_match,"ValueError: could not broadcast input array from shape (3, 4) into shape (2, 4)",failed -10583,tests.integ.modin.frame.test_loc,test_df_loc_set_item_2d_array_col_length_no_match,"AssertionError: Regex pattern did not match. - Regex: 'shape mismatch: the number of columns 3 from the item does not match with the number of columns 4 to set' - Input: 'could not broadcast input array from shape (3, 3) into shape (2, 4)'",failed -10593,tests.integ.modin.frame.test_loc,test_df_loc_get_key_bool_series_with_mismatch_index_len[True-key1],pandas.errors.IndexingError: Unalignable boolean Series provided as indexer (index of the boolean Series and of the indexed object do not match).,failed -10599,tests.integ.modin.frame.test_loc,test_df_loc_set_2d_array_with_ffill_na_values_negative,"ValueError: could not broadcast input array from shape (2, 4) into shape (4, 4)",failed -10611,tests.integ.modin.frame.test_loc,test_df_loc_set_with_empty_key_and_empty_item_negative[item0-key1],Failed: DID NOT RAISE ,failed -10616,tests.integ.modin.frame.test_iloc,test_df_iloc_get_non_numeric_key_negative[col-key8],Failed: DID NOT RAISE ,failed -10619,tests.integ.modin.frame.test_loc,test_df_loc_set_with_empty_key_and_empty_item_negative[item0-key2],Failed: DID NOT RAISE ,failed -10623,tests.integ.modin.frame.test_loc,test_df_loc_get_key_bool_series_with_mismatch_index_len[False-key0],pandas.errors.IndexingError: Unalignable boolean Series provided as indexer (index of the boolean Series and of the indexed object do not match).,failed -10628,tests.integ.modin.frame.test_loc,test_df_loc_set_with_empty_key_and_empty_item_negative[item0-key3],Failed: DID NOT RAISE ,failed -10630,tests.integ.modin.frame.test_loc,test_df_loc_get_col_time_df[key0],"TypeError: Cannot interpret 'datetime64[ns, UTC]' as a data type",failed -10635,tests.integ.modin.frame.test_astype,test_astype_from_timestamp_ltz[uint16],"TypeError: Converting from datetime64[ns, America/Los_Angeles] to uint16 is not supported. Do obj.astype('int64').astype(dtype) instead",failed -10638,tests.integ.modin.frame.test_loc,test_df_loc_set_with_empty_key_and_empty_item_negative[item1-key1],Failed: DID NOT RAISE ,failed -10642,tests.integ.modin.frame.test_loc,test_df_loc_get_col_time_df[key1],"TypeError: Cannot interpret 'datetime64[ns, UTC]' as a data type",failed -10646,tests.integ.modin.frame.test_loc,test_df_loc_set_with_empty_key_and_empty_item_negative[item1-key2],Failed: DID NOT RAISE ,failed -10654,tests.integ.modin.frame.test_loc,test_df_loc_set_with_empty_key_and_empty_item_negative[item1-key3],Failed: DID NOT RAISE ,failed -10663,tests.integ.modin.frame.test_loc,test_df_loc_get_key_bool_series_with_mismatch_index_len[False-key1],pandas.errors.IndexingError: Unalignable boolean Series provided as indexer (index of the boolean Series and of the indexed object do not match).,failed -10664,tests.integ.modin.frame.test_loc,test_df_loc_set_with_empty_key_and_empty_item_negative[item2-key1],Failed: DID NOT RAISE ,failed -10682,tests.integ.modin.frame.test_loc,test_df_loc_get_key_bool_series_with_1k_shape[key0],pandas.errors.IndexingError: Unalignable boolean Series provided as indexer (index of the boolean Series and of the indexed object do not match).,failed -10683,tests.integ.modin.frame.test_loc,test_df_loc_get_col_snowpark_pandas_input[series[bool]_col],"AssertionError: DataFrame.columns are different - -DataFrame.columns values are different (20.0 %) -[left]: Index(['A', 'B', 'C', 'F', 'A'], dtype='object') -[right]: Index(['A', 'B', 'C', 'E', 'A'], dtype='object') -At positional index 3, first diff: F != E",failed -10689,tests.integ.modin.frame.test_loc,test_df_loc_set_with_empty_key_and_empty_item_negative[item2-key2],Failed: DID NOT RAISE ,failed -10694,tests.integ.modin.frame.test_iloc,test_df_iloc_get_non_numeric_key_negative[col-key9],Failed: DID NOT RAISE ,failed -10697,tests.integ.modin.frame.test_set_index,test_set_index_pass_arrays_duplicate[True-True-frame_of_ints_and_timedelta-Index-Index],"TypeError: The parameter ""keys"" may be a column key, one-dimensional array, or a list containing only valid column keys and one-dimensional arrays. Received column of type ",failed -10698,tests.integ.modin.frame.test_loc,test_df_loc_set_with_empty_key_and_empty_item_negative[item2-key3],Failed: DID NOT RAISE ,failed -10699,tests.integ.modin.frame.test_iloc,test_df_iloc_get_non_numeric_key_negative[col-string],"ValueError: -Location based indexing can only have [integer, integer slice (START point is -INCLUDED, END point is EXCLUDED), listlike of integers, boolean array] types.",failed -10700,tests.integ.modin.frame.test_loc,test_df_loc_get_key_bool_series_with_1k_shape[key1],pandas.errors.IndexingError: Unalignable boolean Series provided as indexer (index of the boolean Series and of the indexed object do not match).,failed -10708,tests.integ.modin.frame.test_iloc,test_df_iloc_get_non_numeric_key_negative[col-test],"ValueError: -Location based indexing can only have [integer, integer slice (START point is -INCLUDED, END point is EXCLUDED), listlike of integers, boolean array] types.",failed -10712,tests.integ.modin.frame.test_loc,test_df_loc_set_with_empty_key_and_empty_item_negative[item3-key1],Failed: DID NOT RAISE ,failed -10716,tests.integ.modin.frame.test_iloc,test_df_iloc_get_non_numeric_key_negative[col-key12],"ValueError: -Location based indexing can only have [integer, integer slice (START point is -INCLUDED, END point is EXCLUDED), listlike of integers, boolean array] types.",failed -10718,tests.integ.modin.frame.test_astype,test_astype_from_timestamp_ltz[int8],"TypeError: Converting from datetime64[ns, America/Los_Angeles] to int8 is not supported. Do obj.astype('int64').astype(dtype) instead",failed -10721,tests.integ.modin.frame.test_loc,test_df_loc_set_with_empty_key_and_empty_item_negative[item3-key2],Failed: DID NOT RAISE ,failed -10731,tests.integ.modin.frame.test_loc,test_df_loc_set_with_empty_key_and_empty_item_negative[item3-key3],Failed: DID NOT RAISE ,failed -10749,tests.integ.modin.frame.test_loc,test_series_loc_set_with_empty_key_and_scalar_item[key0],"KeyError: ""None of [[]] are in the [Index([0, 1, 2], dtype='int64')]""",failed -10752,tests.integ.modin.frame.test_iloc,test_df_iloc_get_non_numeric_key_negative[col-key13],"ValueError: -Location based indexing can only have [integer, integer slice (START point is -INCLUDED, END point is EXCLUDED), listlike of integers, boolean array] types.",failed -10759,tests.integ.modin.frame.test_loc,test_series_loc_set_with_empty_key_and_scalar_item[key1],Failed: DID NOT RAISE ,failed -10766,tests.integ.modin.frame.test_iloc,test_df_iloc_get_non_numeric_key_categorical_negative,"AssertionError: Regex pattern did not match. - Regex: '\\.iloc\\ requires\\ numeric\\ indexers,\\ got\\ \\[1,\\ 3,\\ 5\\]\\\nCategories\\ \\(3,\\ int64\\):\\ \\[1,\\ 3,\\ 5\\]' - Input: 'positional indexers are out-of-bounds'",failed -10770,tests.integ.modin.frame.test_loc,test_series_loc_set_with_empty_key_and_scalar_item[key2],Failed: DID NOT RAISE ,failed -10782,tests.integ.modin.frame.test_where,test_dataframe_where_not_implemented,Failed: DID NOT RAISE ,failed -10785,tests.integ.modin.frame.test_loc,test_df_loc_get_col_len_mismatch_boolean_indexer[key1],IndexError: positional indexers are out-of-bounds,failed -10788,tests.integ.modin.frame.test_loc,test_series_loc_set_with_empty_key_and_scalar_item[key3],Failed: DID NOT RAISE ,failed -10792,tests.integ.modin.frame.test_iloc,test_df_iloc_get_key_snowpark_df_input_negative[row],"ValueError: Buffer has wrong number of dimensions (expected 1, got 2)",failed -10798,tests.integ.modin.frame.test_loc,test_df_loc_get_key_non_boolean_series_with_1k_shape[key1],"KeyError: array([ -539, 1160, -883, -970, -1083, 1051, -1232, -1263, -586, - 1271, -558, -3, -132, -1133, -1390, -451, -1030, -707, - -657, -1363, -223, -1466, 1020, -1215, -433, -211, -998, - -891, -63, -892, -153, -1478, -199])",failed -10809,tests.integ.modin.frame.test_where,test_dataframe_where_other_is_array,"ValueError: Data must be 1-dimensional, got ndarray of shape (2, 2) instead",failed -10810,tests.integ.modin.frame.test_loc,test_df_loc_set_with_empty_key_and_list_like_item[key0],"KeyError: ""None of [[]] are in the [Index([0, 1, 2], dtype='int64')]""",failed -10814,tests.integ.modin.frame.test_where,test_dataframe_where_other_is_array_wrong_size_negative,AssertionError: Snowpark pandas Exception Length of values (2) does not match length of index (3) doesn't match pandas Exception other must be the same shape as self when an ndarray,failed -10816,tests.integ.modin.frame.test_loc,test_df_loc_get_negative_row_diff2native[key0-TypeError-Passing a set as an indexer is not supported. Use a list instead.],"AssertionError: Regex pattern did not match. - Regex: 'Passing a set as an indexer is not supported. Use a list instead.' - Input: ""'set' type is unordered""",failed -10819,tests.integ.modin.frame.test_iloc,test_df_iloc_get_key_snowpark_df_input_negative[col],"ValueError: Buffer has wrong number of dimensions (expected 1, got 2)",failed -10820,tests.integ.modin.frame.test_loc,test_df_loc_get_key_non_boolean_series_with_1k_shape[key2],"KeyError: array([ -351, -1466, -643, -727, -628, -1014, -631, -621, -82, - 1471, -1488, -10, -1116, 1214, 1295, -800, -1420, -783, - -290, -394, -821, 1255, -367, -1451, -301, -322, -126, - -557, -419, -661, 1279, 1219, 1416, -448, -1223, -1200, - 1101, 1183, 1382, -1072, 1243, -1466, -1442, -1061, 1252, - -666, -461, -10, -1332, -1415, 1068, -276, -913, -337, - 1187, -956, -589, -433, -625, -39, 1133, -397, 1118, - 1128, -189, -1345, -4, -214, -1235, -678, -376, -1476, - -1399, -606, 1453, -622, -946, 1139, -1261, -805, -816, - -234, -234, -771, 1190, -652, -1222, -1380, -358, -1121, - -519, -700, 1409, -150, -1079, 1222, 1458, -58, -1116, - -914, -283, -439, -467, -515, 1341, -1289, -616, -1291, - -1029, -1002, -35, 1167, 1320, -1109, -550, -773, -1241, - -646, -1385, -1031, -198, -567, -215, 1433, -548, -323, - -989, -143, -218, -59, -1243, -238, -950, -1040, 1123, - 1101, 1238, -1049, -1, -598, 1217, -665, -98, -815, - 1052, 1414, -105, -726, -1194, 1275, 1256, -80, -538, - 1007, -227, -1042, -1464, -492, -1479, -632, -901, 1197, - 1456, 1328, -616, 1368, -386, -324, 1329, 1251, -1147, - -395, -96, -1218, 1202, -852, 1166, -1417, 1354, -618, - -244, 1089, 1258, -1249, -556, -1262, 1464, 1018, -235, - -19, -1418, -1456, -768, 1284, -1336, -1104, -206, 1211, - -159, -880, -521, -227, -549, 1315, -1227, 1133, -956, - 1274, -973, -548, -928, -1295, -1061, -1338, -52, -1226, - -743, -1078, 1020, 1464, -546, -304, -851, 1304, -1416, - 1219, -542, -62, 1249, -354, -302, 1145, -688, -1354, - 1320, -745, -1245, -1041, -145, -527, -469, -9, -288, - 1275, -962, -259, -450, -412, -766, -1054, -113, -1200, - -1481, -688, -487, -771, -240, -1292, -907, -1379, -164, - -1163, 1304, -1047, 1472, -1176, -694, -1045, -999, -327, - -1188, 1161, -739, -1295, -800, 1121, 1329, -91, -576, - -299, 1385, -1241, 1172, -1240, 1144, -400, -208, -274, - -1441, -176, -1135, -1447, -788, -1207, -1213, -147, -835, - 1438, 1392, 1297, 1219, -1088, -1497, -100, -758, -266, - -807, -261, -572, 1449, -1009, -918, -447, -828, -1233, - -427, -672, -408, -782, 1134, -58, -418, 1437, 1151, - 1092, -610, -731, -1001, -699, -500, -915, -704, -702, - -417, 1099, -1003, -1121, -661, 1180, -346, -105, 1008, - -647, -1366, -499, -171, -977, 1033, -1077, -1158, -1178, - -1413, -735, 1239, -1308, -1142, -564, -205, -1276, 1345, - -889, -725, 1159, -1125, 1171, -831, -45, -151, -671, - 1411, 1341, -593, -1419, -263, -195, -1029, 1132, -180, - -561, -648, 1356, -1374, -82, -792, 1250, -1352, -269, - 1006, -1448, -481, -194, -897, -42, -878, 1232, 1337, - -1175, 1315, -668, 1090, 1246, -148, -182, -276, 1277, - -545, -551, 1002, -1466, 1075, -268, -912, -301, 1364, - -933, -823, -954, 1303, -1253, -1334, -138, -704, -968, - 1000, -262, -1352, -37, -1479, 1096, -760, -648, -673, - -582, -710, -345, 1061, -184, 1327, -1185, -1331, -1209, - -1060, 1043, -937, 1049, -1365, 1312, -616, -650, -136, - -1349, -1193, 1067, -1073, -1151, 1296, -678, -1380, -673, - -1030, -1083, -1344, -1245, 1049, 1186, -537, -578, -1035, - -932, -381, -995, -881, -731, 1325, 1192, -476, -8, - -1168, -1447, -973, -1312, 1341, 1347, -503, -212, -327, - 1146, 1062, -1494, 1206, -983, -1085, -164, -1237, -853, - -8, -164, -1419, 1300, -145, 1130, -1031, 1450, -609, - -344, 1458, -250, -422, -1476, -1021, -831, -1258, -1092, - 1126, -816, -398, -1152, -609, 1189, 1349, -1295, -363, - -237, -696, 1309, 1174, -620, -246, -331, -1102, -561, - -53, -121, 1492, -1339, -1054, 1043, 1457, -925, 1123, - -1018, -1467, -1001, -233, -901, -308, -850, -534, 1368, - -1203, -825, -110, -504, 1196, -1389, -456, -316, -404, - -869, -438, -836, -1, -1339, -1417, 1230, 1310, -252, - -61, -53, 1353, -362, -287, -976, 1081, -1496, 1036, - -152, -547, 1187, 1269, 1305, 1003, -1457, -236, -56, - -93, -1309, -708, -1314, 1453, -1280, 1441, -1241, 1176, - -1013, -192, -415, -1154, -651, -1318, 1018, 1228, 1328, - 1201, -358, 1393, -935, 1170, 1445, 1119, -947, -1051, - 1253, -1012, 1484, -1217, -328, -1251, 1044, 1244, -395, - 1043, 1004, -520, -1091, -1028, -739, 1189, -1475, 1232, - -1348, -1064, -517, 1293, 1088, 1490, 1099, -947, 1065, - -99, -1023, -923, 1119, 1296, -392, -1336, -343, -7, - -1131, -801, -89, -431, -1095, 1195, -677, 1350, -135, - -246, -362, -1326, 1243, -565, -1248, -582, -178, -749, - 1078, -1186, 1227, -1108, 1251, -324, -654, 1406, -1248, - 1092, -1147, -1024, 1005, -1104, 1017, -584, -604, -355, - -1419, -177, -1415, 1281, 1069, -866, -1149, -1447, -239, - -201, 1267, -1384, -176, 1452, 1191, -339, -332, -1123])",failed -10822,tests.integ.modin.frame.test_loc,test_df_loc_get_negative_row_diff2native[key1-TypeError-Passing a dict as an indexer is not supported. Use a list instead.],Failed: DID NOT RAISE ,failed -10832,tests.integ.modin.frame.test_iloc,test_df_iloc_get_key_snowpark_empty_str_series_input_negative[row],"ValueError: +[left]: (2, 7) +[right]: (1, 7)",failed +7520,tests.integ.modin.frame.test_iloc,test_df_iloc_get_slice_with_non_integer_parameters_negative[col-slice_key1],"ValueError: Location based indexing can only have [integer, integer slice (START point is INCLUDED, END point is EXCLUDED), listlike of integers, boolean array] types.",failed -10837,tests.integ.modin.frame.test_loc,test_df_loc_get_negative_row_diff2native[key2-TypeError-Please convert this to Snowpark pandas objects by calling modin],"KeyError: array([2, 4], dtype=object)",failed -10843,tests.integ.modin.frame.test_astype,test_astype_from_timestamp_ltz[uint8],"TypeError: Converting from datetime64[ns, America/Los_Angeles] to uint8 is not supported. Do obj.astype('int64').astype(dtype) instead",failed -10846,tests.integ.modin.frame.test_loc,test_df_loc_get_negative_row_diff2native[key3-TypeError-Please convert this to Snowpark pandas objects by calling modin],Failed: DID NOT RAISE ,failed -10848,tests.integ.modin.frame.test_iloc,test_df_iloc_get_key_snowpark_empty_str_series_input_negative[col],"ValueError: +7523,tests.integ.modin.frame.test_iloc,test_df_iloc_get_slice_with_non_integer_parameters_negative[col-slice_key2],"ValueError: Location based indexing can only have [integer, integer slice (START point is INCLUDED, END point is EXCLUDED), listlike of integers, boolean array] types.",failed -10857,tests.integ.modin.frame.test_iloc,test_df_iloc_get_key_raises_not_implemented_error_negative[key0],Failed: DID NOT RAISE ,failed -10885,tests.integ.modin.frame.test_iloc,test_df_iloc_get_key_raises_not_implemented_error_negative[key1],Failed: DID NOT RAISE ,failed -10913,tests.integ.modin.frame.test_where,test_dataframe_where_with_dataframe_cond_single_index_different_names_2,"AssertionError: DataFrame.index are different - -Attribute ""names"" are different -[left]: [None] -[right]: ['B']",failed -10927,tests.integ.modin.frame.test_loc,test_df_loc_get_negative_snowpark_pandas_input[dataframe],Failed: DID NOT RAISE ,failed -10934,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_col_key[fizz1-None],AssertionError,failed -10936,tests.integ.modin.frame.test_where,test_dataframe_where_with_duplicated_index_aligned[10-cond_frame0],"AssertionError: DataFrame.index are different - -Attribute ""names"" are different -[left]: [None] -[right]: ['index']",failed -10944,tests.integ.modin.frame.test_loc,test_df_setitem_boolean_key[index1-False],"AssertionError: DataFrame are different +7525,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice[True-2-4-10],"AssertionError: DataFrame are different DataFrame shape mismatch -[left]: (4, 3) -[right]: (5, 3)",failed -10956,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_col_key[key4-None],"AssertionError: DataFrame.columns are different +[left]: (3, 7) +[right]: (2, 7)",failed +7526,tests.integ.modin.frame.test_loc,test_df_loc_set_scalar_row_key_enlargement[data_index0-c-T-97],"KeyError: array(['T'], dtype='.text",failed -10987,tests.integ.modin.frame.test_where,test_dataframe_where_with_duplicated_index_aligned[other1-cond_frame0],"AssertionError: DataFrame.index are different - -Attribute ""names"" are different -[left]: [None] -[right]: ['index']",failed -10992,tests.integ.modin.groupby.test_groupby_basic_agg,test_groupby_with_observed_warns,"AssertionError: assert 'CategoricalDType is not yet supported with Snowpark pandas API, the observed parameter is ignored.' in '' - + where '' = <_pytest.logging.LogCaptureFixture object at 0x3442797b0>.text",failed -11004,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_col_key[key5-None],KeyError: 'fizz2',failed -11006,tests.integ.modin.frame.test_where,test_dataframe_where_with_duplicated_index_aligned[other1-cond_frame1],"AssertionError: DataFrame.index are different +[left]: (1, 7) +[right]: (0, 7)",failed +7575,tests.integ.modin.frame.test_loc,test_df_loc_set_scalar_row_key_enlargement[data_index0-y-col_key9-93],"AssertionError: DataFrame.iloc[:, 0] (column name=""A"") are different -Attribute ""names"" are different -[left]: [None] -[right]: ['index']",failed -11010,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice[False-1-1-None],"AssertionError: DataFrame are different +DataFrame.iloc[:, 0] (column name=""A"") values are different (20.0 %) +[index]: [a, b, c, d, y] +[left]: [5, 8, 11, 14, 0] +[right]: [5.0, 8.0, 11.0, 14.0, nan]",failed +7581,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice[True--2--1-1],"AssertionError: DataFrame are different DataFrame shape mismatch [left]: (1, 7) -[right]: (2, 7)",failed -11011,tests.integ.modin.frame.test_astype,test_astype_from_timestamp_ltz[float32],"AssertionError: Regex pattern did not match. - Regex: 'cannot be converted' - Input: 'Cannot cast DatetimeArray to dtype float32'",failed -11016,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice[False-1-1--1],"AssertionError: DataFrame are different +[right]: (0, 7)",failed +7584,tests.integ.modin.frame.test_loc,test_df_loc_set_scalar_row_key_enlargement[data_index0-z-T-92],"KeyError: array(['z'], dtype=',failed +7593,tests.integ.modin.frame.test_nunique,test_dataframe_unique_axis1_not_implemented[True],Failed: DID NOT RAISE ,failed +7594,tests.integ.modin.frame.test_loc,test_df_loc_set_scalar_row_key_enlargement[data_index0-w-col_key11-91],SNOW-1321196: pandas 2.2.1 migration test failure,xfailed +7595,tests.integ.modin.frame.test_nunique,test_dataframe_unique_axis1_not_implemented[False],Failed: DID NOT RAISE ,failed +7598,tests.integ.modin.test_concat,test_concat_same_frame_with_keys[0-keys3],"ValueError: Length mismatch: Expected axis has 6 elements, new values have 3 elements",failed +7600,tests.integ.modin.frame.test_loc,test_df_loc_set_scalar_row_key_enlargement[data_index0-u-col_key12-90],SNOW-1321196: pandas 2.2.1 migration test failure,xfailed +7602,tests.integ.modin.test_concat,test_concat_same_frame_with_keys[0-keys4],"AssertionError: DataFrame.index are different + +DataFrame.index levels are different +[left]: 2, MultiIndex([(('x', 1), 3), + (('x', 1), 1), + (('x', 1), 2), + (('y', 2), 3), + (('y', 2), 1), + (('y', 2), 2)], + names=[None, 'left_i']) +[right]: 3, MultiIndex([('x', 1, 3), + ('x', 1, 1), + ('x', 1, 2), + ('y', 2, 3), + ('y', 2, 1), + ('y', 2, 2)], + names=[None, None, 'left_i'])",failed +7613,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice[True--2-1-None],"AssertionError: DataFrame are different DataFrame shape mismatch -[left]: (1, 7) -[right]: (2, 7)",failed -11021,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice[False-1-1-1],"AssertionError: DataFrame are different +[left]: (2, 7) +[right]: (1, 7)",failed +7615,tests.integ.modin.test_concat,test_concat_same_frame_with_keys[1-keys3],"ValueError: Length mismatch: Expected axis has 6 elements, new values have 3 elements",failed +7618,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice[True--2-1--1],"AssertionError: DataFrame are different DataFrame shape mismatch -[left]: (0, 7) +[left]: (2, 7) +[right]: (1, 7)",failed +7619,tests.integ.modin.frame.test_loc,test_df_loc_set_scalar_row_key_enlargement[data_index0-v-col_key13-95],SNOW-1321196: pandas 2.2.1 migration test failure,xfailed +7621,tests.integ.modin.test_concat,test_concat_same_frame_with_keys[1-keys4],"AssertionError: DataFrame.columns are different + +DataFrame.columns levels are different +[left]: 2, MultiIndex([(('x', 1), 'C'), + (('x', 1), 'A'), + (('x', 1), 'D'), + (('y', 2), 'C'), + (('y', 2), 'A'), + (('y', 2), 'D')], + ) +[right]: 3, MultiIndex([('x', 1, 'C'), + ('x', 1, 'A'), + ('x', 1, 'D'), + ('y', 2, 'C'), + ('y', 2, 'A'), + ('y', 2, 'D')], + )",failed +7627,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice[True--2-1-1],"AssertionError: DataFrame are different + +DataFrame shape mismatch +[left]: (2, 7) [right]: (1, 7)",failed -11024,tests.integ.modin.frame.test_loc,test_df_setitem_boolean_key[index3-False],ValueError: cannot reindex on an axis with duplicate labels,failed -11030,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_col_key[key7-None],KeyError: 'buzz1',failed -11035,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice[False-1-4-None],"AssertionError: DataFrame are different +7630,tests.integ.modin.frame.test_loc,test_df_loc_set_scalar_row_key_enlargement[data_index0-y-col_key16-item_values16],"AssertionError: DataFrame.iloc[:, 0] (column name=""A"") are different + +DataFrame.iloc[:, 0] (column name=""A"") values are different (20.0 %) +[index]: [a, b, c, d, y] +[left]: [5, 8, 11, 14, 0] +[right]: [5.0, 8.0, 11.0, 14.0, nan]",failed +7633,tests.integ.modin.test_concat,test_concat_multiindex_columns_with_keys_axis1[keys1-2],"AssertionError: DataFrame.columns are different + +DataFrame.columns levels are different +[left]: 3, MultiIndex([(('x', 1), 'C', 'C'), + (('x', 1), 'A', 'A'), + (('x', 1), 'D', 'D'), + (('y', 2), 'P', 'P'), + (('y', 2), 'A', 'A'), + (('y', 2), 'C', 'C')], + ) +[right]: 4, MultiIndex([('x', 1, 'C', 'C'), + ('x', 1, 'A', 'A'), + ('x', 1, 'D', 'D'), + ('y', 2, 'P', 'P'), + ('y', 2, 'A', 'A'), + ('y', 2, 'C', 'C')], + )",failed +7635,tests.integ.modin.frame.test_loc,test_df_loc_set_scalar_row_key_enlargement[data_index0-y-col_key17-item_values17],"AssertionError: DataFrame.iloc[:, 0] (column name=""A"") are different + +DataFrame.iloc[:, 0] (column name=""A"") values are different (20.0 %) +[index]: [a, b, c, d, y] +[left]: [5, 8, 11, 14, 0] +[right]: [5.0, 8.0, 11.0, 14.0, nan]",failed +7640,tests.integ.modin.frame.test_loc,test_df_loc_set_scalar_row_key_enlargement[data_index0-u-col_key18-item_values18],SNOW-1321196: pandas 2.2.1 migration test failure,xfailed +7641,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice[True--2-4-None],"AssertionError: DataFrame are different DataFrame shape mismatch [left]: (4, 7) -[right]: (5, 7)",failed -11039,tests.integ.modin.frame.test_loc,test_df_setitem_boolean_key[index3-0],ValueError: cannot reindex on an axis with duplicate labels,failed -11041,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice[False-1-4--1],"AssertionError: DataFrame are different +[right]: (3, 7)",failed +7647,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice[True--2-4--1],"AssertionError: DataFrame are different DataFrame shape mismatch [left]: (4, 7) -[right]: (5, 7)",failed -11042,tests.integ.modin.frame.test_where,test_dataframe_where_with_duplicated_index_aligned[other2-cond_frame0],"AssertionError: DataFrame.index are different +[right]: (3, 7)",failed +7648,tests.integ.modin.frame.test_loc,test_df_loc_set_scalar_row_key_enlargement[data_index1-c-T-97],"KeyError: array(['T'], dtype='",failed -11082,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_col_key[key9-None],KeyError: 'buzz1',failed -11086,tests.integ.modin.frame.test_loc,test_df_setitem_boolean_key[index5-True],ValueError: cannot reindex on an axis with duplicate labels,failed -11113,tests.integ.modin.frame.test_where,test_dataframe_where_with_duplicated_index_unaligned,pandas.errors.InvalidIndexError,failed -11126,tests.integ.modin.frame.test_where,test_dataframe_where_with_duplicated_columns_negative[cond_column_names0-None-Multiple columns are mapped to each label in ['A'] in DataFrame condition],"AssertionError: Regex pattern did not match. - Regex: ""Multiple\\ columns\\ are\\ mapped\\ to\\ each\\ label\\ in\\ \\['A'\\]\\ in\\ DataFrame\\ condition"" - Input: 'cannot reindex on an axis with duplicate labels'",failed -11134,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice[False--1-1-None],"AssertionError: DataFrame are different +7661,tests.integ.modin.test_concat,test_concat_keys_with_none[0],"AssertionError: DataFrame are different DataFrame shape mismatch -[left]: (5, 7) -[right]: (6, 7)",failed -11135,tests.integ.modin.frame.test_where,test_dataframe_where_with_duplicated_columns_negative[None-others_column_names1-Multiple columns are mapped to each label in ['C'] in DataFrame other],AssertionError: exception type does not match with expected type ,failed -11143,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_row_key[mark ii-KeyError],KeyError: 'mark ii',failed -11146,tests.integ.modin.frame.test_loc,test_df_setitem_boolean_key[index5-1],ValueError: cannot reindex on an axis with duplicate labels,failed -11149,tests.integ.modin.frame.test_where,test_dataframe_where_with_duplicated_columns_negative[cond_column_names2-others_column_names2-Multiple columns are mapped to each label in ['C'] in DataFrame condition],"AssertionError: Regex pattern did not match. - Regex: ""Multiple\\ columns\\ are\\ mapped\\ to\\ each\\ label\\ in\\ \\['C'\\]\\ in\\ DataFrame\\ condition"" - Input: 'cannot reindex on an axis with duplicate labels'",failed -11151,tests.integ.modin.frame.test_astype,test_astype_from_timestamp_ltz[float160],"AssertionError: Regex pattern did not match. - Regex: 'cannot be converted' - Input: 'Cannot cast DatetimeArray to dtype float16'",failed -11152,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice[False--1-1-1],"AssertionError: DataFrame are different +[left]: (7, 4) +[right]: (3, 3)",failed +7663,tests.integ.modin.frame.test_loc,test_df_loc_set_scalar_row_key_enlargement[data_index1-a-col_key4-95],"KeyError: array(['T'], dtype=object)",failed +7668,tests.integ.modin.test_concat,test_concat_keys_with_none[1],"AssertionError: DataFrame are different DataFrame shape mismatch -[left]: (0, 7) -[right]: (1, 7)",failed -11154,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_row_key[key4-None],"AssertionError: DataFrame.index are different - -DataFrame.index levels are different -[left]: 1, Index(['mark v', 'mark vi'], dtype='object') -[right]: 2, MultiIndex([('mark i', 'mark v'), - ('mark i', 'mark vi')], - )",failed -11161,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice[False--1-1-4],"AssertionError: DataFrame are different - -DataFrame shape mismatch -[left]: (3, 7) -[right]: (4, 7)",failed -11167,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_row_key[key5-None],"KeyError: ['viper', 'mark i', 'viper']",failed -11169,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice[False--1-1-10],"AssertionError: DataFrame are different +[left]: (5, 6) +[right]: (3, 3)",failed +7674,tests.integ.modin.frame.test_loc,test_df_loc_set_scalar_row_key_enlargement[data_index1-a-col_key5-95],SNOW-1057861: Investigate locset behavior with missing index value,xfailed +7680,tests.integ.modin.test_concat,test_concat_with_keys_and_names[0-one-two-names1],ValueError: Length of names must match number of levels in MultiIndex.,failed +7688,tests.integ.modin.test_concat,test_concat_with_keys_and_names[0-one-two-names2],ValueError: Length of names must match number of levels in MultiIndex.,failed +7689,tests.integ.modin.frame.test_pct_change,test_pct_change_simple[rows-_NoDefault.no_default--1-nonulls],"Failed: DID NOT WARN. No warnings of type (,) were emitted. +The list of emitted warnings is: [].",failed +7695,tests.integ.modin.frame.test_pct_change,test_pct_change_simple[rows-_NoDefault.no_default-0-nonulls],"Failed: DID NOT WARN. No warnings of type (,) were emitted. +The list of emitted warnings is: [].",failed +7701,tests.integ.modin.frame.test_pct_change,test_pct_change_simple[rows-_NoDefault.no_default-1-nonulls],"Failed: DID NOT WARN. No warnings of type (,) were emitted. +The list of emitted warnings is: [].",failed +7704,tests.integ.modin.test_concat,test_concat_with_keys_and_names[0-one-None-names1],ValueError: Length of names must match number of levels in MultiIndex.,failed +7707,tests.integ.modin.frame.test_pct_change,test_pct_change_simple[rows-_NoDefault.no_default-2-nonulls],"Failed: DID NOT WARN. No warnings of type (,) were emitted. +The list of emitted warnings is: [].",failed +7710,tests.integ.modin.test_concat,test_concat_with_keys_and_names[0-one-None-names2],ValueError: Length of names must match number of levels in MultiIndex.,failed +7716,tests.integ.modin.frame.test_loc,test_df_loc_set_scalar_row_key_enlargement[data_index1-b-col_key6-98],ValueError: cannot reindex on an axis with duplicate labels,failed +7726,tests.integ.modin.test_concat,test_concat_with_keys_and_names[0-None-two-names1],ValueError: Length of names must match number of levels in MultiIndex.,failed +7733,tests.integ.modin.test_concat,test_concat_with_keys_and_names[0-None-two-names2],ValueError: Length of names must match number of levels in MultiIndex.,failed +7735,tests.integ.modin.frame.test_loc,test_df_loc_set_scalar_row_key_enlargement[data_index1-x-None-94],ValueError: cannot reindex on an axis with duplicate labels,failed +7747,tests.integ.modin.frame.test_loc,test_df_loc_set_scalar_row_key_enlargement[data_index1-x-D-94],"KeyError: array(['x'], dtype=',) were emitted. +The list of emitted warnings is: [].",failed +7820,tests.integ.modin.frame.test_iloc,test_df_iloc_get_range_deviating_behavior[row-range_key3],IndexError: positional indexers are out-of-bounds,failed +7821,tests.integ.modin.frame.test_loc,test_df_loc_set_scalar_row_key_enlargement[data_index1-w-col_key11-91],SNOW-1321196: pandas 2.2.1 migration test failure,xfailed +7824,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice[True-9-10-None],"AssertionError: DataFrame are different DataFrame shape mismatch -[left]: (2, 7) -[right]: (3, 7)",failed -11182,tests.integ.modin.frame.test_where,test_where_series_cond[series_same_length_as_dataframe],ValueError: Array conditional must be same shape as self,failed -11188,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_row_key[key6-KeyError],KeyError: 'invalid',failed -11194,tests.integ.modin.frame.test_where,test_where_series_cond[series_longer_than_dataframe],ValueError: Array conditional must be same shape as self,failed -11196,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice[False--1-4-4],"AssertionError: DataFrame are different +[left]: (1, 7) +[right]: (0, 7)",failed +7826,tests.integ.modin.frame.test_pct_change,test_pct_change_simple[columns-_NoDefault.no_default-0-nonulls],"Failed: DID NOT WARN. No warnings of type (,) were emitted. +The list of emitted warnings is: [].",failed +7827,tests.integ.modin.test_concat,test_concat_with_keys_and_names[1-one-None-names2],ValueError: Length of names must match number of levels in MultiIndex.,failed +7832,tests.integ.modin.frame.test_pct_change,test_pct_change_simple[columns-_NoDefault.no_default-1-nonulls],"Failed: DID NOT WARN. No warnings of type (,) were emitted. +The list of emitted warnings is: [].",failed +7833,tests.integ.modin.frame.test_iloc,test_df_iloc_get_range_deviating_behavior[col-range_key0],IndexError: positional indexers are out-of-bounds,failed +7838,tests.integ.modin.frame.test_pct_change,test_pct_change_simple[columns-_NoDefault.no_default-2-nonulls],"Failed: DID NOT WARN. No warnings of type (,) were emitted. +The list of emitted warnings is: [].",failed +7841,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice[True-9-10-1],"AssertionError: DataFrame are different DataFrame shape mismatch -[left]: (0, 7) -[right]: (1, 7)",failed -11206,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice[False--1-4-10],"AssertionError: DataFrame are different +[left]: (1, 7) +[right]: (0, 7)",failed +7842,tests.integ.modin.frame.test_loc,test_df_loc_set_scalar_row_key_enlargement[data_index1-u-col_key12-90],SNOW-1321196: pandas 2.2.1 migration test failure,xfailed +7845,tests.integ.modin.test_concat,test_concat_with_keys_and_names[1-None-two-names1],ValueError: Length of names must match number of levels in MultiIndex.,failed +7848,tests.integ.modin.frame.test_iloc,test_df_iloc_get_range_deviating_behavior[col-range_key1],IndexError: positional indexers are out-of-bounds,failed +7850,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice[True-9-10-4],"AssertionError: DataFrame are different DataFrame shape mismatch -[left]: (2, 7) -[right]: (3, 7)",failed -11220,tests.integ.modin.frame.test_where,test_where_series_other_axis_not_specified,"AssertionError: Regex pattern did not match. - Regex: 'df.where requires an axis parameter \\(0 or 1\\) when given a Series' - Input: 'Must specify axis=0 or 1'",failed -11223,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_row_key[key7-None],KeyError: 'mark vi',failed -11241,tests.integ.modin.frame.test_where,test_where_series_other_axis_0[matching_index-series_shorter_than_dataframe],IndexError: index 0 is out of bounds for axis 0 with size 0,failed -11276,tests.integ.modin.frame.test_where,test_where_series_other_axis_0[unmatched_index-series_shorter_than_dataframe],IndexError: index 0 is out of bounds for axis 0 with size 0,failed -11288,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_row_key[key8-None],KeyError: 'mark vi',failed -11293,tests.integ.modin.frame.test_where,test_where_series_other_axis_0[unmatched_index-series_same_length_as_dataframe],IndexError: index 0 is out of bounds for axis 0 with size 0,failed -11300,tests.integ.modin.frame.test_astype,test_astype_from_timestamp_ltz[float161],"AssertionError: Regex pattern did not match. - Regex: 'cannot be converted' - Input: 'Cannot cast DatetimeArray to dtype float16'",failed -11315,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_row_key[key9-None],KeyError: 'mark vi',failed -11321,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice[False-2-1-None],"AssertionError: DataFrame are different +[left]: (1, 7) +[right]: (0, 7)",failed +7852,tests.integ.modin.test_concat,test_concat_with_keys_and_names[1-None-two-names2],ValueError: Length of names must match number of levels in MultiIndex.,failed +7859,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice[True-9-10-10],"AssertionError: DataFrame are different DataFrame shape mismatch -[left]: (0, 7) -[right]: (1, 7)",failed -11322,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_row_key[key10-AssertionError],"assert False - + where False = fizz fizz1 fizz2\nbuzz buzz1 buzz2\nmark i mark v 12 2\n mark vi 0 4.empty",failed -11327,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice[False-2-1--1],"AssertionError: DataFrame are different +[left]: (1, 7) +[right]: (0, 7)",failed +7864,tests.integ.modin.frame.test_iloc,test_df_iloc_get_range_deviating_behavior[col-range_key2],IndexError: positional indexers are out-of-bounds,failed +7869,tests.integ.modin.test_concat,test_concat_with_keys_and_names[1-None-None-names1],ValueError: Length of names must match number of levels in MultiIndex.,failed +7877,tests.integ.modin.frame.test_iloc,test_df_iloc_get_range_deviating_behavior[col-range_key3],IndexError: positional indexers are out-of-bounds,failed +7878,tests.integ.modin.test_concat,test_concat_with_keys_and_names[1-None-None-names2],ValueError: Length of names must match number of levels in MultiIndex.,failed +7888,tests.integ.modin.frame.test_loc,test_df_loc_set_scalar_row_key_enlargement[data_index1-v-col_key13-95],SNOW-1321196: pandas 2.2.1 migration test failure,xfailed +7892,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_series_row_key_df_item_match_pandas[row_pos0-col_pos0-item_values0],"AssertionError: DataFrame.iloc[:, 0] (column name=""A"") are different -DataFrame shape mismatch -[left]: (0, 7) -[right]: (1, 7)",failed -11328,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[fizz1-mark i],AssertionError,failed -11337,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[fizz1-row1],AssertionError,failed -11338,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice[False-2-1-1],"AssertionError: DataFrame are different +DataFrame.iloc[:, 0] (column name=""A"") values are different (75.0 %) +[index]: [0, 1, 2, 3] +[left]: [5.0, nan, nan, nan] +[right]: [5, 91, 92, 93]",failed +7893,tests.integ.modin.test_concat,test_concat_empty_keys_negative[0],AssertionError: exception type does not match with expected type ,failed +7896,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice[True--9--1-None],"AssertionError: DataFrame are different DataFrame shape mismatch -[left]: (0, 7) -[right]: (1, 7)",failed -11340,tests.integ.modin.frame.test_where,test_where_series_other_axis_0[unmatched_index-series_longer_than_dataframe],IndexError: index 0 is out of bounds for axis 0 with size 0,failed -11345,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[fizz1-row2],AssertionError: Got type: ,failed -11357,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice[False-2-4-None],"AssertionError: DataFrame are different +[left]: (1, 7) +[right]: (0, 7)",failed +7898,tests.integ.modin.frame.test_iloc,test_df_iloc_get_key_bool[col-index-key5],IndexError: positional indexers are out-of-bounds,failed +7902,tests.integ.modin.test_concat,test_concat_empty_keys_negative[1],AssertionError: exception type does not match with expected type ,failed +7906,tests.integ.modin.frame.test_iloc,test_df_iloc_get_key_bool[col-ndarray-key0],"ValueError: +Location based indexing can only have [integer, integer slice (START point is +INCLUDED, END point is EXCLUDED), listlike of integers, boolean array] types.",failed +7907,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice[True--9--1--1],"AssertionError: DataFrame are different DataFrame shape mismatch -[left]: (2, 7) -[right]: (3, 7)",failed -11358,tests.integ.modin.frame.test_where,test_where_series_other_axis_1[matching_index-series_same_length_as_dataframe],"AssertionError: DataFrame.iloc[:, 0] (column name=""col1"") are different - -DataFrame.iloc[:, 0] (column name=""col1"") values are different (100.0 %) -[index]: [0, 1, 2] -[left]: [nan, nan, nan] -[right]: [11, 11, 11]",failed -11360,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[fizz1-row3],AssertionError,failed -11369,tests.integ.modin.frame.test_where,test_where_series_other_axis_1[matching_index-series_longer_than_dataframe],"AssertionError: DataFrame.iloc[:, 0] (column name=""col1"") are different +[left]: (1, 7) +[right]: (0, 7)",failed +7910,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_series_row_key_df_item_match_pandas[row_pos1-col_pos1-item_values1],"AssertionError: DataFrame.iloc[:, 0] (column name=""A"") are different -DataFrame.iloc[:, 0] (column name=""col1"") values are different (100.0 %) -[index]: [0, 1, 2] -[left]: [nan, nan, nan] -[right]: [11, 11, 11]",failed -11370,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice[False-2-4--1],"AssertionError: DataFrame are different +DataFrame.iloc[:, 0] (column name=""A"") values are different (75.0 %) +[index]: [0, 1, 2, 3] +[left]: [5.0, nan, nan, nan] +[right]: [5, 93, 92, 91]",failed +7917,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice[True--9--1-1],"AssertionError: DataFrame are different DataFrame shape mismatch -[left]: (2, 7) -[right]: (3, 7)",failed -11374,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[fizz1-row4],"KeyError: ['viper', 'mark i', 'viper']",failed -11380,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice[False-2-4-1],"AssertionError: DataFrame are different +[left]: (1, 7) +[right]: (0, 7)",failed +7918,tests.integ.modin.frame.test_loc,test_df_loc_set_scalar_row_key_enlargement[data_index1-y-col_key16-item_values16],ValueError: cannot reindex on an axis with duplicate labels,failed +7922,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_series_row_key_df_item_match_pandas[row_pos2-col_pos2-item_values2],"AssertionError: DataFrame.iloc[:, 1] (column name=""B"") are different + +DataFrame.iloc[:, 1] (column name=""B"") values are different (75.0 %) +[index]: [0, 1, 2, 3] +[left]: [nan, nan, 12.0, nan] +[right]: [95, 92, 12, 98]",failed +7924,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice[True--9--1-4],"AssertionError: DataFrame are different DataFrame shape mismatch [left]: (1, 7) -[right]: (2, 7)",failed -11387,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice[False-2-4-4],"AssertionError: DataFrame are different +[right]: (0, 7)",failed +7927,tests.integ.modin.frame.test_pct_change,test_axis_0_with_timedelta[None--1],TypeError: unsupported operand type for /: got timedelta64[ns],failed +7929,tests.integ.modin.frame.test_pct_change,test_axis_0_with_timedelta[None-0],TypeError: unsupported operand type for /: got timedelta64[ns],failed +7933,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_series_row_key_df_item_match_pandas[row_pos3-col_pos3-item_values3],"AssertionError: DataFrame.iloc[:, 0] (column name=""A"") are different -DataFrame shape mismatch -[left]: (0, 7) -[right]: (1, 7)",failed -11399,tests.integ.modin.frame.test_where,test_where_series_cond_after_join,ValueError: Array conditional must be same shape as self,failed -11403,tests.integ.modin.frame.test_astype,test_astype_from_timestamp_ltz[float64],"AssertionError: Regex pattern did not match. - Regex: 'cannot be converted' - Input: 'Cannot cast DatetimeArray to dtype float64'",failed -11409,tests.integ.modin.frame.test_where,test_where_with_zero_other_mixed_types_SNOW_1372268,ValueError: Array conditional must be same shape as self,failed -11417,tests.integ.modin.frame.test_where,test_where_with_zero_other_SNOW_1372268,ValueError: Array conditional must be same shape as self,failed -11428,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[fizz1-row5],KeyError: 'mark vi',failed -11435,tests.integ.modin.groupby.test_groupby_apply,test_dropna[index0-True-include_groups_True],KeyError: 'index',failed -11436,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice[False--2--1-None],"AssertionError: DataFrame are different +DataFrame.iloc[:, 0] (column name=""A"") values are different (50.0 %) +[index]: [0, 1, 2, 3] +[left]: [nan, 8.0, nan, nan] +[right]: [92.0, 8.0, 98.0, nan] +At positional index 0, first diff: nan != 92.0",failed +7934,tests.integ.modin.frame.test_pct_change,test_axis_0_with_timedelta[None-1],TypeError: unsupported operand type for /: got timedelta64[ns],failed +7936,tests.integ.modin.frame.test_iloc,test_df_iloc_get_key_bool[col-ndarray-key1],IndexError: positional indexers are out-of-bounds,failed +7937,tests.integ.modin.frame.test_pct_change,test_axis_0_with_timedelta[None-2],TypeError: unsupported operand type for /: got timedelta64[ns],failed +7941,tests.integ.modin.frame.test_pct_change,test_axis_0_with_timedelta[_NoDefault.no_default--1],TypeError: unsupported operand type for /: got timedelta64[ns],failed +7943,tests.integ.modin.frame.test_pct_change,test_axis_0_with_timedelta[_NoDefault.no_default-0],TypeError: unsupported operand type for /: got timedelta64[ns],failed +7944,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_series_row_key_df_item_match_pandas[row_pos4-col_pos4-item_values4],"AssertionError: DataFrame.iloc[:, 0] (column name=""A"") are different -DataFrame shape mismatch -[left]: (3, 7) -[right]: (4, 7)",failed -11443,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[fizz1-row6],KeyError: 'mark vi',failed -11445,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice[False--2--1-4],"AssertionError: DataFrame are different +DataFrame.iloc[:, 0] (column name=""A"") values are different (75.0 %) +[index]: [0, 1, 2, 3] +[left]: [5.0, nan, nan, nan] +[right]: [5, 91, 91, 91]",failed +7947,tests.integ.modin.frame.test_loc,test_df_loc_set_scalar_row_key_enlargement[data_index1-y-col_key17-item_values17],ValueError: cannot reindex on an axis with duplicate labels,failed +7951,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_series_row_key_df_item_match_pandas[row_pos5-col_pos5-item_values5],"AssertionError: DataFrame.iloc[:, 0] (column name=""A"") are different -DataFrame shape mismatch -[left]: (2, 7) -[right]: (3, 7)",failed -11446,tests.integ.modin.groupby.test_groupby_apply,test_dropna[index0-True-include_groups_False],KeyError: 'index',failed -11450,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice[False--2--1-10],"AssertionError: DataFrame are different +DataFrame.iloc[:, 0] (column name=""A"") values are different (75.0 %) +[index]: [0, 1, 2, 3] +[left]: [5.0, nan, nan, nan] +[right]: [5, 91, 92, 93]",failed +7953,tests.integ.modin.frame.test_loc,test_df_loc_set_scalar_row_key_enlargement[data_index1-u-col_key18-item_values18],SNOW-1321196: pandas 2.2.1 migration test failure,xfailed +7955,tests.integ.modin.frame.test_iloc,test_df_iloc_get_key_bool[col-ndarray-key5],IndexError: positional indexers are out-of-bounds,failed +7956,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice[True--9-1-4],"AssertionError: DataFrame are different DataFrame shape mismatch -[left]: (3, 7) -[right]: (4, 7)",failed -11452,tests.integ.modin.frame.test_set_index,test_set_index_pass_arrays_duplicate[True-False-frame_of_ints_and_timedelta-Index-Index],"TypeError: The parameter ""keys"" may be a column key, one-dimensional array, or a list containing only valid column keys and one-dimensional arrays. Received column of type ",failed -11454,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice[False--2-1-None],"AssertionError: DataFrame are different +[left]: (1, 7) +[right]: (0, 7)",failed +7959,tests.integ.modin.frame.test_pct_change,test_axis_0_with_timedelta[_NoDefault.no_default-1],TypeError: unsupported operand type for /: got timedelta64[ns],failed +7960,tests.integ.modin.frame.test_loc,test_df_loc_set_scalar_row_key_enlargement_deviates_from_native_pandas[data_index0-a-col_key0-95],"KeyError: array(['T', 'T'], dtype=object)",failed +7963,tests.integ.modin.frame.test_pct_change,test_axis_0_with_timedelta[_NoDefault.no_default-2],TypeError: unsupported operand type for /: got timedelta64[ns],failed +7966,tests.integ.modin.frame.test_loc,test_df_loc_set_scalar_row_key_enlargement_deviates_from_native_pandas[data_index0-w-col_key1-91],"KeyError: array(['V', 'T'], dtype=object)",failed +7968,tests.integ.modin.frame.test_pct_change,test_axis_0_with_timedelta[ffill--1],TypeError: unsupported operand type for /: got timedelta64[ns],failed +7970,tests.integ.modin.frame.test_pct_change,test_axis_0_with_timedelta[ffill-0],TypeError: unsupported operand type for /: got timedelta64[ns],failed +7972,tests.integ.modin.frame.test_loc,test_df_loc_set_scalar_row_key_enlargement_deviates_from_native_pandas[data_index0-u-col_key2-90],"KeyError: array(['T'], dtype=object)",failed +7975,tests.integ.modin.frame.test_pct_change,test_axis_0_with_timedelta[ffill-1],TypeError: unsupported operand type for /: got timedelta64[ns],failed +7977,tests.integ.modin.frame.test_loc,test_df_loc_set_scalar_row_key_enlargement_deviates_from_native_pandas[data_index0-v-col_key3-95],"KeyError: array(['T', 'T'], dtype=object)",failed +7978,tests.integ.modin.frame.test_pct_change,test_axis_0_with_timedelta[ffill-2],TypeError: unsupported operand type for /: got timedelta64[ns],failed +7982,tests.integ.modin.frame.test_pct_change,test_axis_0_with_timedelta[pad--1],TypeError: unsupported operand type for /: got timedelta64[ns],failed +7984,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_series_row_key_df_item_match_pandas[row_pos7-col_pos7-item_values7],"AssertionError: DataFrame.iloc[:, 1] (column name=""B"") are different -DataFrame shape mismatch -[left]: (2, 7) -[right]: (3, 7)",failed -11456,tests.integ.modin.groupby.test_groupby_apply,test_dropna[index0-False-include_groups_True],KeyError: 'index',failed -11460,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[fizz1-row7],KeyError: 'mark vi',failed -11463,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice[False--2-1-1],"AssertionError: DataFrame are different +DataFrame.iloc[:, 1] (column name=""B"") values are different (75.0 %) +[index]: [0, 1, 2, 3] +[left]: [nan, nan, nan, 15.0] +[right]: [93, 91, 92, 15]",failed +7985,tests.integ.modin.frame.test_pct_change,test_axis_0_with_timedelta[pad-0],TypeError: unsupported operand type for /: got timedelta64[ns],failed +7989,tests.integ.modin.frame.test_pct_change,test_axis_0_with_timedelta[pad-1],TypeError: unsupported operand type for /: got timedelta64[ns],failed +7991,tests.integ.modin.frame.test_pct_change,test_axis_0_with_timedelta[pad-2],TypeError: unsupported operand type for /: got timedelta64[ns],failed +7996,tests.integ.modin.frame.test_pct_change,test_axis_0_with_timedelta[backfill--1],TypeError: unsupported operand type for /: got timedelta64[ns],failed +7998,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_series_row_key_df_item_match_pandas[row_pos8-col_pos8-item_values8],"AssertionError: DataFrame.iloc[:, 0] (column name=""A"") are different -DataFrame shape mismatch -[left]: (0, 7) -[right]: (1, 7)",failed -11468,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice[False--2-1-4],"AssertionError: DataFrame are different +DataFrame.iloc[:, 0] (column name=""A"") values are different (75.0 %) +[index]: [0, 1, 2, 3] +[left]: [5.0, nan, nan, nan] +[right]: [5, 93, 93, 93]",failed +8000,tests.integ.modin.frame.test_pct_change,test_axis_0_with_timedelta[backfill-0],TypeError: unsupported operand type for /: got timedelta64[ns],failed +8001,tests.integ.modin.frame.test_loc,test_df_loc_set_scalar_row_key_enlargement_deviates_from_native_pandas[data_index0-u-col_key4-item_values4],"KeyError: array(['X', 'T'], dtype=object)",failed +8005,tests.integ.modin.frame.test_pct_change,test_axis_0_with_timedelta[backfill-1],TypeError: unsupported operand type for /: got timedelta64[ns],failed +8007,tests.integ.modin.frame.test_loc,test_df_loc_set_scalar_row_key_enlargement_deviates_from_native_pandas[data_index1-a-col_key0-95],"KeyError: array(['T', 'T'], dtype=object)",failed +8009,tests.integ.modin.frame.test_pct_change,test_axis_0_with_timedelta[backfill-2],TypeError: unsupported operand type for /: got timedelta64[ns],failed +8012,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_series_row_key_df_item_match_pandas[row_pos9-col_pos9-item_values9],"AssertionError: DataFrame.iloc[:, 1] (column name=""B"") are different -DataFrame shape mismatch -[left]: (1, 7) -[right]: (2, 7)",failed -11473,tests.integ.modin.groupby.test_groupby_apply,test_dropna[index0-False-include_groups_False],KeyError: 'index',failed -11474,tests.integ.modin.groupby.test_groupby_apply,test_dropna[index1-True-include_groups_True],"reason: We drop all the rows, apply the UDTF, and try to pivot the result, but pivoting an empty frame causes a SQL error due to SNOW-1233895",xfailed -11476,tests.integ.modin.groupby.test_groupby_apply,test_dropna[index1-True-include_groups_False],"reason: We drop all the rows, apply the UDTF, and try to pivot the result, but pivoting an empty frame causes a SQL error due to SNOW-1233895",xfailed -11478,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice[False--2-1-10],"AssertionError: DataFrame are different +DataFrame.iloc[:, 1] (column name=""B"") values are different (75.0 %) +[index]: [0, 1, 2, 3] +[left]: [6.0, nan, nan, nan] +[right]: [6, 91, 92, 93]",failed +8014,tests.integ.modin.frame.test_pct_change,test_axis_0_with_timedelta[bfill--1],TypeError: unsupported operand type for /: got timedelta64[ns],failed +8018,tests.integ.modin.frame.test_pct_change,test_axis_0_with_timedelta[bfill-0],TypeError: unsupported operand type for /: got timedelta64[ns],failed +8021,tests.integ.modin.frame.test_pct_change,test_axis_0_with_timedelta[bfill-1],TypeError: unsupported operand type for /: got timedelta64[ns],failed +8022,tests.integ.modin.frame.test_loc,test_df_loc_set_scalar_row_key_enlargement_deviates_from_native_pandas[data_index1-w-col_key1-91],ValueError: cannot reindex on an axis with duplicate labels,failed +8024,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_series_row_key_df_item_match_pandas[row_pos10-col_pos10-item_values10],"AssertionError: DataFrame.iloc[:, 1] (column name=""B"") are different -DataFrame shape mismatch -[left]: (2, 7) -[right]: (3, 7)",failed -11482,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[fizz1-row8],KeyError: 'mark vi',failed -11487,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice[False--2-4-None],"AssertionError: DataFrame are different +DataFrame.iloc[:, 1] (column name=""B"") values are different (50.0 %) +[index]: [0, 1, 2, 3] +[left]: [6.0, nan, nan, 15.0] +[right]: [6, 91, 93, 15]",failed +8028,tests.integ.modin.test_concat,test_concat_dict_with_invalid_keys_negative[0],Failed: DID NOT RAISE ,failed +8031,tests.integ.modin.test_concat,test_concat_dict_with_invalid_keys_negative[1],Failed: DID NOT RAISE ,failed +8033,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_series_row_key_df_item_match_pandas[row_pos11-col_pos11-item_values11],"AssertionError: DataFrame.iloc[:, 1] (column name=""B"") are different + +DataFrame.iloc[:, 1] (column name=""B"") values are different (50.0 %) +[index]: [0, 1, 2, 3] +[left]: [nan, 9.0, nan, 15.0] +[right]: [94, 9, 92, 15]",failed +8036,tests.integ.modin.frame.test_loc,test_df_loc_set_scalar_row_key_enlargement_deviates_from_native_pandas[data_index1-u-col_key2-90],ValueError: cannot reindex on an axis with duplicate labels,failed +8038,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice_with_unordered_index[1-1-None],"AssertionError: DataFrame are different DataFrame shape mismatch [left]: (1, 7) -[right]: (2, 7)",failed -11490,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[fizz1-row9],AssertionError,failed -11497,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[fizz1-row10],AssertionError,failed -11499,tests.integ.modin.groupby.test_all_any,test_all_any_invalid_types[data0-Boolean value 'a' is not recognized],Failed: DID NOT RAISE ,failed -11500,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice[False--2-4-4],"AssertionError: DataFrame are different +[right]: (4, 7)",failed +8039,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice_with_unordered_index[1-1-1],"AssertionError: DataFrame are different DataFrame shape mismatch [left]: (0, 7) [right]: (1, 7)",failed -11501,tests.integ.modin.groupby.test_all_any,"test_all_any_invalid_types[data1-invalid\\ type\\ \\[TO_BOOLEAN\\(""values""\\.""value""\\)\\]\\ for\\ parameter\\ 'TO_BOOLEAN']",Failed: DID NOT RAISE ,failed -11503,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[fizz1-row11],AssertionError,failed -11508,tests.integ.modin.groupby.test_all_any,test_timedelta_any_with_nulls,"AssertionError: DataFrame.iloc[:, 0] (column name=""A"") are different +8040,tests.integ.modin.frame.test_pct_change,test_axis_0_with_timedelta[bfill-2],TypeError: unsupported operand type for /: got timedelta64[ns],failed +8042,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_series_row_key_df_item_match_pandas[row_pos12-col_pos12-item_values12],"AssertionError: DataFrame.iloc[:, 2] (column name=""C"") are different -DataFrame.iloc[:, 0] (column name=""A"") values are different (100.0 %) -[index]: [a] -[left]: [True] -[right]: [False]",failed -11509,tests.integ.modin.groupby.test_groupby_apply,test_dropna[index1-False-include_groups_True],KeyError: 'index',failed -11522,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[fizz1-row12],AssertionError: Got type: ,failed -11525,tests.integ.modin.groupby.test_groupby_apply,test_dropna[index1-False-include_groups_False],KeyError: 'index',failed -11527,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice[False--2-4-10],"AssertionError: DataFrame are different +DataFrame.iloc[:, 2] (column name=""C"") values are different (100.0 %) +[index]: [0, 1, 2, 3] +[left]: [nan, nan, nan, nan] +[right]: [93, 91, 92, 94]",failed +8043,tests.integ.modin.frame.test_pct_change,test_axis_1_with_timedelta_columns[None--1],TypeError: unsupported operand type for /: got timedelta64[ns],failed +8044,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice_with_unordered_index[1-1-6],"AssertionError: DataFrame are different DataFrame shape mismatch -[left]: (1, 7) +[left]: (0, 7) [right]: (2, 7)",failed -11530,tests.integ.modin.groupby.test_groupby_apply,test_returning_series_with_different_names[include_groups_True],"[XPASS(strict)] Snowpark pandas uses name returned from first group, while pandas returns None. This should be very rare in practice",failed -11531,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[fizz1-row13],AssertionError: Got type: ,failed -11536,tests.integ.modin.groupby.test_groupby_apply,test_returning_series_with_different_names[include_groups_False],"[XPASS(strict)] Snowpark pandas uses name returned from first group, while pandas returns None. This should be very rare in practice",failed -11539,tests.integ.modin.groupby.test_groupby_basic_agg,test_groupby_agg_first_and_last[first-False],"AssertionError: DataFrame.iloc[:, 1] (column name=""('float_col', 'first')"") are different - -DataFrame.iloc[:, 1] (column name=""('float_col', 'first')"") values are different (50.0 %) -[index]: [A, B] -[left]: [2.0, 3.0] -[right]: [nan, 3.0] -At positional index 0, first diff: 2.0 != nan",failed -11541,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[fizz1-row14],AssertionError,failed -11543,tests.integ.modin.groupby.test_groupby_apply,test_returning_series_with_conflicting_indexes[include_groups_True],[XPASS(strict)] Snowpark pandas return a DataFrame but native pandas returns a Series. This should be very rare in practice.,failed -11550,tests.integ.modin.groupby.test_groupby_apply,test_returning_series_with_conflicting_indexes[include_groups_False],[XPASS(strict)] Snowpark pandas return a DataFrame but native pandas returns a Series. This should be very rare in practice.,failed -11552,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col1-mark i],AssertionError,failed -11556,tests.integ.modin.groupby.test_groupby_basic_agg,test_groupby_agg_first_and_last[last-False],"AssertionError: DataFrame.iloc[:, 1] (column name=""('float_col', 'last')"") are different +8046,tests.integ.modin.frame.test_pct_change,test_axis_1_with_timedelta_columns[None-0],TypeError: unsupported operand type for /: got timedelta64[ns],failed +8047,tests.integ.modin.frame.test_pct_change,test_axis_1_with_timedelta_columns[None-1],TypeError: unsupported operand type for /: got timedelta64[ns],failed +8048,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_series_row_key_df_item_match_pandas[row_pos13-col_pos13-item_values13],"AssertionError: DataFrame.iloc[:, 1] (column name=""B"") are different -DataFrame.iloc[:, 1] (column name=""('float_col', 'last')"") values are different (50.0 %) -[index]: [A, B] -[left]: [4.0, 3.0] -[right]: [4.0, nan] -At positional index 1, first diff: 3.0 != nan",failed -11562,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col1-row1],AssertionError,failed -11569,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col1-row2],AssertionError: Got type: ,failed -11579,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col1-row3],"AssertionError: DataFrame.index are different +DataFrame.iloc[:, 1] (column name=""B"") values are different (50.0 %) +[index]: [0, 1, 2, 3] +[left]: [6.0, nan, nan, 15.0] +[right]: [6, 99, 101, 15]",failed +8049,tests.integ.modin.frame.test_pct_change,test_axis_1_with_timedelta_columns[None-2],TypeError: unsupported operand type for /: got timedelta64[ns],failed +8051,tests.integ.modin.frame.test_setitem,test_df_setitem_optimized,TypeError: unhashable type: 'Series',failed +8052,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice_with_unordered_index[1-4-None],KeyError: 3,failed +8053,tests.integ.modin.frame.test_pct_change,test_axis_1_with_timedelta_columns[_NoDefault.no_default--1],TypeError: unsupported operand type for /: got timedelta64[ns],failed +8057,tests.integ.modin.frame.test_loc,test_df_loc_set_scalar_row_key_enlargement_deviates_from_native_pandas[data_index1-v-col_key3-95],ValueError: cannot reindex on an axis with duplicate labels,failed +8058,tests.integ.modin.frame.test_pct_change,test_axis_1_with_timedelta_columns[_NoDefault.no_default-0],TypeError: unsupported operand type for /: got timedelta64[ns],failed +8060,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_series_row_key_df_item_match_pandas[row_pos14-col_pos14-item_values14],"AssertionError: DataFrame.iloc[:, 1] (column name=""B"") are different -DataFrame.index levels are different -[left]: 1, Index(['mark v', 'mark vi'], dtype='object') -[right]: 2, MultiIndex([('mark i', 'mark v'), - ('mark i', 'mark vi')], - )",failed -11587,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[string_col_1-include_groups_True-dropna_True-sort_True-group_keys_True-non_transform_returns_dataframe],AssertionError,failed -11595,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col1-row4],"KeyError: ['viper', 'mark i', 'viper']",failed -11607,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice[False-9-1-None],"AssertionError: DataFrame are different +DataFrame.iloc[:, 1] (column name=""B"") values are different (50.0 %) +[index]: [0, 1, 2, 3] +[left]: [6.0, nan, nan, 15.0] +[right]: [6, 99, 101, 15]",failed +8062,tests.integ.modin.frame.test_pct_change,test_axis_1_with_timedelta_columns[_NoDefault.no_default-1],TypeError: unsupported operand type for /: got timedelta64[ns],failed +8064,tests.integ.modin.frame.test_setitem,test_df_setitem_bool_2d_key_array_value[df_key-key_has_less_cols],"AssertionError: DataFrame.iloc[:, 2] (column name=""c"") are different -DataFrame shape mismatch -[left]: (0, 7) -[right]: (1, 7)",failed -11610,tests.integ.modin.frame.test_astype,test_astype_from_timestamp_ltz[datetime64[ns]],TypeError: Cannot use .astype to convert from timezone-aware dtype to timezone-naive dtype. Use obj.tz_localize(None) or obj.tz_convert('UTC').tz_localize(None) instead.,failed -11616,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice[False-9-1--1],"AssertionError: DataFrame are different +DataFrame.iloc[:, 2] (column name=""c"") values are different (100.0 %) +[index]: [0, 1, 2] +[left]: [-7, -8, -8] +[right]: [7, 8, 8]",failed +8066,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice_with_unordered_index[1-4-1],KeyError: 3,failed +8068,tests.integ.modin.frame.test_pct_change,test_axis_1_with_timedelta_columns[_NoDefault.no_default-2],TypeError: unsupported operand type for /: got timedelta64[ns],failed +8071,tests.integ.modin.frame.test_pct_change,test_axis_1_with_timedelta_columns[ffill--1],TypeError: unsupported operand type for /: got timedelta64[ns],failed +8072,tests.integ.modin.frame.test_setitem,test_df_setitem_bool_2d_key_array_value[df_key-key_has_less_rows],"AssertionError: DataFrame.iloc[:, 0] (column name=""a"") are different -DataFrame shape mismatch -[left]: (0, 7) -[right]: (1, 7)",failed -11620,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col1-row5],KeyError: 'mark vi',failed -11630,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice[False-9-1-1],"AssertionError: DataFrame are different +DataFrame.iloc[:, 0] (column name=""a"") values are different (33.33333 %) +[index]: [0, 1, 2] +[left]: [1, -2, -3] +[right]: [1, -2, 3]",failed +8073,tests.integ.modin.frame.test_iloc,test_df_iloc_set_with_series_row_key_df_item_match_pandas[row_pos15-col_pos15-item_values15],"AssertionError: DataFrame.iloc[:, 0] (column name=""A"") are different -DataFrame shape mismatch -[left]: (0, 7) -[right]: (1, 7)",failed -11645,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice[False-9-4-None],"AssertionError: DataFrame are different +DataFrame.iloc[:, 0] (column name=""A"") values are different (25.0 %) +[index]: [0, 1, 2, 3] +[left]: [5.0, nan, 11.0, 14.0] +[right]: [5, 99, 11, 14]",failed +8074,tests.integ.modin.frame.test_loc,test_df_loc_set_scalar_row_key_enlargement_deviates_from_native_pandas[data_index1-u-col_key4-item_values4],ValueError: cannot reindex on an axis with duplicate labels,failed +8078,tests.integ.modin.frame.test_pct_change,test_axis_1_with_timedelta_columns[ffill-0],TypeError: unsupported operand type for /: got timedelta64[ns],failed +8079,tests.integ.modin.frame.test_loc,test_df_loc_set_scalar_with_item_negative[None-item_value0-True-True],Failed: DID NOT RAISE ,failed +8081,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice_with_unordered_index[1-4-4],KeyError: 3,failed +8082,tests.integ.modin.frame.test_pct_change,test_axis_1_with_timedelta_columns[ffill-1],TypeError: unsupported operand type for /: got timedelta64[ns],failed +8085,tests.integ.modin.frame.test_loc,test_df_loc_set_scalar_with_item_negative[a-item_value1-True-True],Failed: DID NOT RAISE ,failed +8088,tests.integ.modin.frame.test_pct_change,test_axis_1_with_timedelta_columns[ffill-2],TypeError: unsupported operand type for /: got timedelta64[ns],failed +8092,tests.integ.modin.frame.test_pct_change,test_axis_1_with_timedelta_columns[pad--1],TypeError: unsupported operand type for /: got timedelta64[ns],failed +8094,tests.integ.modin.test_concat,test_concat_verify_integrity_axis1_negative[df],Failed: DID NOT RAISE ,failed +8095,tests.integ.modin.frame.test_loc,test_df_loc_set_scalar_with_item_negative[a-item_value3-True-True],Failed: DID NOT RAISE ,failed +8097,tests.integ.modin.frame.test_pct_change,test_axis_1_with_timedelta_columns[pad-0],TypeError: unsupported operand type for /: got timedelta64[ns],failed +8099,tests.integ.modin.test_concat,test_concat_verify_integrity_axis1_negative[series],Failed: DID NOT RAISE ,failed +8100,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice_with_unordered_index[1-4-6],KeyError: 3,failed +8103,tests.integ.modin.frame.test_setitem,test_df_setitem_bool_2d_key_array_value[array_key-key_has_more_cols],ValueError: Array must be same shape as DataFrame,failed +8104,tests.integ.modin.frame.test_pct_change,test_axis_1_with_timedelta_columns[pad-1],TypeError: unsupported operand type for /: got timedelta64[ns],failed +8105,tests.integ.modin.test_concat,test_concat_all_series_verify_integrity_axis1_negative,Failed: DID NOT RAISE ,failed +8112,tests.integ.modin.frame.test_setitem,test_df_setitem_bool_2d_key_array_value[array_key-key_has_less_cols],ValueError: Array must be same shape as DataFrame,failed +8118,tests.integ.modin.frame.test_setitem,test_df_setitem_bool_2d_key_array_value[array_key-key_has_more_rows],ValueError: Array must be same shape as DataFrame,failed +8121,tests.integ.modin.frame.test_loc,test_empty_df_loc_set_scalar,ValueError: cannot set a frame with no defined columns,failed +8123,tests.integ.modin.frame.test_setitem,test_df_setitem_bool_2d_key_array_value[array_key-key_has_less_rows],ValueError: Array must be same shape as DataFrame,failed +8128,tests.integ.modin.frame.test_iloc,test_df_iloc_get_key_bool[col-index with name-key1],IndexError: positional indexers are out-of-bounds,failed +8133,tests.integ.modin.frame.test_setitem,test_df_setitem_bool_2d_key_scalar_value[df_key-key_has_less_cols],"AssertionError: DataFrame.iloc[:, 2] (column name=""c"") are different -DataFrame shape mismatch -[left]: (0, 7) -[right]: (1, 7)",failed -11654,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice[False-9-4--1],"AssertionError: DataFrame are different +DataFrame.iloc[:, 2] (column name=""c"") values are different (100.0 %) +[index]: [0, 1, 2] +[left]: [-1, -1, -1] +[right]: [7, 8, 8]",failed +8135,tests.integ.modin.frame.test_pct_change,test_axis_1_with_timedelta_columns[pad-2],TypeError: unsupported operand type for /: got timedelta64[ns],failed +8136,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice_with_unordered_index[1-6-None],"AssertionError: DataFrame are different DataFrame shape mismatch -[left]: (0, 7) -[right]: (1, 7)",failed -11658,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[string_col_1-include_groups_True-dropna_True-sort_True-group_keys_True-transform_returns_dataframe],TypeError: must pass an index to rename,failed -11665,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice[False-9-4-1],"AssertionError: DataFrame are different +[left]: (6, 7) +[right]: (3, 7)",failed +8137,tests.integ.modin.test_concat,test_concat_verify_integrity_axis0_negative[index10-index20],Failed: DID NOT RAISE ,failed +8140,tests.integ.modin.frame.test_pct_change,test_axis_1_with_timedelta_columns[backfill--1],TypeError: unsupported operand type for /: got timedelta64[ns],failed +8142,tests.integ.modin.test_concat,test_concat_verify_integrity_axis0_negative[index11-index21],Failed: DID NOT RAISE ,failed +8143,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice_with_unordered_index[1-6-1],"AssertionError: DataFrame are different DataFrame shape mismatch -[left]: (0, 7) -[right]: (1, 7)",failed -11672,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice[False-9-4-4],"AssertionError: DataFrame are different +[left]: (3, 7) +[right]: (0, 7)",failed +8144,tests.integ.modin.frame.test_loc,test_empty_df_loc_set_series_and_list[native_item0],"AssertionError: DataFrame.index are different -DataFrame shape mismatch -[left]: (0, 7) -[right]: (1, 7)",failed -11673,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[string_col_1-include_groups_True-dropna_True-sort_True-group_keys_True-non_transform_returns_series],"AssertionError: Series are different +DataFrame.index values are different (100.0 %) +[left]: RangeIndex(start=0, stop=3, step=1) +[right]: Index([None, None, None], dtype='object') +At positional index 0, first diff: 0 != None",failed +8146,tests.integ.modin.frame.test_setitem,test_df_setitem_bool_2d_key_scalar_value[df_key-key_has_less_rows],"AssertionError: DataFrame.iloc[:, 0] (column name=""a"") are different -Series length are different -[left]: 3, Index(['sum', 'mean', 'name'], dtype='object', name='custom_metrics') -[right]: 6, MultiIndex([('k0', 'sum'), - ('k0', 'mean'), - ('k0', 'name'), - ('k1', 'sum'), - ('k1', 'mean'), - ('k1', 'name')], - names=['string_col_1', None])",failed -11677,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col1-row6],KeyError: 'mark vi',failed -11690,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[string_col_1-include_groups_True-dropna_True-sort_True-group_keys_True-transform_returns_series],"AssertionError: MultiIndex level [1] are different +DataFrame.iloc[:, 0] (column name=""a"") values are different (33.33333 %) +[index]: [0, 1, 2] +[left]: [1, -1, -1] +[right]: [1, -1, 3]",failed +8147,tests.integ.modin.frame.test_pct_change,test_axis_1_with_timedelta_columns[backfill-0],TypeError: unsupported operand type for /: got timedelta64[ns],failed +8148,tests.integ.modin.test_concat,test_concat_verify_integrity_axis0_negative[index12-index22],Failed: DID NOT RAISE ,failed +8151,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice_with_unordered_index[1-6-4],"AssertionError: DataFrame are different -Attribute ""names"" are different -[left]: [None] -[right]: ['index']",failed -11695,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice[False-9-10-4],"AssertionError: DataFrame are different +DataFrame shape mismatch +[left]: (2, 7) +[right]: (0, 7)",failed +8152,tests.integ.modin.test_concat,test_concat_verify_integrity_axis0_large_overlap_negative,Failed: DID NOT RAISE ,failed +8154,tests.integ.modin.frame.test_pct_change,test_axis_1_with_timedelta_columns[backfill-1],TypeError: unsupported operand type for /: got timedelta64[ns],failed +8156,tests.integ.modin.frame.test_setitem,test_df_setitem_bool_2d_key_scalar_value[array_key-key_has_more_cols],ValueError: Array must be same shape as DataFrame,failed +8157,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice_with_unordered_index[1-6-6],"AssertionError: DataFrame are different DataFrame shape mismatch -[left]: (0, 7) +[left]: (4, 7) [right]: (1, 7)",failed -11703,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[string_col_1-include_groups_True-dropna_True-sort_True-group_keys_True-return_scalar],"AssertionError: Series are different +8159,tests.integ.modin.frame.test_pct_change,test_axis_1_with_timedelta_columns[backfill-2],TypeError: unsupported operand type for /: got timedelta64[ns],failed +8160,tests.integ.modin.frame.test_setitem,test_df_setitem_bool_2d_key_scalar_value[array_key-key_has_less_cols],ValueError: Array must be same shape as DataFrame,failed +8165,tests.integ.modin.frame.test_pct_change,test_axis_1_with_timedelta_columns[bfill--1],TypeError: unsupported operand type for /: got timedelta64[ns],failed +8166,tests.integ.modin.frame.test_loc,test_empty_df_loc_set_series_and_list[native_item1],"AssertionError: DataFrame.index are different -Series values are different (100.0 %) -[index]: [k0, k1] -[left]: [x -int_col 44 -dtype: int64_x -int_col 14.666667 -dtype: float64_k0, x -int_col 14 -dtype: int64_x -int_col 14.0 -dtype: float64_k1] -[right]: [44_14.666666666666666_k0, 14_14.0_k1] -At positional index 0, first diff: x -int_col 44 -dtype: int64_x -int_col 14.666667 -dtype: float64_k0 != 44_14.666666666666666_k0",failed -11704,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col1-row7],KeyError: 'mark vi',failed -11714,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[string_col_1-include_groups_True-dropna_True-sort_True-group_keys_False-non_transform_returns_dataframe],AssertionError,failed -11722,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice[False--9--1-None],"AssertionError: DataFrame are different +DataFrame.index values are different (100.0 %) +[left]: RangeIndex(start=0, stop=3, step=1) +[right]: Index([None, None, None], dtype='object') +At positional index 0, first diff: 0 != None",failed +8167,tests.integ.modin.frame.test_setitem,test_df_setitem_bool_2d_key_scalar_value[array_key-key_has_more_rows],ValueError: Array must be same shape as DataFrame,failed +8172,tests.integ.modin.frame.test_pct_change,test_axis_1_with_timedelta_columns[bfill-0],TypeError: unsupported operand type for /: got timedelta64[ns],failed +8173,tests.integ.modin.frame.test_setitem,test_df_setitem_bool_2d_key_scalar_value[array_key-key_has_less_rows],ValueError: Array must be same shape as DataFrame,failed +8176,tests.integ.modin.frame.test_pct_change,test_axis_1_with_timedelta_columns[bfill-1],TypeError: unsupported operand type for /: got timedelta64[ns],failed +8180,tests.integ.modin.test_concat,test_concat_levels_negative,Failed: DID NOT RAISE ,failed +8181,tests.integ.modin.frame.test_pct_change,test_axis_1_with_timedelta_columns[bfill-2],TypeError: unsupported operand type for /: got timedelta64[ns],failed +8184,tests.integ.modin.frame.test_pct_change,test_axis_1_with_timedelta_and_non_timedelta_column_invalid[data0],"AssertionError: Regex pattern did not match. + Regex: 'pct_change\\(axis=1\\)\\ is\\ invalid\\ when\\ one\\ column\\ is\\ Timedelta\\ another\\ column\\ is\\ not\\.' + Input: 'unsupported operand type for /: got timedelta64[ns]'",failed +8186,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice_with_unordered_index[-1-1-None],KeyError: 2,failed +8187,tests.integ.modin.frame.test_pct_change,test_axis_1_with_timedelta_and_non_timedelta_column_invalid[data1],"AssertionError: Regex pattern did not match. + Regex: 'pct_change\\(axis=1\\)\\ is\\ invalid\\ when\\ one\\ column\\ is\\ Timedelta\\ another\\ column\\ is\\ not\\.' + Input: 'unsupported operand type for /: got timedelta64[ns]'",failed +8190,tests.integ.modin.frame.test_pct_change,test_pct_change_unsupported_args[params0],Failed: DID NOT RAISE ,failed +8191,tests.integ.modin.frame.test_setitem,test_df_setitem_bool_2d_key_df_value_mismatched_column_labels[df_key-key_has_less_cols],"AssertionError: DataFrame.iloc[:, 2] (column name=""c"") are different -DataFrame shape mismatch -[left]: (0, 7) -[right]: (1, 7)",failed -11727,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col1-row8],KeyError: 'mark vi',failed -11732,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice[False--9--1-1],"AssertionError: DataFrame are different +DataFrame.iloc[:, 2] (column name=""c"") values are different (100.0 %) +[index]: [0, 1, 2] +[left]: [nan, nan, nan] +[right]: [7, 8, 8]",failed +8197,tests.integ.modin.frame.test_pct_change,test_pct_change_bad_periods,ValueError: periods must be an int. got instead,failed +8199,tests.integ.modin.frame.test_pct_change,test_pct_change_bad_dtypes[data0],"AssertionError: Regex pattern did not match. + Regex: 'cannot perform pct_change on non-numeric column with dtype' + Input: 'unsupported operand type for /: got object'",failed +8201,tests.integ.modin.frame.test_pct_change,test_pct_change_bad_dtypes[data1],"AssertionError: Regex pattern did not match. + Regex: 'cannot perform pct_change on non-numeric column with dtype' + Input: 'unsupported operand type for /: got object'",failed +8203,tests.integ.modin.frame.test_setitem,test_df_setitem_bool_2d_key_df_value_mismatched_column_labels[df_key-key_has_less_rows],"AssertionError: DataFrame.iloc[:, 0] (column name=""a"") are different -DataFrame shape mismatch -[left]: (0, 7) -[right]: (1, 7)",failed -11734,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col1-row9],AssertionError,failed -11735,tests.integ.modin.groupby.test_groupby_apply,test_group_dataframe_with_column_of_all_nulls_snow_1233832[None-include_groups_True],[XPASS(strict)] SNOW-1233832,failed -11738,tests.integ.modin.groupby.test_groupby_apply,test_group_dataframe_with_column_of_all_nulls_snow_1233832[None-include_groups_False],[XPASS(strict)] SNOW-1233832,failed -11742,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col1-row10],AssertionError,failed -11743,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice[False--9--1-4],"AssertionError: DataFrame are different +DataFrame.iloc[:, 0] (column name=""a"") values are different (33.33333 %) +[index]: [0, 1, 2] +[left]: [1.0, nan, nan] +[right]: [1.0, nan, 3.0] +At positional index 2, first diff: nan != 3.0",failed +8204,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice_with_unordered_index[-1-1-1],KeyError: 2,failed +8205,tests.integ.modin.test_concat,test_concat_duplicate_columns[columns11-columns21-expected_rows1-expected_cols1],pandas.errors.InvalidIndexError: Reindexing only valid with uniquely valued Index objects,failed +8211,tests.integ.modin.frame.test_loc,test_empty_df_loc_set_series_and_list[native_item3],"AssertionError: DataFrame.index are different -DataFrame shape mismatch -[left]: (0, 7) -[right]: (1, 7)",failed -11745,tests.integ.modin.frame.test_astype,test_astype_from_timestamp_ltz[boolean],TypeError: Need to pass bool-like values,failed -11749,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[string_col_1-include_groups_True-dropna_True-sort_True-group_keys_False-transform_returns_dataframe],TypeError: must pass an index to rename,failed -11752,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col1-row11],AssertionError,failed -11753,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice[False--9--1-10],"AssertionError: DataFrame are different +DataFrame.index values are different (100.0 %) +[left]: RangeIndex(start=0, stop=3, step=1) +[right]: Index(['a', 'b', 'c'], dtype='object') +At positional index 0, first diff: 0 != a",failed +8212,tests.integ.modin.frame.test_setitem,test_df_setitem_bool_2d_key_df_value_mismatched_column_labels[array_key-key_has_more_cols],ValueError: Array must be same shape as DataFrame,failed +8213,tests.integ.modin.test_concat,test_concat_duplicate_columns[columns12-columns22-expected_rows2-expected_cols2],pandas.errors.InvalidIndexError: Reindexing only valid with uniquely valued Index objects,failed +8216,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice_with_unordered_index[-1-1-4],KeyError: 2,failed +8218,tests.integ.modin.frame.test_setitem,test_df_setitem_bool_2d_key_df_value_mismatched_column_labels[array_key-key_has_less_cols],ValueError: Array must be same shape as DataFrame,failed +8222,tests.integ.modin.test_concat,test_concat_duplicate_columns[columns13-columns23-expected_rows3-expected_cols3],pandas.errors.InvalidIndexError: Reindexing only valid with uniquely valued Index objects,failed +8224,tests.integ.modin.frame.test_setitem,test_df_setitem_bool_2d_key_df_value_mismatched_column_labels[array_key-key_has_more_rows],ValueError: Array must be same shape as DataFrame,failed +8234,tests.integ.modin.frame.test_loc,test_empty_df_loc_set_series_and_list[native_item5],"AssertionError: DataFrame.index are different -DataFrame shape mismatch -[left]: (0, 7) -[right]: (1, 7)",failed -11760,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col1-row12],AssertionError: Got type: ,failed -11762,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice[False--9-1-None],"AssertionError: DataFrame are different +DataFrame.index values are different (100.0 %) +[left]: RangeIndex(start=0, stop=4, step=1) +[right]: Index(['a', None, None, 'd'], dtype='object') +At positional index 0, first diff: 0 != a",failed +8243,tests.integ.modin.frame.test_setitem,test_df_setitem_bool_2d_key_df_value_mismatched_column_labels[array_key-key_has_less_rows],ValueError: Array must be same shape as DataFrame,failed +8250,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice_with_unordered_index[-1-1-6],KeyError: 2,failed +8257,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice_with_unordered_index[-1-4-None],"AssertionError: DataFrame are different DataFrame shape mismatch -[left]: (0, 7) -[right]: (1, 7)",failed -11768,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col1-row13],AssertionError: Got type: ,failed -11770,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[string_col_1-include_groups_True-dropna_True-sort_True-group_keys_False-non_transform_returns_series],"AssertionError: Series are different - -Series length are different -[left]: 3, Index(['sum', 'mean', 'name'], dtype='object', name='custom_metrics') -[right]: 6, Index(['sum', 'mean', 'name', 'sum', 'mean', 'name'], dtype='object')",failed -11774,tests.integ.modin.groupby.test_groupby_apply,test_as_index_false[normalize_numeric_columns_by_sum-level_0-include_groups_True],"AssertionError: DataFrame.index are different +[left]: (2, 7) +[right]: (3, 7)",failed +8264,tests.integ.modin.frame.test_setitem,test_df_setitem_bool_2d_key_df_value_mismatched_index_labels[df_key-key_has_less_cols],"AssertionError: DataFrame.iloc[:, 2] (column name=""c"") are different -DataFrame.index levels are different -[left]: 1, RangeIndex(start=0, stop=4, step=1) -[right]: 3, MultiIndex([(0, 'i0', 'i0'), - (1, 'i1', 'i3'), - (1, 'i1', 'i2'), - (1, 'i1', 'i4')], - names=[None, 'level_0', 'level_1'])",failed -11775,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice[False--9-1-1],"AssertionError: DataFrame are different +DataFrame.iloc[:, 2] (column name=""c"") values are different (100.0 %) +[index]: [0, 1, 2] +[left]: [nan, nan, nan] +[right]: [7, 8, 8]",failed +8266,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice_with_unordered_index[-1-4-4],"AssertionError: DataFrame are different DataFrame shape mismatch [left]: (0, 7) [right]: (1, 7)",failed -11780,tests.integ.modin.groupby.test_groupby_apply,test_as_index_false[normalize_numeric_columns_by_sum-level_0-include_groups_False],"AssertionError: DataFrame.index are different - -DataFrame.index levels are different -[left]: 1, RangeIndex(start=0, stop=4, step=1) -[right]: 3, MultiIndex([(0, 'i0', 'i0'), - (1, 'i1', 'i3'), - (1, 'i1', 'i2'), - (1, 'i1', 'i4')], - names=[None, 'level_0', 'level_1'])",failed -11781,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[string_col_1-include_groups_True-dropna_True-sort_True-group_keys_False-transform_returns_series],"AssertionError: Series.index are different +8278,tests.integ.modin.frame.test_setitem,test_df_setitem_bool_2d_key_df_value_mismatched_index_labels[df_key-key_has_less_rows],"AssertionError: DataFrame.iloc[:, 0] (column name=""a"") are different -Attribute ""names"" are different -[left]: [None] -[right]: ['index']",failed -11792,tests.integ.modin.groupby.test_groupby_apply,test_as_index_false[duplicate_df_rowwise-level_0-include_groups_True],"AssertionError: DataFrame.index are different +DataFrame.iloc[:, 0] (column name=""a"") values are different (33.33333 %) +[index]: [0, 1, 2] +[left]: [1.0, nan, nan] +[right]: [1.0, nan, 3.0] +At positional index 2, first diff: nan != 3.0",failed +8289,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice_with_unordered_index[-1-6-None],KeyError: 7,failed +8290,tests.integ.modin.frame.test_setitem,test_df_setitem_bool_2d_key_df_value_mismatched_index_labels[array_key-key_has_more_cols],ValueError: Array must be same shape as DataFrame,failed +8297,tests.integ.modin.frame.test_setitem,test_df_setitem_bool_2d_key_df_value_mismatched_index_labels[array_key-key_has_less_cols],ValueError: Array must be same shape as DataFrame,failed +8304,tests.integ.modin.frame.test_setitem,test_df_setitem_bool_2d_key_df_value_mismatched_index_labels[array_key-key_has_more_rows],ValueError: Array must be same shape as DataFrame,failed +8305,tests.integ.modin.frame.test_loc,test_df_loc_set_key_slice[False-None-1-1],ValueError: Incompatible indexer with DataFrame,failed +8307,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice_with_unordered_index[-1-6-1],KeyError: 7,failed +8313,tests.integ.modin.frame.test_setitem,test_df_setitem_bool_2d_key_df_value_mismatched_index_labels[array_key-key_has_less_rows],ValueError: Array must be same shape as DataFrame,failed +8328,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice_with_unordered_index[-1-6-4],KeyError: 7,failed +8332,tests.integ.modin.frame.test_setitem,test_df_setitem_bool_2d_key_df_value_matched_labels[df_key-key_has_less_cols],"AssertionError: DataFrame.iloc[:, 2] (column name=""c"") are different -DataFrame.index levels are different -[left]: 1, RangeIndex(start=0, stop=8, step=1) -[right]: 3, MultiIndex([(0, 'i0', 'i0'), - (0, 'i0', 'i0'), - (1, 'i1', 'i3'), - (1, 'i1', 'i2'), - (1, 'i1', 'i4'), - (1, 'i1', 'i3'), - (1, 'i1', 'i2'), - (1, 'i1', 'i4')], - names=[None, 'level_0', 'level_1'])",failed -11793,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[string_col_1-include_groups_True-dropna_True-sort_True-group_keys_False-return_scalar],"AssertionError: Series are different +DataFrame.iloc[:, 2] (column name=""c"") values are different (100.0 %) +[index]: [0, 1, 2] +[left]: [-7, -8, -8] +[right]: [7, 8, 8]",failed +8341,tests.integ.modin.frame.test_loc,test_df_loc_set_key_slice[False-None-4-4],ValueError: Incompatible indexer with DataFrame,failed +8344,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice_with_unordered_index[-1-6-6],KeyError: 7,failed +8345,tests.integ.modin.frame.test_setitem,test_df_setitem_bool_2d_key_df_value_matched_labels[df_key-key_has_less_rows],"AssertionError: DataFrame.iloc[:, 0] (column name=""a"") are different -Series values are different (100.0 %) -[index]: [k0, k1] -[left]: [x -int_col 44 -dtype: int64_x -int_col 14.666667 -dtype: float64_k0, x -int_col 14 -dtype: int64_x -int_col 14.0 -dtype: float64_k1] -[right]: [44_14.666666666666666_k0, 14_14.0_k1] -At positional index 0, first diff: x -int_col 44 -dtype: int64_x -int_col 14.666667 -dtype: float64_k0 != 44_14.666666666666666_k0",failed -11797,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col1-row14],AssertionError,failed -11798,tests.integ.modin.groupby.test_groupby_apply,test_as_index_false[duplicate_df_rowwise-level_0-include_groups_False],"AssertionError: DataFrame.index are different +DataFrame.iloc[:, 0] (column name=""a"") values are different (33.33333 %) +[index]: [0, 1, 2] +[left]: [1, -2, -3] +[right]: [1, -2, 3]",failed +8361,tests.integ.modin.frame.test_setitem,test_df_setitem_bool_2d_key_df_value_matched_labels[array_key-key_has_more_cols],ValueError: Array must be same shape as DataFrame,failed +8369,tests.integ.modin.frame.test_setitem,test_df_setitem_bool_2d_key_df_value_matched_labels[array_key-key_has_less_cols],ValueError: Array must be same shape as DataFrame,failed +8375,tests.integ.modin.frame.test_setitem,test_df_setitem_bool_2d_key_df_value_matched_labels[array_key-key_has_more_rows],ValueError: Array must be same shape as DataFrame,failed +8383,tests.integ.modin.frame.test_setitem,test_df_setitem_bool_2d_key_df_value_matched_labels[array_key-key_has_less_rows],ValueError: Array must be same shape as DataFrame,failed +8387,tests.integ.modin.frame.test_setitem,test_df_setitem_2d_bool_key_with_callable_value,"AssertionError: DataFrame.iloc[:, 0] (column name=""0"") are different -DataFrame.index levels are different -[left]: 1, RangeIndex(start=0, stop=8, step=1) -[right]: 3, MultiIndex([(0, 'i0', 'i0'), - (0, 'i0', 'i0'), - (1, 'i1', 'i3'), - (1, 'i1', 'i2'), - (1, 'i1', 'i4'), - (1, 'i1', 'i3'), - (1, 'i1', 'i2'), - (1, 'i1', 'i4')], - names=[None, 'level_0', 'level_1'])",failed -11803,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col2-mark i],"AssertionError: Series.index are different +DataFrame.iloc[:, 0] (column name=""0"") values are different (33.33333 %) +[index]: [0, 1, 2] +[left]: [1, 256, 7] +[right]: [1, 16, 7]",failed +8400,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice_with_unordered_index[2-1-None],KeyError: -1,failed +8414,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice_with_unordered_index[2-1-1],KeyError: -1,failed +8421,tests.integ.modin.frame.test_setitem,test_df_setitem_2d_int_array_key_should_error,"ValueError: Boolean array expected for the condition, not int64",failed +8427,tests.integ.modin.frame.test_loc,test_df_loc_set_key_slice[False-1-1-None],ValueError: Incompatible indexer with DataFrame,failed +8430,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice_with_unordered_index[2-1-4],KeyError: -1,failed +8431,tests.integ.modin.frame.test_setitem,test_df_setitem_2d_bool_key_short_array_value,ValueError: other must be the same shape as self when an ndarray,failed +8432,tests.integ.modin.frame.test_quantile,test_quantile_unsupported_args_negative[table-lower-0],Failed: DID NOT RAISE ,failed +8433,tests.integ.modin.frame.test_quantile,test_quantile_unsupported_args_negative[table-lower-1],Failed: DID NOT RAISE ,failed +8434,tests.integ.modin.frame.test_quantile,test_quantile_unsupported_args_negative[table-higher-0],Failed: DID NOT RAISE ,failed +8435,tests.integ.modin.frame.test_quantile,test_quantile_unsupported_args_negative[table-higher-1],Failed: DID NOT RAISE ,failed +8436,tests.integ.modin.frame.test_loc,test_df_loc_set_key_slice[False-1-1--1],ValueError: Incompatible indexer with DataFrame,failed +8437,tests.integ.modin.frame.test_setitem,test_df_setitem_2d_bool_key_1d_array_value,ValueError: other must be the same shape as self when an ndarray,failed +8439,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice_with_unordered_index[2-1-6],KeyError: -1,failed +8441,tests.integ.modin.frame.test_quantile,test_quantile_unsupported_args_negative[table-midpoint-0],"ValueError: Invalid interpolation: midpoint. Interpolation must be in {'lower', 'nearest', 'higher'}",failed +8444,tests.integ.modin.frame.test_setitem,test_df_setitem_series_list_like_key_and_range_like_item_negative[item0-key0],TypeError: unhashable type: 'Series',failed +8446,tests.integ.modin.frame.test_setitem,test_df_setitem_series_list_like_key_and_range_like_item_negative[item0-key1],Failed: DID NOT RAISE ,failed +8447,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice_with_unordered_index[2-4-None],KeyError: 2,failed +8449,tests.integ.modin.frame.test_setitem,test_df_setitem_slice_item_negative[1],Failed: DID NOT RAISE ,failed +8450,tests.integ.modin.frame.test_setitem,test_df_setitem_slice_item_negative[12],Failed: DID NOT RAISE ,failed +8451,tests.integ.modin.frame.test_setitem,test_df_setitem_slice_item_negative[key2],Failed: DID NOT RAISE ,failed +8455,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice_with_unordered_index[2-4-1],KeyError: 2,failed +8457,tests.integ.modin.frame.test_quantile,test_quantile_unsupported_args_negative[table-midpoint-1],"ValueError: Invalid interpolation: midpoint. Interpolation must be in {'lower', 'nearest', 'higher'}",failed +8460,tests.integ.modin.frame.test_quantile,test_quantile_datetime_negative,Failed: DID NOT RAISE ,failed +8475,tests.integ.modin.frame.test_setitem,test_df_setitem_slice_item_negative[key3],TypeError: unhashable type: 'Series',failed +8489,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice_with_unordered_index[2-4-4],KeyError: 2,failed +8497,tests.integ.modin.frame.test_setitem,test_df_setitem_2d_array[numpy_array-indexer3],TypeError: unhashable type: 'Series',failed +8505,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice_with_unordered_index[2-4-6],KeyError: 2,failed +8510,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice_with_unordered_index[2-6-None],"AssertionError: DataFrame are different -Series.index levels are different -[left]: 2, MultiIndex([('mark i', 'mark v'), - ('mark i', 'mark vi')], - ) -[right]: 1, Index(['mark v', 'mark vi'], dtype='object')",failed -11804,tests.integ.modin.frame.test_set_index,test_set_index_pass_arrays_duplicate[False-True-frame_of_ints-Index-Index],"TypeError: The parameter ""keys"" may be a column key, one-dimensional array, or a list containing only valid column keys and one-dimensional arrays. Received column of type ",failed -11809,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice[False--9-1-4],"AssertionError: DataFrame are different +DataFrame shape mismatch +[left]: (3, 7) +[right]: (2, 7)",failed +8511,tests.integ.modin.frame.test_setitem,test_df_setitem_2d_array[numpy_array-indexer4],TypeError: unhashable type: 'Series',failed +8521,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice_with_unordered_index[2-6-1],"AssertionError: DataFrame are different DataFrame shape mismatch -[left]: (0, 7) -[right]: (1, 7)",failed -11811,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col2-row1],"AssertionError: Series.index are different +[left]: (1, 7) +[right]: (0, 7)",failed +8532,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice_with_unordered_index[2-6-4],"AssertionError: DataFrame are different -Series.index levels are different -[left]: 2, MultiIndex([('mark i', 'mark v'), - ('mark i', 'mark vi')], - ) -[right]: 1, Index(['mark v', 'mark vi'], dtype='object')",failed -11813,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[string_col_1-include_groups_True-dropna_True-sort_False-group_keys_True-non_transform_returns_dataframe],AssertionError,failed -11820,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice[False--9-1-10],"AssertionError: DataFrame are different +DataFrame shape mismatch +[left]: (1, 7) +[right]: (0, 7)",failed +8540,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice_with_unordered_index[2-6-6],"AssertionError: DataFrame are different DataFrame shape mismatch -[left]: (0, 7) +[left]: (2, 7) [right]: (1, 7)",failed -11831,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice[False--9-4-None],"AssertionError: DataFrame are different +8550,tests.integ.modin.frame.test_setitem,test_df_setitem_2d_array[native_list-indexer3],TypeError: unhashable type: 'Series',failed +8559,tests.integ.modin.frame.test_loc,test_df_loc_set_key_slice[False--1-4-None],ValueError: Incompatible indexer with DataFrame,failed +8577,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice_with_unordered_index[-2-1-None],KeyError: 3,failed +8591,tests.integ.modin.frame.test_iloc,test_df_iloc_get_key_bool[col-index with name-key5],IndexError: positional indexers are out-of-bounds,failed +8595,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice_with_unordered_index[-2-1-1],KeyError: 3,failed +8600,tests.integ.modin.frame.test_setitem,test_df_setitem_2d_array[native_list-indexer4],TypeError: unhashable type: 'Series',failed +8607,tests.integ.modin.frame.test_setitem,test_df_setitem_2d_array_timedelta_negative,[XPASS(strict)] SNOW-1738952,failed +8612,tests.integ.modin.frame.test_iloc,test_df_iloc_get_key_bool_series_with_1k_shape[key0],pandas.errors.IndexingError: Unalignable boolean Series provided as indexer (index of the boolean Series and of the indexed object do not match).,failed +8617,tests.integ.modin.frame.test_loc,test_df_loc_set_key_slice[False--1-4-10],ValueError: Incompatible indexer with DataFrame,failed +8621,tests.integ.modin.frame.test_setitem,test_df_setitem_2d_array_row_length_no_match,"ValueError: could not broadcast input array from shape (5, 4) into shape (4, 4)",failed +8626,tests.integ.modin.frame.test_setitem,test_df_setitem_2d_array_col_length_no_match,"AssertionError: Regex pattern did not match. + Regex: 'shape mismatch: the number of columns 3 from the item does not match with the number of columns 4 to set' + Input: 'could not broadcast input array from shape (4, 3) into shape (4, 4)'",failed +8636,tests.integ.modin.frame.test_iloc,test_df_iloc_get_key_bool_series_with_1k_shape[key1],pandas.errors.IndexingError: Unalignable boolean Series provided as indexer (index of the boolean Series and of the indexed object do not match).,failed +8644,tests.integ.modin.frame.test_setitem,test_df_setitem_2d_array_with_ffill_na_values_negative,"ValueError: could not broadcast input array from shape (2, 4) into shape (4, 4)",failed +8650,tests.integ.modin.groupby.test_groupby_basic_agg,test_groupby_dropna_multi_index[False-group_index1-expected_index_dropna_false1],"AssertionError: DataFrame.index are different + +Attribute ""inferred_type"" are different +[left]: mixed +[right]: string",failed +8652,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice_with_unordered_index[-2-1-4],KeyError: 3,failed +8658,tests.integ.modin.groupby.test_groupby_basic_agg,test_groupby_dropna_multi_index[False-group_index2-expected_index_dropna_false2],"AssertionError: DataFrame.index are different + +Attribute ""inferred_type"" are different +[left]: mixed +[right]: string",failed +8665,tests.integ.modin.groupby.test_groupby_basic_agg,test_groupby_dropna_multi_index[False-group_index3-expected_index_dropna_false3],"AssertionError: DataFrame.index are different + +Attribute ""inferred_type"" are different +[left]: mixed +[right]: string",failed +8672,tests.integ.modin.groupby.test_groupby_basic_agg,test_groupby_dropna_multi_index[False-group_index4-expected_index_dropna_false4],"AssertionError: MultiIndex level [0] are different + +Attribute ""dtype"" are different +[left]: float64 +[right]: object",failed +8680,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice_with_unordered_index[-2-1-6],KeyError: 3,failed +8688,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice_with_unordered_index[-2-4-None],"AssertionError: DataFrame are different DataFrame shape mismatch -[left]: (0, 7) -[right]: (1, 7)",failed -11833,tests.integ.modin.groupby.test_groupby_apply,test_axis_one[include_groups_True],[XPASS(strict)] ,failed -11837,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col2-row4],"KeyError: ['viper', 'mark i', 'viper']",failed -11838,tests.integ.modin.groupby.test_groupby_apply,test_axis_one[include_groups_False],[XPASS(strict)] ,failed -11847,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[string_col_1-include_groups_True-dropna_True-sort_False-group_keys_True-transform_returns_dataframe],TypeError: must pass an index to rename,failed -11848,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice[False--9-4-4],"AssertionError: DataFrame are different +[left]: (3, 7) +[right]: (2, 7)",failed +8697,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice_with_unordered_index[-2-4-1],"AssertionError: DataFrame are different DataFrame shape mismatch -[left]: (0, 7) -[right]: (1, 7)",failed -11855,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice[False--9-4-10],"AssertionError: DataFrame are different +[left]: (1, 7) +[right]: (0, 7)",failed +8700,tests.integ.modin.frame.test_loc,test_df_loc_set_key_slice[False-2-None-4],ValueError: Incompatible indexer with DataFrame,failed +8702,tests.integ.modin.frame.test_apply,test_apply_axis1_with_dynamic_pivot_and_with_3rd_party_libraries_and_decorator[packages0-7],TODO: SNOW-1261830 need to support PandasSeriesType annotation.,xfailed +8706,tests.integ.modin.frame.test_iloc,test_df_iloc_get_key_bool_series_with_1k_shape[key2],pandas.errors.IndexingError: Unalignable boolean Series provided as indexer (index of the boolean Series and of the indexed object do not match).,failed +8710,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice_with_unordered_index[-2-4-4],"AssertionError: DataFrame are different DataFrame shape mismatch -[left]: (0, 7) +[left]: (2, 7) [right]: (1, 7)",failed -11857,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[string_col_1-include_groups_True-dropna_True-sort_False-group_keys_True-non_transform_returns_series],"AssertionError: Series are different +8720,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice_with_unordered_index[-2-4-6],"AssertionError: DataFrame are different -Series length are different -[left]: 3, Index(['sum', 'mean', 'name'], dtype='object', name='custom_metrics') -[right]: 6, MultiIndex([('k0', 'sum'), - ('k0', 'mean'), - ('k0', 'name'), - ('k1', 'sum'), - ('k1', 'mean'), - ('k1', 'name')], - names=['string_col_1', None])",failed -11858,tests.integ.modin.groupby.test_groupby_apply,test_df_with_single_level_labels[with_non_unique_index-group_keys_True-transform_that_changes_columns-as_index_True-by_index-include_groups_True],KeyError: 'index',failed -11866,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col2-row5],KeyError: 'mark vi',failed -11874,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[string_col_1-include_groups_True-dropna_True-sort_False-group_keys_True-transform_returns_series],"AssertionError: MultiIndex level [1] are different +DataFrame shape mismatch +[left]: (1, 7) +[right]: (0, 7)",failed +8750,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice_with_unordered_index[-2-6-None],KeyError: 8,failed +8773,tests.integ.modin.frame.test_setitem,test_df_setitem_2D_key_series_value[array],"AssertionError: Regex pattern did not match. + Regex: 'setitem with a 2D key does not support Series values.' + Input: 'Must specify axis=0 or 1'",failed +8775,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice_with_unordered_index[-2-6-1],KeyError: 8,failed +8782,tests.integ.modin.frame.test_iloc,test_df_iloc_get_key_numeric[row-list-key4],IndexError: index 8 is out of bounds for axis 0 with size 7,failed +8792,tests.integ.modin.frame.test_iloc,test_df_iloc_get_key_numeric[row-list-key5],"ValueError: +Location based indexing can only have [integer, integer slice (START point is +INCLUDED, END point is EXCLUDED), listlike of integers, boolean array] types.",failed +8802,tests.integ.modin.frame.test_iloc,test_df_iloc_get_key_numeric[row-list-key6],"ValueError: +Location based indexing can only have [integer, integer slice (START point is +INCLUDED, END point is EXCLUDED), listlike of integers, boolean array] types.",failed +8813,tests.integ.modin.frame.test_iloc,test_df_iloc_get_key_numeric[row-series-key0],"ValueError: +Location based indexing can only have [integer, integer slice (START point is +INCLUDED, END point is EXCLUDED), listlike of integers, boolean array] types.",failed +8819,tests.integ.modin.frame.test_loc,test_df_loc_set_key_slice[False-2-4-1],ValueError: Incompatible indexer with DataFrame,failed +8833,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice_with_unordered_index[-2-6-4],KeyError: 8,failed +8835,tests.integ.modin.frame.test_setitem,test_df_setitem_2D_key_series_value[dataframe],"AssertionError: Regex pattern did not match. + Regex: 'setitem with a 2D key does not support Series values.' + Input: 'Must specify axis=0 or 1'",failed +8837,tests.integ.modin.binary.test_binary_op,test_binary_arithmetic_ops_between_series_and_scalar_nan[10.001-add],"AssertionError: Series are different -Attribute ""names"" are different -[left]: [None] -[right]: ['index']",failed -11878,tests.integ.modin.groupby.test_groupby_apply,test_df_with_single_level_labels[with_non_unique_index-group_keys_True-transform_that_changes_columns-as_index_True-by_index-include_groups_False],KeyError: 'index',failed -11885,tests.integ.modin.frame.test_astype,test_astype_from_timestamp_ltz[to_dtype15],"AssertionError: Regex pattern did not match. - Regex: 'cannot be converted' - Input: ""float() argument must be a string or a real number, not 'Timestamp'""",failed -11894,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[string_col_1-include_groups_True-dropna_True-sort_False-group_keys_True-return_scalar],"AssertionError: Series are different +Series values are different (60.0 %) +[index]: [0, 1, 2, 3, 4] +[left]: [nan, nan, nan, nan, nan] +[right]: [24.000999999999998, 26.801000000000002, nan, 185.001, nan] +At positional index 0, first diff: nan != 24.000999999999998",failed +8844,tests.integ.modin.binary.test_binary_op,test_binary_arithmetic_ops_between_series_and_scalar_nan[10.001-radd],"AssertionError: Series are different -Series values are different (100.0 %) -[index]: [k0, k1] -[left]: [x -int_col 44 -dtype: int64_x -int_col 14.666667 -dtype: float64_k0, x -int_col 14 -dtype: int64_x -int_col 14.0 -dtype: float64_k1] -[right]: [44_14.666666666666666_k0, 14_14.0_k1] -At positional index 0, first diff: x -int_col 44 -dtype: int64_x -int_col 14.666667 -dtype: float64_k0 != 44_14.666666666666666_k0",failed -11899,tests.integ.modin.groupby.test_groupby_apply,test_df_with_single_level_labels[with_non_unique_index-group_keys_True-transform_that_changes_columns-as_index_True-by_string_col_1-include_groups_True],"AssertionError: MultiIndex level [1] are different +Series values are different (60.0 %) +[index]: [0, 1, 2, 3, 4] +[left]: [nan, nan, nan, nan, nan] +[right]: [24.000999999999998, 26.801000000000002, nan, 185.001, nan] +At positional index 0, first diff: nan != 24.000999999999998",failed +8849,tests.integ.modin.binary.test_binary_op,test_binary_arithmetic_ops_between_series_and_scalar_nan[10.001-sub],"AssertionError: Series are different -Attribute ""names"" are different -[left]: [None] -[right]: ['index']",failed -11905,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col2-row6],KeyError: 'mark vi',failed -11912,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[string_col_1-include_groups_True-dropna_True-sort_False-group_keys_False-non_transform_returns_dataframe],AssertionError,failed -11917,tests.integ.modin.groupby.test_groupby_apply,test_df_with_single_level_labels[with_non_unique_index-group_keys_True-transform_that_changes_columns-as_index_True-by_string_col_1-include_groups_False],"AssertionError: MultiIndex level [1] are different +Series values are different (60.0 %) +[index]: [0, 1, 2, 3, 4] +[left]: [nan, nan, nan, nan, nan] +[right]: [3.9990000000000006, 6.799000000000001, nan, 164.999, nan] +At positional index 0, first diff: nan != 3.9990000000000006",failed +8854,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice_with_unordered_index[-2-6-6],KeyError: 8,failed +8865,tests.integ.modin.frame.test_loc,test_df_loc_set_key_slice[False-2-10-4],ValueError: Incompatible indexer with DataFrame,failed +8877,tests.integ.modin.binary.test_binary_op,test_binary_arithmetic_ops_between_series_and_scalar_nan[10.001-rsub],"AssertionError: Series are different -Attribute ""names"" are different -[left]: [None] -[right]: ['index']",failed -11939,tests.integ.modin.groupby.test_groupby_apply,test_df_with_single_level_labels[with_non_unique_index-group_keys_True-transform_that_changes_columns-as_index_False-by_index-include_groups_True],KeyError: 'index',failed -11956,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col2-row7],KeyError: 'mark vi',failed -11960,tests.integ.modin.groupby.test_groupby_apply,test_df_with_single_level_labels[with_non_unique_index-group_keys_True-transform_that_changes_columns-as_index_False-by_index-include_groups_False],KeyError: 'index',failed -11969,tests.integ.modin.groupby.test_groupby_apply,test_df_with_single_level_labels[with_non_unique_index-group_keys_True-transform_that_changes_columns-as_index_False-by_string_col_1-include_groups_True],"AssertionError: MultiIndex level [1] are different +Series values are different (60.0 %) +[index]: [0, 1, 2, 3, 4] +[left]: [nan, nan, nan, nan, nan] +[right]: [-3.9990000000000006, -6.799000000000001, nan, -164.999, nan] +At positional index 0, first diff: nan != -3.9990000000000006",failed +8883,tests.integ.modin.binary.test_binary_op,test_binary_arithmetic_ops_between_series_and_scalar_nan[10.001-mul],"AssertionError: Series are different -Attribute ""names"" are different -[left]: [None] -[right]: ['index']",failed -11972,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[string_col_1-include_groups_True-dropna_True-sort_False-group_keys_False-transform_returns_dataframe],TypeError: must pass an index to rename,failed -11984,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col2-row8],KeyError: 'mark vi',failed -11987,tests.integ.modin.frame.test_astype,test_astype_from_timestamp_ltz[to_dtype16],"AssertionError: Regex pattern did not match. - Regex: 'cannot be converted' - Input: ""float() argument must be a string or a real number, not 'Timestamp'""",failed -11990,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[string_col_1-include_groups_True-dropna_True-sort_False-group_keys_False-non_transform_returns_series],"AssertionError: Series are different +Series values are different (60.0 %) +[index]: [0, 1, 2, 3, 4] +[left]: [nan, nan, nan, nan, nan] +[right]: [140.01399999999998, 168.0168, nan, 1750.175, nan] +At positional index 0, first diff: nan != 140.01399999999998",failed +8886,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice_with_unordered_index[9-1-None],KeyError: -8,failed +8889,tests.integ.modin.binary.test_binary_op,test_binary_arithmetic_ops_between_series_and_scalar_nan[10.001-rmul],"AssertionError: Series are different -Series length are different -[left]: 3, Index(['sum', 'mean', 'name'], dtype='object', name='custom_metrics') -[right]: 6, Index(['sum', 'mean', 'name', 'sum', 'mean', 'name'], dtype='object')",failed -11992,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col2-row9],"AssertionError: Series are different +Series values are different (60.0 %) +[index]: [0, 1, 2, 3, 4] +[left]: [nan, nan, nan, nan, nan] +[right]: [140.01399999999998, 168.0168, nan, 1750.175, nan] +At positional index 0, first diff: nan != 140.01399999999998",failed +8893,tests.integ.modin.binary.test_binary_op,test_binary_arithmetic_ops_between_series_and_scalar_nan[10.001-truediv],"AssertionError: Series are different -Series length are different -[left]: 0, MultiIndex([], ) -[right]: 6, MultiIndex([( 'mark i', 'mark v'), - ( 'mark i', 'mark vi'), - ('sidewinder', 'mark i'), - ('sidewinder', 'mark ii'), - ( 'viper', 'mark ii'), - ( 'viper', 'mark iii')], - )",failed -12004,tests.integ.modin.groupby.test_groupby_apply,test_df_with_single_level_labels[with_non_unique_index-group_keys_True-transform_that_changes_columns-as_index_False-by_string_col_1-include_groups_False],"AssertionError: MultiIndex level [1] are different +Series values are different (60.0 %) +[index]: [0, 1, 2, 3, 4] +[left]: [nan, nan, nan, nan, nan] +[right]: [1.3998600139986002, 1.6798320167983203, nan, 17.498250174982502, nan] +At positional index 0, first diff: nan != 1.3998600139986002",failed +8896,tests.integ.modin.frame.test_iloc,test_df_iloc_get_key_numeric[row-series-key4],IndexError: index 8 is out of bounds for axis 0 with size 7,failed +8897,tests.integ.modin.frame.test_loc,test_df_loc_set_key_slice[False--2-None-1],ValueError: Incompatible indexer with DataFrame,failed +8899,tests.integ.modin.binary.test_binary_op,test_binary_arithmetic_ops_between_series_and_scalar_nan[10.001-rtruediv],"AssertionError: Series are different -Attribute ""names"" are different -[left]: [None] -[right]: ['index']",failed -12006,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[string_col_1-include_groups_True-dropna_True-sort_False-group_keys_False-transform_returns_series],"AssertionError: Series.index are different +Series values are different (60.0 %) +[index]: [0, 1, 2, 3, 4] +[left]: [nan, nan, nan, nan, nan] +[right]: [0.7143571428571428, 0.595297619047619, nan, 0.057148571428571424, nan] +At positional index 0, first diff: nan != 0.7143571428571428",failed +8905,tests.integ.modin.binary.test_binary_op,test_binary_arithmetic_ops_between_series_and_scalar_nan[10.001-floordiv],"AssertionError: Series are different -Attribute ""names"" are different -[left]: [None] -[right]: ['index']",failed -12007,tests.integ.modin.test_from_pandas_to_pandas,test_snowpark_pandas_statement_params,AssertionError: Expected 'to_pandas' to have been called once. Called 0 times.,failed -12013,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col2-row12],AssertionError: Got type: ,failed -12018,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col2-row13],AssertionError: Got type: ,failed -12019,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[string_col_1-include_groups_True-dropna_True-sort_False-group_keys_False-return_scalar],"AssertionError: Series are different +Series values are different (60.0 %) +[index]: [0, 1, 2, 3, 4] +[left]: [nan, nan, nan, nan, nan] +[right]: [1.0, 1.0, nan, 17.0, nan] +At positional index 0, first diff: nan != 1.0",failed +8907,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice_with_unordered_index[9-1-1],KeyError: -8,failed +8909,tests.integ.modin.frame.test_iloc,test_df_iloc_get_key_numeric[row-series-key5],"ValueError: +Location based indexing can only have [integer, integer slice (START point is +INCLUDED, END point is EXCLUDED), listlike of integers, boolean array] types.",failed +8912,tests.integ.modin.binary.test_binary_op,test_binary_arithmetic_ops_between_series_and_scalar_nan[10.001-rfloordiv],"AssertionError: Series are different -Series values are different (100.0 %) -[index]: [k0, k1] -[left]: [x -int_col 44 -dtype: int64_x -int_col 14.666667 -dtype: float64_k0, x -int_col 14 -dtype: int64_x -int_col 14.0 -dtype: float64_k1] -[right]: [44_14.666666666666666_k0, 14_14.0_k1] -At positional index 0, first diff: x -int_col 44 -dtype: int64_x -int_col 14.666667 -dtype: float64_k0 != 44_14.666666666666666_k0",failed -12022,tests.integ.modin.groupby.test_groupby_apply,test_df_with_single_level_labels[with_non_unique_index-group_keys_True-duplicate_df_rowwise-as_index_True-by_index-include_groups_True],KeyError: 'index',failed -12032,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col3-mark i],"AssertionError: DataFrame.columns are different +Series values are different (60.0 %) +[index]: [0, 1, 2, 3, 4] +[left]: [nan, nan, nan, nan, nan] +[right]: [0.0, 0.0, nan, 0.0, nan] +At positional index 0, first diff: nan != 0.0",failed +8918,tests.integ.modin.binary.test_binary_op,test_binary_arithmetic_ops_between_series_and_scalar_nan[10.001-mod],"AssertionError: Series are different -DataFrame.columns classes are different -[left]: Index(['buzz1'], dtype='object', name='buzz') -[right]: MultiIndex([('fizz1', 'buzz1')], - names=['fizz', 'buzz'])",failed -12035,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[string_col_1-include_groups_True-dropna_False-sort_True-group_keys_True-non_transform_returns_dataframe],AssertionError,failed -12039,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col3-row1],"AssertionError: DataFrame.columns are different +Series values are different (60.0 %) +[index]: [0, 1, 2, 3, 4] +[left]: [nan, nan, nan, nan, nan] +[right]: [3.9990000000000006, 6.799000000000001, nan, 4.983000000000009, nan] +At positional index 0, first diff: nan != 3.9990000000000006",failed +8920,tests.integ.modin.frame.test_iloc,test_df_iloc_get_key_numeric[row-series-key6],"ValueError: +Location based indexing can only have [integer, integer slice (START point is +INCLUDED, END point is EXCLUDED), listlike of integers, boolean array] types.",failed +8923,tests.integ.modin.binary.test_binary_op,test_binary_arithmetic_ops_between_series_and_scalar_nan[10.001-rmod],"AssertionError: Series are different -DataFrame.columns classes are different -[left]: Index(['buzz1'], dtype='object', name='buzz') -[right]: MultiIndex([('fizz1', 'buzz1')], - names=['fizz', 'buzz'])",failed -12044,tests.integ.modin.groupby.test_groupby_apply,test_df_with_single_level_labels[with_non_unique_index-group_keys_True-duplicate_df_rowwise-as_index_True-by_index-include_groups_False],KeyError: 'index',failed -12051,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col3-row3],"AssertionError: DataFrame.index are different +Series values are different (60.0 %) +[index]: [0, 1, 2, 3, 4] +[left]: [nan, nan, nan, nan, nan] +[right]: [10.001, 10.001, nan, 10.001, nan] +At positional index 0, first diff: nan != 10.001",failed +8928,tests.integ.modin.binary.test_binary_op,test_binary_arithmetic_ops_between_series_and_scalar_nan[10.001-pow],"AssertionError: Series are different -DataFrame.index levels are different -[left]: 1, Index(['mark v', 'mark vi'], dtype='object') -[right]: 2, MultiIndex([('mark i', 'mark v'), - ('mark i', 'mark vi')], - )",failed -12053,tests.integ.modin.groupby.test_groupby_apply,test_df_with_single_level_labels[with_non_unique_index-group_keys_True-duplicate_df_rowwise-as_index_True-by_string_col_1-include_groups_True],"AssertionError: MultiIndex level [1] are different +Series values are different (60.0 %) +[index]: [0, 1, 2, 3, 4] +[left]: [nan, nan, nan, nan, nan] +[right]: [290019022754.90625, 1796048774939.5837, nan, 2.7078432771126627e+22, nan] +At positional index 0, first diff: nan != 290019022754.90625",failed +8929,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice_with_unordered_index[9-1-4],KeyError: -8,failed +8933,tests.integ.modin.binary.test_binary_op,test_binary_arithmetic_ops_between_series_and_scalar_nan[10.001-rpow],"AssertionError: Series are different -Attribute ""names"" are different -[left]: [None] -[right]: ['index']",failed -12056,tests.integ.modin.test_internal_frame,test_strip_duplicates[input0-expected0],AttributeError: 'DataFrame' object has no attribute 'strip_duplicates'. Did you mean: 'drop_duplicates'?,failed -12063,tests.integ.modin.test_internal_frame,test_strip_duplicates[input1-expected1],AttributeError: 'DataFrame' object has no attribute 'strip_duplicates'. Did you mean: 'drop_duplicates'?,failed -12064,tests.integ.modin.groupby.test_groupby_apply,test_df_with_single_level_labels[with_non_unique_index-group_keys_True-duplicate_df_rowwise-as_index_True-by_string_col_1-include_groups_False],"AssertionError: MultiIndex level [1] are different +Series values are different (60.0 %) +[index]: [0, 1, 2, 3, 4] +[left]: [nan, nan, nan, nan, nan] +[right]: [100140091036409.94, 6.320181906387712e+16, nan, 1.0176531317632308e+175, nan] +At positional index 0, first diff: nan != 100140091036409.94",failed +8969,tests.integ.modin.frame.test_loc,test_df_loc_set_key_slice[False--2--1-1],ValueError: Incompatible indexer with DataFrame,failed +8971,tests.integ.modin.binary.test_binary_op,test_binary_arithmetic_ops_between_df_and_scalar_nan_behavior_deviates[10.001-add],"AssertionError: DataFrame.iloc[:, 0] (column name=""0"") are different -Attribute ""names"" are different -[left]: [None] -[right]: ['index']",failed -12067,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[string_col_1-include_groups_True-dropna_False-sort_True-group_keys_True-transform_returns_dataframe],TypeError: must pass an index to rename,failed -12077,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[string_col_1-include_groups_True-dropna_False-sort_True-group_keys_True-non_transform_returns_series],"AssertionError: Series are different +DataFrame.iloc[:, 0] (column name=""0"") values are different (33.33333 %) +[index]: [0, 1, 2] +[left]: [nan, nan, nan] +[right]: [24.000999999999998, nan, nan] +At positional index 0, first diff: nan != 24.000999999999998",failed +8976,tests.integ.modin.binary.test_binary_op,test_binary_arithmetic_ops_between_df_and_scalar_nan_behavior_deviates[10.001-radd],"AssertionError: DataFrame.iloc[:, 0] (column name=""0"") are different -Series length are different -[left]: 3, Index(['sum', 'mean', 'name'], dtype='object', name='custom_metrics') -[right]: 9, MultiIndex([('k0', 'sum'), - ('k0', 'mean'), - ('k0', 'name'), - ('k1', 'sum'), - ('k1', 'mean'), - ('k1', 'name'), - ( nan, 'sum'), - ( nan, 'mean'), - ( nan, 'name')], - names=['string_col_1', None])",failed -12079,tests.integ.modin.groupby.test_groupby_apply,test_df_with_single_level_labels[with_non_unique_index-group_keys_True-duplicate_df_rowwise-as_index_False-by_index-include_groups_True],KeyError: 'index',failed -12084,tests.integ.modin.frame.test_astype,test_astype_from_timestamp_ltz[to_dtype17],"TypeError: int() argument must be a string, a bytes-like object or a real number, not 'Timestamp'",failed -12088,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[string_col_1-include_groups_True-dropna_False-sort_True-group_keys_True-transform_returns_series],"AssertionError: MultiIndex level [1] are different +DataFrame.iloc[:, 0] (column name=""0"") values are different (33.33333 %) +[index]: [0, 1, 2] +[left]: [nan, nan, nan] +[right]: [24.000999999999998, nan, nan] +At positional index 0, first diff: nan != 24.000999999999998",failed +8981,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice_with_unordered_index[9-1-6],KeyError: -8,failed +8985,tests.integ.modin.binary.test_binary_op,test_binary_arithmetic_ops_between_df_and_scalar_nan_behavior_deviates[10.001-sub],"AssertionError: DataFrame.iloc[:, 0] (column name=""0"") are different -Attribute ""names"" are different -[left]: [None] -[right]: ['index']",failed -12089,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col3-row4],"KeyError: ['viper', 'mark i', 'viper']",failed -12092,tests.integ.modin.groupby.test_groupby_apply,test_df_with_single_level_labels[with_non_unique_index-group_keys_True-duplicate_df_rowwise-as_index_False-by_index-include_groups_False],KeyError: 'index',failed -12098,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[string_col_1-include_groups_True-dropna_False-sort_True-group_keys_True-return_scalar],"AssertionError: Series are different +DataFrame.iloc[:, 0] (column name=""0"") values are different (33.33333 %) +[index]: [0, 1, 2] +[left]: [nan, nan, nan] +[right]: [3.9990000000000006, nan, nan] +At positional index 0, first diff: nan != 3.9990000000000006",failed +8991,tests.integ.modin.binary.test_binary_op,test_binary_arithmetic_ops_between_df_and_scalar_nan_behavior_deviates[10.001-rsub],"AssertionError: DataFrame.iloc[:, 0] (column name=""0"") are different -Series values are different (100.0 %) -[index]: [k0, k1, nan] -[left]: [x -int_col 44 -dtype: int64_x -int_col 14.666667 -dtype: float64_k0, x -int_col 14 -dtype: int64_x -int_col 14.0 -dtype: float64_k1, x -int_col 17 -dtype: int64_x -int_col 17.0 -dtype: float64_None] -[right]: [44_14.666666666666666_k0, 14_14.0_k1, 17_17.0_None] -At positional index 0, first diff: x -int_col 44 -dtype: int64_x -int_col 14.666667 -dtype: float64_k0 != 44_14.666666666666666_k0",failed -12103,tests.integ.modin.groupby.test_groupby_apply,test_df_with_single_level_labels[with_non_unique_index-group_keys_True-duplicate_df_rowwise-as_index_False-by_string_col_1-include_groups_True],"AssertionError: MultiIndex level [1] are different +DataFrame.iloc[:, 0] (column name=""0"") values are different (33.33333 %) +[index]: [0, 1, 2] +[left]: [nan, nan, nan] +[right]: [-3.9990000000000006, nan, nan] +At positional index 0, first diff: nan != -3.9990000000000006",failed +9000,tests.integ.modin.binary.test_binary_op,test_binary_arithmetic_ops_between_df_and_scalar_nan_behavior_deviates[10.001-mul],"AssertionError: DataFrame.iloc[:, 0] (column name=""0"") are different -Attribute ""names"" are different -[left]: [None] -[right]: ['index']",failed -12108,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[string_col_1-include_groups_True-dropna_False-sort_True-group_keys_False-non_transform_returns_dataframe],AssertionError,failed -12111,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col3-row5],KeyError: 'mark vi',failed -12115,tests.integ.modin.groupby.test_groupby_apply,test_df_with_single_level_labels[with_non_unique_index-group_keys_True-duplicate_df_rowwise-as_index_False-by_string_col_1-include_groups_False],"AssertionError: MultiIndex level [1] are different +DataFrame.iloc[:, 0] (column name=""0"") values are different (33.33333 %) +[index]: [0, 1, 2] +[left]: [nan, nan, nan] +[right]: [140.01399999999998, nan, nan] +At positional index 0, first diff: nan != 140.01399999999998",failed +9005,tests.integ.modin.binary.test_binary_op,test_binary_arithmetic_ops_between_df_and_scalar_nan_behavior_deviates[10.001-rmul],"AssertionError: DataFrame.iloc[:, 0] (column name=""0"") are different -Attribute ""names"" are different -[left]: [None] -[right]: ['index']",failed -12126,tests.integ.modin.groupby.test_groupby_apply,test_df_with_single_level_labels[with_non_unique_index-group_keys_False-transform_that_changes_columns-as_index_True-by_index-include_groups_True],KeyError: 'index',failed -12131,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col3-row6],KeyError: 'mark vi',failed -12137,tests.integ.modin.groupby.test_groupby_apply,test_df_with_single_level_labels[with_non_unique_index-group_keys_False-transform_that_changes_columns-as_index_True-by_index-include_groups_False],KeyError: 'index',failed -12143,tests.integ.modin.frame.test_loc,test_df_setitem_boolean_key[index6-True],"AssertionError: DataFrame.iloc[:, 0] (column name=""a"") are different +DataFrame.iloc[:, 0] (column name=""0"") values are different (33.33333 %) +[index]: [0, 1, 2] +[left]: [nan, nan, nan] +[right]: [140.01399999999998, nan, nan] +At positional index 0, first diff: nan != 140.01399999999998",failed +9006,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice_with_unordered_index[9-4-None],KeyError: -5,failed +9010,tests.integ.modin.binary.test_binary_op,test_binary_arithmetic_ops_between_df_and_scalar_nan_behavior_deviates[10.001-truediv],"AssertionError: DataFrame.iloc[:, 0] (column name=""0"") are different -DataFrame.iloc[:, 0] (column name=""a"") values are different (66.66667 %) -[index]: [2, x, True] -[left]: [99, 1, 0] -[right]: [0, 1, 99]",failed -12146,tests.integ.modin.groupby.test_groupby_apply,test_df_with_single_level_labels[with_non_unique_index-group_keys_False-transform_that_changes_columns-as_index_True-by_string_col_1-include_groups_True],"AssertionError: DataFrame.index are different +DataFrame.iloc[:, 0] (column name=""0"") values are different (33.33333 %) +[index]: [0, 1, 2] +[left]: [nan, nan, nan] +[right]: [1.3998600139986002, nan, nan] +At positional index 0, first diff: nan != 1.3998600139986002",failed +9015,tests.integ.modin.binary.test_binary_op,test_binary_arithmetic_ops_between_df_and_scalar_nan_behavior_deviates[10.001-rtruediv],"AssertionError: DataFrame.iloc[:, 0] (column name=""0"") are different -DataFrame.index values are different (50.0 %) -[left]: Index(['i0', 'i1', 'i1', 'i2'], dtype='object') -[right]: Index(['i0', 'i1', 'i2', 'i1'], dtype='object', name='index') -At positional index 2, first diff: i1 != i2",failed -12149,tests.integ.modin.frame.test_astype,test_astype_from_timestamp_ltz[to_dtype18],"TypeError: int() argument must be a string, a bytes-like object or a real number, not 'Timestamp'",failed -12150,tests.integ.modin.frame.test_loc,test_df_setitem_boolean_key[index6-False],"AssertionError: DataFrame.iloc[:, 0] (column name=""a"") are different +DataFrame.iloc[:, 0] (column name=""0"") values are different (33.33333 %) +[index]: [0, 1, 2] +[left]: [nan, nan, nan] +[right]: [0.7143571428571428, nan, nan] +At positional index 0, first diff: nan != 0.7143571428571428",failed +9019,tests.integ.modin.binary.test_binary_op,test_binary_arithmetic_ops_between_df_and_scalar_nan_behavior_deviates[10.001-floordiv],"AssertionError: DataFrame.iloc[:, 0] (column name=""0"") are different -DataFrame.iloc[:, 0] (column name=""a"") values are different (33.33333 %) -[index]: [2, x, False] -[left]: [0, 1, 0] -[right]: [0, 1, 99]",failed -12153,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col3-row7],KeyError: 'mark vi',failed -12157,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[string_col_1-include_groups_True-dropna_False-sort_True-group_keys_False-transform_returns_dataframe],TypeError: must pass an index to rename,failed -12163,tests.integ.modin.groupby.test_groupby_apply,test_df_with_single_level_labels[with_non_unique_index-group_keys_False-transform_that_changes_columns-as_index_True-by_string_col_1-include_groups_False],"AssertionError: DataFrame.index are different +DataFrame.iloc[:, 0] (column name=""0"") values are different (33.33333 %) +[index]: [0, 1, 2] +[left]: [nan, nan, nan] +[right]: [1.0, nan, nan] +At positional index 0, first diff: nan != 1.0",failed +9022,tests.integ.modin.frame.test_loc,test_df_loc_set_key_slice[False--2-1-4],ValueError: Incompatible indexer with DataFrame,failed +9024,tests.integ.modin.binary.test_binary_op,test_binary_arithmetic_ops_between_df_and_scalar_nan_behavior_deviates[10.001-rfloordiv],"AssertionError: DataFrame.iloc[:, 0] (column name=""0"") are different -DataFrame.index values are different (50.0 %) -[left]: Index(['i0', 'i1', 'i1', 'i2'], dtype='object') -[right]: Index(['i0', 'i1', 'i2', 'i1'], dtype='object', name='index') -At positional index 2, first diff: i1 != i2",failed -12165,tests.integ.modin.frame.test_loc,test_df_partial_string_indexing[0],AssertionError,failed -12166,tests.integ.modin.frame.test_set_index,test_set_index_pass_arrays_duplicate[False-True-frame_of_ints_and_timedelta-Index-Index],"TypeError: The parameter ""keys"" may be a column key, one-dimensional array, or a list containing only valid column keys and one-dimensional arrays. Received column of type ",failed -12167,tests.integ.modin.groupby.test_groupby_bfill_ffill,test_groupby_bfill_ffill_multiindex_negative[by_list0-bfill],AssertionError: Snowpark pandas Exception 'I' doesn't match pandas Exception 'A',failed -12169,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[string_col_1-include_groups_True-dropna_False-sort_True-group_keys_False-non_transform_returns_series],"AssertionError: Series are different +DataFrame.iloc[:, 0] (column name=""0"") values are different (33.33333 %) +[index]: [0, 1, 2] +[left]: [nan, nan, nan] +[right]: [0.0, nan, nan] +At positional index 0, first diff: nan != 0.0",failed +9027,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice_with_unordered_index[9-4-1],KeyError: -5,failed +9031,tests.integ.modin.binary.test_binary_op,test_binary_arithmetic_ops_between_df_and_scalar_nan_behavior_deviates[10.001-mod],"AssertionError: DataFrame.iloc[:, 0] (column name=""0"") are different -Series length are different -[left]: 3, Index(['sum', 'mean', 'name'], dtype='object', name='custom_metrics') -[right]: 9, Index(['sum', 'mean', 'name', 'sum', 'mean', 'name', 'sum', 'mean', 'name'], dtype='object')",failed -12174,tests.integ.modin.groupby.test_groupby_bfill_ffill,test_groupby_bfill_ffill_multiindex_negative[by_list0-ffill],AssertionError: Snowpark pandas Exception 'I' doesn't match pandas Exception 'A',failed -12176,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice[True-1-1-None],"AssertionError: DataFrame are different +DataFrame.iloc[:, 0] (column name=""0"") values are different (33.33333 %) +[index]: [0, 1, 2] +[left]: [nan, nan, nan] +[right]: [3.9990000000000006, nan, nan] +At positional index 0, first diff: nan != 3.9990000000000006",failed +9045,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice_with_unordered_index[9-4-4],KeyError: -5,failed +9056,tests.integ.modin.binary.test_binary_op,test_binary_arithmetic_ops_between_df_and_scalar_nan_behavior_deviates[10.001-rmod],"AssertionError: DataFrame.iloc[:, 0] (column name=""0"") are different -DataFrame shape mismatch -[left]: (7, 7) -[right]: (6, 7)",failed -12181,tests.integ.modin.groupby.test_groupby_apply,test_df_with_single_level_labels[with_non_unique_index-group_keys_False-transform_that_changes_columns-as_index_False-by_index-include_groups_True],KeyError: 'index',failed -12182,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[string_col_1-include_groups_True-dropna_False-sort_True-group_keys_False-transform_returns_series],"AssertionError: Series.index are different +DataFrame.iloc[:, 0] (column name=""0"") values are different (33.33333 %) +[index]: [0, 1, 2] +[left]: [nan, nan, nan] +[right]: [10.001, nan, nan] +At positional index 0, first diff: nan != 10.001",failed +9062,tests.integ.modin.binary.test_binary_op,test_binary_arithmetic_ops_between_df_and_scalar_nan_behavior_deviates[10.001-pow],"AssertionError: DataFrame.iloc[:, 0] (column name=""0"") are different -Attribute ""names"" are different -[left]: [None] -[right]: ['index']",failed -12191,tests.integ.modin.frame.test_loc,test_df_loc_set_none,"KeyError: array([None], dtype=object)",failed -12194,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[string_col_1-include_groups_True-dropna_False-sort_True-group_keys_False-return_scalar],"AssertionError: Series are different +DataFrame.iloc[:, 0] (column name=""0"") values are different (33.33333 %) +[index]: [0, 1, 2] +[left]: [nan, nan, nan] +[right]: [290019022754.90625, nan, nan] +At positional index 0, first diff: nan != 290019022754.90625",failed +9063,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice_with_unordered_index[9-4-6],KeyError: -5,failed +9067,tests.integ.modin.binary.test_binary_op,test_binary_arithmetic_ops_between_df_and_scalar_nan_behavior_deviates[10.001-rpow],"AssertionError: DataFrame.iloc[:, 0] (column name=""0"") are different -Series values are different (100.0 %) -[index]: [k0, k1, nan] -[left]: [x -int_col 44 -dtype: int64_x -int_col 14.666667 -dtype: float64_k0, x -int_col 14 -dtype: int64_x -int_col 14.0 -dtype: float64_k1, x -int_col 17 -dtype: int64_x -int_col 17.0 -dtype: float64_None] -[right]: [44_14.666666666666666_k0, 14_14.0_k1, 17_17.0_None] -At positional index 0, first diff: x -int_col 44 -dtype: int64_x -int_col 14.666667 -dtype: float64_k0 != 44_14.666666666666666_k0",failed -12196,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice[True-1-1-1],"AssertionError: DataFrame are different +DataFrame.iloc[:, 0] (column name=""0"") values are different (33.33333 %) +[index]: [0, 1, 2] +[left]: [nan, nan, nan] +[right]: [100140091036409.94, nan, nan] +At positional index 0, first diff: nan != 100140091036409.94",failed +9088,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice_with_unordered_index[9-6-None],KeyError: -3,failed +9104,tests.integ.modin.frame.test_loc,test_df_loc_set_key_slice[False-9-None-None],ValueError: Incompatible indexer with DataFrame,failed +9128,tests.integ.modin.frame.test_loc,test_df_loc_set_key_slice[False-9-None--1],ValueError: Incompatible indexer with DataFrame,failed +9154,tests.integ.modin.frame.test_loc,test_df_loc_set_key_slice[False-9-None-1],ValueError: Incompatible indexer with DataFrame,failed +9163,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice_with_unordered_index[9-6-1],KeyError: -3,failed +9179,tests.integ.modin.frame.test_loc,test_df_loc_set_key_slice[False-9-None-4],ValueError: Incompatible indexer with DataFrame,failed +9193,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice_with_unordered_index[9-6-4],KeyError: -3,failed +9216,tests.integ.modin.groupby.test_groupby_basic_agg,test_engine_kwargs_warning,"AssertionError: assert 'The argument `engine` of `groupby_max` has been ignored by Snowpark pandas API' in '' + + where '' = <_pytest.logging.LogCaptureFixture object at 0x33585e550>.text",failed +9221,tests.integ.modin.frame.test_rank,test_rank_unsupported_args_negative[keep-True-min],Failed: DID NOT RAISE ,failed +9223,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice_with_unordered_index[9-6-6],KeyError: -3,failed +9226,tests.integ.modin.frame.test_rank,test_rank_unsupported_args_negative[keep-True-dense],Failed: DID NOT RAISE ,failed +9231,tests.integ.modin.frame.test_rank,test_rank_unsupported_args_negative[keep-True-first],Failed: DID NOT RAISE ,failed +9236,tests.integ.modin.frame.test_rank,test_rank_unsupported_args_negative[keep-True-max],Failed: DID NOT RAISE ,failed +9241,tests.integ.modin.frame.test_rank,test_rank_unsupported_args_negative[keep-True-average],Failed: DID NOT RAISE ,failed +9246,tests.integ.modin.frame.test_rank,test_rank_unsupported_args_negative[keep-False-min],Failed: DID NOT RAISE ,failed +9247,tests.integ.modin.frame.test_iloc,test_df_iloc_get_key_numeric[row-index-key1],"ValueError: +Location based indexing can only have [integer, integer slice (START point is +INCLUDED, END point is EXCLUDED), listlike of integers, boolean array] types.",failed +9250,tests.integ.modin.frame.test_rank,test_rank_unsupported_args_negative[keep-False-dense],Failed: DID NOT RAISE ,failed +9254,tests.integ.modin.frame.test_rank,test_rank_unsupported_args_negative[keep-False-first],Failed: DID NOT RAISE ,failed +9258,tests.integ.modin.frame.test_rank,test_rank_unsupported_args_negative[keep-False-max],Failed: DID NOT RAISE ,failed +9261,tests.integ.modin.frame.test_rank,test_rank_unsupported_args_negative[keep-False-average],Failed: DID NOT RAISE ,failed +9266,tests.integ.modin.frame.test_rank,test_rank_unsupported_args_negative[top-True-min],Failed: DID NOT RAISE ,failed +9267,tests.integ.modin.groupby.test_groupby_basic_agg,test_groupby_with_observed_warns,"AssertionError: assert 'CategoricalDType is not yet supported with Snowpark pandas API, the observed parameter is ignored.' in '' + + where '' = <_pytest.logging.LogCaptureFixture object at 0x333ea3f40>.text",failed +9270,tests.integ.modin.frame.test_rank,test_rank_unsupported_args_negative[top-True-dense],Failed: DID NOT RAISE ,failed +9275,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice_with_unordered_index[-9-1-None],KeyError: 10,failed +9276,tests.integ.modin.frame.test_rank,test_rank_unsupported_args_negative[top-True-first],Failed: DID NOT RAISE ,failed +9280,tests.integ.modin.frame.test_rank,test_rank_unsupported_args_negative[top-True-max],Failed: DID NOT RAISE ,failed +9284,tests.integ.modin.frame.test_rank,test_rank_unsupported_args_negative[top-True-average],Failed: DID NOT RAISE ,failed +9288,tests.integ.modin.frame.test_rank,test_rank_unsupported_args_negative[top-False-min],Failed: DID NOT RAISE ,failed +9294,tests.integ.modin.frame.test_rank,test_rank_unsupported_args_negative[top-False-dense],Failed: DID NOT RAISE ,failed +9298,tests.integ.modin.frame.test_rank,test_rank_unsupported_args_negative[top-False-first],Failed: DID NOT RAISE ,failed +9302,tests.integ.modin.frame.test_rank,test_rank_unsupported_args_negative[top-False-max],Failed: DID NOT RAISE ,failed +9307,tests.integ.modin.frame.test_rank,test_rank_unsupported_args_negative[top-False-average],Failed: DID NOT RAISE ,failed +9308,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice_with_unordered_index[-9-1-1],KeyError: 10,failed +9312,tests.integ.modin.frame.test_rank,test_rank_unsupported_args_negative[bottom-True-min],Failed: DID NOT RAISE ,failed +9315,tests.integ.modin.frame.test_rank,test_rank_unsupported_args_negative[bottom-True-dense],Failed: DID NOT RAISE ,failed +9319,tests.integ.modin.frame.test_rank,test_rank_unsupported_args_negative[bottom-True-first],Failed: DID NOT RAISE ,failed +9323,tests.integ.modin.frame.test_rank,test_rank_unsupported_args_negative[bottom-True-max],Failed: DID NOT RAISE ,failed +9327,tests.integ.modin.frame.test_rank,test_rank_unsupported_args_negative[bottom-True-average],Failed: DID NOT RAISE ,failed +9331,tests.integ.modin.frame.test_rank,test_rank_unsupported_args_negative[bottom-False-min],Failed: DID NOT RAISE ,failed +9336,tests.integ.modin.frame.test_iloc,test_df_iloc_get_key_numeric[row-index-key2],"ValueError: +Location based indexing can only have [integer, integer slice (START point is +INCLUDED, END point is EXCLUDED), listlike of integers, boolean array] types.",failed +9337,tests.integ.modin.frame.test_rank,test_rank_unsupported_args_negative[bottom-False-dense],Failed: DID NOT RAISE ,failed +9340,tests.integ.modin.frame.test_rank,test_rank_unsupported_args_negative[bottom-False-first],Failed: DID NOT RAISE ,failed +9344,tests.integ.modin.frame.test_loc,test_df_loc_set_key_slice[False-9-10-None],ValueError: Incompatible indexer with DataFrame,failed +9345,tests.integ.modin.frame.test_rank,test_rank_unsupported_args_negative[bottom-False-max],Failed: DID NOT RAISE ,failed +9351,tests.integ.modin.frame.test_rank,test_rank_unsupported_args_negative[bottom-False-average],Failed: DID NOT RAISE ,failed +9385,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice_with_unordered_index[-9-1-4],KeyError: 10,failed +9405,tests.integ.modin.frame.test_iloc,test_df_iloc_get_key_numeric[row-index-key3],"ValueError: +Location based indexing can only have [integer, integer slice (START point is +INCLUDED, END point is EXCLUDED), listlike of integers, boolean array] types.",failed +9410,tests.integ.modin.frame.test_loc,test_df_loc_set_key_slice[False-9-10--1],ValueError: Incompatible indexer with DataFrame,failed +9416,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice_with_unordered_index[-9-1-6],KeyError: 10,failed +9435,tests.integ.modin.frame.test_loc,test_df_loc_set_key_slice[False-9-10-1],ValueError: Incompatible indexer with DataFrame,failed +9447,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice_with_unordered_index[-9-4-None],KeyError: 13,failed +9474,tests.integ.modin.frame.test_loc,test_df_loc_set_key_slice[False--9-None-None],ValueError: Incompatible indexer with DataFrame,failed +9478,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice_with_unordered_index[-9-4-1],KeyError: 13,failed +9508,tests.integ.modin.frame.test_loc,test_df_loc_set_key_slice[False--9-None-1],ValueError: Incompatible indexer with DataFrame,failed +9509,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice_with_unordered_index[-9-4-4],KeyError: 13,failed +9531,tests.integ.modin.frame.test_loc,test_df_loc_set_key_slice[False--9-None-4],ValueError: Incompatible indexer with DataFrame,failed +9539,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice_with_unordered_index[-9-4-6],KeyError: 13,failed +9540,tests.integ.modin.frame.test_iloc,test_df_iloc_get_key_numeric[row-index-key4],"ValueError: +Location based indexing can only have [integer, integer slice (START point is +INCLUDED, END point is EXCLUDED), listlike of integers, boolean array] types.",failed +9557,tests.integ.modin.frame.test_loc,test_df_loc_set_key_slice[False--9-None-10],ValueError: Incompatible indexer with DataFrame,failed +9613,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice_with_unordered_index[-9-6-None],KeyError: 15,failed +9637,tests.integ.modin.frame.test_iloc,test_df_iloc_get_key_numeric[row-index-key5],"ValueError: +Location based indexing can only have [integer, integer slice (START point is +INCLUDED, END point is EXCLUDED), listlike of integers, boolean array] types.",failed +9644,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice_with_unordered_index[-9-6-1],KeyError: 15,failed +9683,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice_with_unordered_index[-9-6-4],KeyError: 15,failed +9712,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice_with_unordered_index[-9-6-6],KeyError: 15,failed +9761,tests.integ.modin.frame.test_loc,test_df_loc_get_reversed_key_slice_with_unordered_nullable_index[last--1-1-None],KeyError: 2,failed +9765,tests.integ.modin.binary.test_binary_op,test_binary_arithmetic_ops_with_non_scalar_fill_value_negative[fill_value0-add],"AssertionError: Regex pattern did not match. + Regex: 'Only scalars can be used as fill_value.' + Input: 'NumPy boolean array indexing assignment cannot assign 3 input values to the 1 output values where the mask is true'",failed +9775,tests.integ.modin.frame.test_iloc,test_df_iloc_get_key_numeric[row-index-key6],"ValueError: +Location based indexing can only have [integer, integer slice (START point is +INCLUDED, END point is EXCLUDED), listlike of integers, boolean array] types.",failed +9783,tests.integ.modin.frame.test_iloc,test_df_iloc_get_key_numeric[row-ndarray-key0],"ValueError: +Location based indexing can only have [integer, integer slice (START point is +INCLUDED, END point is EXCLUDED), listlike of integers, boolean array] types.",failed +9792,tests.integ.modin.binary.test_binary_op,test_binary_arithmetic_ops_with_non_scalar_fill_value_negative[fill_value0-radd],"AssertionError: Regex pattern did not match. + Regex: 'Only scalars can be used as fill_value.' + Input: 'NumPy boolean array indexing assignment cannot assign 3 input values to the 1 output values where the mask is true'",failed +9827,tests.integ.modin.frame.test_loc,test_df_loc_get_reversed_key_slice_with_unordered_nullable_index[last--1-1-1],KeyError: 2,failed +9840,tests.integ.modin.frame.test_iloc,test_df_iloc_get_key_numeric[row-ndarray-key4],IndexError: index 8 is out of bounds for axis 0 with size 7,failed +9848,tests.integ.modin.frame.test_iloc,test_df_iloc_get_key_numeric[row-ndarray-key5],"ValueError: +Location based indexing can only have [integer, integer slice (START point is +INCLUDED, END point is EXCLUDED), listlike of integers, boolean array] types.",failed +9851,tests.integ.modin.frame.test_loc,test_df_loc_get_reversed_key_slice_with_unordered_nullable_index[last--1-1-4],KeyError: 2,failed +9854,tests.integ.modin.binary.test_binary_op,test_binary_arithmetic_ops_with_non_scalar_fill_value_negative[fill_value0-sub],"AssertionError: Regex pattern did not match. + Regex: 'Only scalars can be used as fill_value.' + Input: 'NumPy boolean array indexing assignment cannot assign 3 input values to the 1 output values where the mask is true'",failed +9860,tests.integ.modin.frame.test_iloc,test_df_iloc_get_key_numeric[row-ndarray-key6],"ValueError: +Location based indexing can only have [integer, integer slice (START point is +INCLUDED, END point is EXCLUDED), listlike of integers, boolean array] types.",failed +9873,tests.integ.modin.frame.test_loc,test_df_loc_get_reversed_key_slice_with_unordered_nullable_index[last--1-1-6],KeyError: 2,failed +9876,tests.integ.modin.frame.test_loc,test_df_loc_set_key_slice[True-None-1-1],ValueError: Incompatible indexer with DataFrame,failed +9879,tests.integ.modin.frame.test_loc,test_df_loc_get_reversed_key_slice_with_unordered_nullable_index[last--1-4-None],"AssertionError: DataFrame are different DataFrame shape mismatch -[left]: (2, 7) -[right]: (1, 7)",failed -12198,tests.integ.modin.groupby.test_groupby_apply,test_df_with_single_level_labels[with_non_unique_index-group_keys_False-transform_that_changes_columns-as_index_False-by_index-include_groups_False],KeyError: 'index',failed -12205,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col3-row8],KeyError: 'mark vi',failed -12207,tests.integ.modin.frame.test_loc,test_raise_set_cell_with_list_like_value_error,"ValueError: could not broadcast input array from shape (2,) into shape (1, 1)",failed -12208,tests.integ.modin.groupby.test_groupby_apply,test_df_with_single_level_labels[with_non_unique_index-group_keys_False-transform_that_changes_columns-as_index_False-by_string_col_1-include_groups_True],"AssertionError: DataFrame.index are different - -DataFrame.index values are different (50.0 %) -[left]: Index(['i0', 'i1', 'i1', 'i2'], dtype='object') -[right]: Index(['i0', 'i1', 'i2', 'i1'], dtype='object', name='index') -At positional index 2, first diff: i1 != i2",failed -12209,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[string_col_1-include_groups_True-dropna_False-sort_False-group_keys_True-non_transform_returns_dataframe],AssertionError,failed -12211,tests.integ.modin.test_merge,test_merge_native_pandas_object_negative,"AssertionError: Regex pattern did not match. - Regex: "" is not supported as 'value' argument. Please convert this to Snowpark pandas objects by calling modin.pandas.Series\\(\\)/DataFrame\\(\\)"" - Input: ""Can only merge Series or DataFrame objects, a was passed""",failed -12212,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice[True-1-1-4],"AssertionError: DataFrame are different +[left]: (1, 8) +[right]: (4, 8)",failed +9880,tests.integ.modin.binary.test_binary_op,test_binary_arithmetic_ops_with_non_scalar_fill_value_negative[fill_value0-rsub],"AssertionError: Regex pattern did not match. + Regex: 'Only scalars can be used as fill_value.' + Input: 'NumPy boolean array indexing assignment cannot assign 3 input values to the 1 output values where the mask is true'",failed +9885,tests.integ.modin.frame.test_loc,test_df_loc_get_reversed_key_slice_with_unordered_nullable_index[last--1-4-1],"AssertionError: DataFrame are different DataFrame shape mismatch -[left]: (5, 7) -[right]: (4, 7)",failed -12213,tests.integ.modin.groupby.test_groupby_bfill_ffill,test_groupby_bfill_ffill_unsupported_grouping_negative[bfill],KeyError: 'I',failed -12214,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col3-row9],"AssertionError: DataFrame are different +[left]: (0, 8) +[right]: (3, 8)",failed +9890,tests.integ.modin.frame.test_loc,test_df_loc_get_reversed_key_slice_with_unordered_nullable_index[last--1-4-4],"AssertionError: DataFrame are different DataFrame shape mismatch -[left]: (0, 1) -[right]: (6, 1)",failed -12221,tests.integ.modin.groupby.test_groupby_bfill_ffill,test_groupby_bfill_ffill_unsupported_grouping_negative[ffill],KeyError: 'I',failed -12222,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice[True-1-1-10],"AssertionError: DataFrame are different +[left]: (0, 8) +[right]: (1, 8)",failed +9897,tests.integ.modin.frame.test_loc,test_df_loc_get_reversed_key_slice_with_unordered_nullable_index[last--1-4-6],"AssertionError: DataFrame are different DataFrame shape mismatch -[left]: (7, 7) -[right]: (6, 7)",failed -12224,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col3-row12],AssertionError,failed -12232,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col3-row13],AssertionError,failed -12233,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice[True-1-4-None],"AssertionError: DataFrame are different +[left]: (0, 8) +[right]: (2, 8)",failed +9899,tests.integ.modin.binary.test_binary_op,test_binary_arithmetic_ops_with_non_scalar_fill_value_negative[fill_value0-mul],"AssertionError: Regex pattern did not match. + Regex: 'Only scalars can be used as fill_value.' + Input: 'NumPy boolean array indexing assignment cannot assign 3 input values to the 1 output values where the mask is true'",failed +9907,tests.integ.modin.frame.test_shift,test_shift_unsupported_args[params0-periods],Failed: DID NOT RAISE ,failed +9908,tests.integ.modin.frame.test_shift,test_shift_unsupported_args[params1-suffix],Failed: DID NOT RAISE ,failed +9909,tests.integ.modin.frame.test_loc,test_df_loc_get_reversed_key_slice_with_unordered_nullable_index[last--1-6-None],KeyError: 7,failed +9910,tests.integ.modin.frame.test_loc,test_df_loc_set_key_slice[True-None-4-4],ValueError: Incompatible indexer with DataFrame,failed +9918,tests.integ.modin.binary.test_binary_op,test_binary_arithmetic_ops_with_non_scalar_fill_value_negative[fill_value0-rmul],"AssertionError: Regex pattern did not match. + Regex: 'Only scalars can be used as fill_value.' + Input: 'NumPy boolean array indexing assignment cannot assign 3 input values to the 1 output values where the mask is true'",failed +9925,tests.integ.modin.frame.test_loc,test_df_loc_get_reversed_key_slice_with_unordered_nullable_index[last--1-6-1],KeyError: 7,failed +9929,tests.integ.modin.binary.test_binary_op,test_binary_arithmetic_ops_with_non_scalar_fill_value_negative[fill_value0-truediv],"AssertionError: Regex pattern did not match. + Regex: 'Only scalars can be used as fill_value.' + Input: 'NumPy boolean array indexing assignment cannot assign 3 input values to the 1 output values where the mask is true'",failed +9939,tests.integ.modin.frame.test_loc,test_df_loc_get_reversed_key_slice_with_unordered_nullable_index[last--1-6-4],KeyError: 7,failed +9945,tests.integ.modin.binary.test_binary_op,test_binary_arithmetic_ops_with_non_scalar_fill_value_negative[fill_value0-rtruediv],"AssertionError: Regex pattern did not match. + Regex: 'Only scalars can be used as fill_value.' + Input: 'NumPy boolean array indexing assignment cannot assign 3 input values to the 1 output values where the mask is true'",failed +9957,tests.integ.modin.frame.test_loc,test_df_loc_get_reversed_key_slice_with_unordered_nullable_index[last--1-6-6],KeyError: 7,failed +9966,tests.integ.modin.binary.test_binary_op,test_binary_arithmetic_ops_with_non_scalar_fill_value_negative[fill_value0-floordiv],"AssertionError: Regex pattern did not match. + Regex: 'Only scalars can be used as fill_value.' + Input: 'NumPy boolean array indexing assignment cannot assign 3 input values to the 1 output values where the mask is true'",failed +9976,tests.integ.modin.frame.test_size,test_dataframe_agg_size_axis_1[size],AssertionError: Got type: ,failed +9981,tests.integ.modin.frame.test_loc,test_df_loc_get_reversed_key_slice_with_unordered_nullable_index[last--2-1-None],KeyError: 3,failed +9994,tests.integ.modin.frame.test_join,test_join_suffix_on_list_negative,"AssertionError: Regex pattern did not match. + Regex: 'Join dataframes have overlapping column labels' + Input: ""Indexes have overlapping values: Index(['key'], dtype='object')""",failed +10003,tests.integ.modin.frame.test_loc,test_df_loc_get_reversed_key_slice_with_unordered_nullable_index[last--2-1-1],KeyError: 3,failed +10004,tests.integ.modin.binary.test_binary_op,test_binary_arithmetic_ops_with_non_scalar_fill_value_negative[fill_value0-rfloordiv],"AssertionError: Regex pattern did not match. + Regex: 'Only scalars can be used as fill_value.' + Input: 'NumPy boolean array indexing assignment cannot assign 3 input values to the 1 output values where the mask is true'",failed +10006,tests.integ.modin.frame.test_join,test_join_invalid_how_negative,"AssertionError: Regex pattern did not match. + Regex: 'do not recognize join method full_outer_join' + Input: ""columns overlap but no suffix specified: Index(['a'], dtype='object')""",failed +10009,tests.integ.modin.test_concat,test_concat_object_with_same_index_with_dup[inner],pandas.errors.InvalidIndexError: Reindexing only valid with uniquely valued Index objects,failed +10013,tests.integ.modin.frame.test_loc,test_df_loc_get_reversed_key_slice_with_unordered_nullable_index[last--2-1-4],KeyError: 3,failed +10015,tests.integ.modin.frame.test_join,test_join_unnamed_series_in_list_negative,AttributeError: 'Series' object has no attribute 'columns',failed +10016,tests.integ.modin.binary.test_binary_op,test_binary_arithmetic_ops_with_non_scalar_fill_value_negative[fill_value0-mod],"AssertionError: Regex pattern did not match. + Regex: 'Only scalars can be used as fill_value.' + Input: 'NumPy boolean array indexing assignment cannot assign 3 input values to the 1 output values where the mask is true'",failed +10017,tests.integ.modin.groupby.test_groupby_apply,test_dropna[index0-True-include_groups_True],KeyError: 'index',failed +10019,tests.integ.modin.test_concat,test_concat_object_with_same_index_with_dup_sort[inner],pandas.errors.InvalidIndexError: Reindexing only valid with uniquely valued Index objects,failed +10022,tests.integ.modin.frame.test_join,test_join_list_mixed,AttributeError: 'Series' object has no attribute 'columns',failed +10023,tests.integ.modin.groupby.test_groupby_apply,test_dropna[index0-True-include_groups_False],KeyError: 'index',failed +10025,tests.integ.modin.binary.test_binary_op,test_binary_arithmetic_ops_with_non_scalar_fill_value_negative[fill_value0-rmod],"AssertionError: Regex pattern did not match. + Regex: 'Only scalars can be used as fill_value.' + Input: 'NumPy boolean array indexing assignment cannot assign 3 input values to the 1 output values where the mask is true'",failed +10026,tests.integ.modin.frame.test_iloc,test_df_iloc_get_key_numeric[row-index with name-key1],"ValueError: +Location based indexing can only have [integer, integer slice (START point is +INCLUDED, END point is EXCLUDED), listlike of integers, boolean array] types.",failed +10033,tests.integ.modin.groupby.test_groupby_apply,test_dropna[index0-False-include_groups_True],KeyError: 'index',failed +10036,tests.integ.modin.test_concat,test_concat_object_with_same_index_with_dup_sort[outer],pandas.errors.InvalidIndexError: Reindexing only valid with uniquely valued Index objects,failed +10039,tests.integ.modin.frame.test_skew,test_skew_unsupported[unsupported0],AssertionError,failed +10040,tests.integ.modin.frame.test_loc,test_df_loc_set_key_slice[True--1--1-None],ValueError: Incompatible indexer with DataFrame,failed +10042,tests.integ.modin.frame.test_loc,test_df_loc_get_reversed_key_slice_with_unordered_nullable_index[last--2-1-6],KeyError: 3,failed +10044,tests.integ.modin.frame.test_skew,test_skew_unsupported[unsupported2],AssertionError,failed +10046,tests.integ.modin.groupby.test_groupby_apply,test_dropna[index0-False-include_groups_False],KeyError: 'index',failed +10048,tests.integ.modin.groupby.test_groupby_apply,test_dropna[index1-True-include_groups_True],"reason: We drop all the rows, apply the UDTF, and try to pivot the result, but pivoting an empty frame causes a SQL error due to SNOW-1233895",xfailed +10049,tests.integ.modin.groupby.test_groupby_apply,test_dropna[index1-True-include_groups_False],"reason: We drop all the rows, apply the UDTF, and try to pivot the result, but pivoting an empty frame causes a SQL error due to SNOW-1233895",xfailed +10051,tests.integ.modin.frame.test_loc,test_df_loc_get_reversed_key_slice_with_unordered_nullable_index[last--2-4-1],"AssertionError: DataFrame are different DataFrame shape mismatch -[left]: (4, 7) -[right]: (3, 7)",failed -12240,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[string_col_1-include_groups_True-dropna_False-sort_False-group_keys_True-transform_returns_dataframe],TypeError: must pass an index to rename,failed -12242,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col3-row14],"AssertionError: DataFrame.columns are different - -DataFrame.columns classes are different -[left]: Index(['buzz1'], dtype='object', name='buzz') -[right]: MultiIndex([('fizz1', 'buzz1')], - names=['fizz', 'buzz'])",failed -12246,tests.integ.modin.groupby.test_groupby_apply,test_df_with_single_level_labels[with_non_unique_index-group_keys_False-transform_that_changes_columns-as_index_False-by_string_col_1-include_groups_False],"AssertionError: DataFrame.index are different +[left]: (1, 8) +[right]: (2, 8)",failed +10052,tests.integ.modin.frame.test_loc,test_df_loc_set_key_slice[True--1--1--1],ValueError: Incompatible indexer with DataFrame,failed +10053,tests.integ.modin.frame.test_loc,test_df_loc_get_reversed_key_slice_with_unordered_nullable_index[last--2-4-4],"AssertionError: DataFrame are different -DataFrame.index values are different (50.0 %) -[left]: Index(['i0', 'i1', 'i1', 'i2'], dtype='object') -[right]: Index(['i0', 'i1', 'i2', 'i1'], dtype='object', name='index') -At positional index 2, first diff: i1 != i2",failed -12248,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[string_col_1-include_groups_True-dropna_False-sort_False-group_keys_True-non_transform_returns_series],"AssertionError: Series are different +DataFrame shape mismatch +[left]: (0, 8) +[right]: (1, 8)",failed +10055,tests.integ.modin.binary.test_binary_op,test_binary_arithmetic_ops_with_non_scalar_fill_value_negative[fill_value0-pow],"AssertionError: Regex pattern did not match. + Regex: 'Only scalars can be used as fill_value.' + Input: 'NumPy boolean array indexing assignment cannot assign 3 input values to the 1 output values where the mask is true'",failed +10059,tests.integ.modin.groupby.test_groupby_apply,test_dropna[index1-False-include_groups_True],KeyError: 'index',failed +10062,tests.integ.modin.frame.test_iloc,test_df_iloc_get_key_numeric[row-index with name-key2],"ValueError: +Location based indexing can only have [integer, integer slice (START point is +INCLUDED, END point is EXCLUDED), listlike of integers, boolean array] types.",failed +10064,tests.integ.modin.frame.test_loc,test_df_loc_get_reversed_key_slice_with_unordered_nullable_index[last--2-6-None],KeyError: 8,failed +10065,tests.integ.modin.binary.test_binary_op,test_binary_arithmetic_ops_with_non_scalar_fill_value_negative[fill_value0-rpow],"AssertionError: Regex pattern did not match. + Regex: 'Only scalars can be used as fill_value.' + Input: 'NumPy boolean array indexing assignment cannot assign 3 input values to the 1 output values where the mask is true'",failed +10069,tests.integ.modin.groupby.test_groupby_apply,test_dropna[index1-False-include_groups_False],KeyError: 'index',failed +10071,tests.integ.modin.groupby.test_groupby_apply,test_returning_series_with_different_names[include_groups_True],"[XPASS(strict)] Snowpark pandas uses name returned from first group, while pandas returns None. This should be very rare in practice",failed +10072,tests.integ.modin.groupby.test_groupby_apply,test_returning_series_with_different_names[include_groups_False],"[XPASS(strict)] Snowpark pandas uses name returned from first group, while pandas returns None. This should be very rare in practice",failed +10074,tests.integ.modin.frame.test_loc,test_df_loc_get_reversed_key_slice_with_unordered_nullable_index[last--2-6-1],KeyError: 8,failed +10075,tests.integ.modin.groupby.test_groupby_apply,test_returning_series_with_conflicting_indexes[include_groups_True],[XPASS(strict)] Snowpark pandas return a DataFrame but native pandas returns a Series. This should be very rare in practice.,failed +10077,tests.integ.modin.binary.test_binary_op,test_binary_arithmetic_ops_with_non_scalar_fill_value_negative[fill_value1-add],"AssertionError: Regex pattern did not match. + Regex: 'Only scalars can be used as fill_value.' + Input: 'NumPy boolean array indexing assignment cannot assign 0 input values to the 1 output values where the mask is true'",failed +10078,tests.integ.modin.groupby.test_groupby_apply,test_returning_series_with_conflicting_indexes[include_groups_False],[XPASS(strict)] Snowpark pandas return a DataFrame but native pandas returns a Series. This should be very rare in practice.,failed +10083,tests.integ.modin.frame.test_loc,test_df_loc_get_reversed_key_slice_with_unordered_nullable_index[last--2-6-4],KeyError: 8,failed +10085,tests.integ.modin.binary.test_binary_op,test_binary_arithmetic_ops_with_non_scalar_fill_value_negative[fill_value1-radd],"AssertionError: Regex pattern did not match. + Regex: 'Only scalars can be used as fill_value.' + Input: 'NumPy boolean array indexing assignment cannot assign 0 input values to the 1 output values where the mask is true'",failed +10086,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[string_col_1-include_groups_True-dropna_True-sort_True-group_keys_True-non_transform_returns_dataframe],AssertionError,failed +10104,tests.integ.modin.frame.test_iloc,test_df_iloc_get_key_numeric[row-index with name-key3],"ValueError: +Location based indexing can only have [integer, integer slice (START point is +INCLUDED, END point is EXCLUDED), listlike of integers, boolean array] types.",failed +10110,tests.integ.modin.binary.test_binary_op,test_binary_arithmetic_ops_with_non_scalar_fill_value_negative[fill_value1-sub],"AssertionError: Regex pattern did not match. + Regex: 'Only scalars can be used as fill_value.' + Input: 'NumPy boolean array indexing assignment cannot assign 0 input values to the 1 output values where the mask is true'",failed +10112,tests.integ.modin.frame.test_loc,test_df_loc_get_reversed_key_slice_with_unordered_nullable_index[last--2-6-6],KeyError: 8,failed +10121,tests.integ.modin.frame.test_loc,test_df_loc_set_key_slice[True-2-None-1],ValueError: Incompatible indexer with DataFrame,failed +10124,tests.integ.modin.binary.test_binary_op,test_binary_arithmetic_ops_with_non_scalar_fill_value_negative[fill_value1-rsub],"AssertionError: Regex pattern did not match. + Regex: 'Only scalars can be used as fill_value.' + Input: 'NumPy boolean array indexing assignment cannot assign 0 input values to the 1 output values where the mask is true'",failed +10126,tests.integ.modin.frame.test_join,test_join_different_levels_negative,"AssertionError: Regex pattern did not match. + Regex: 'Can not merge objects with different column levels' + Input: 'Not allowed to merge between different levels. (1 levels on the left, 2 on the right)'",failed +10130,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[string_col_1-include_groups_True-dropna_True-sort_True-group_keys_True-transform_returns_dataframe],TypeError: must pass an index to rename,failed +10140,tests.integ.modin.frame.test_join,test_join_validate[lvalues0-rvalues0-1:1],Failed: DID NOT RAISE ,failed +10141,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[string_col_1-include_groups_True-dropna_True-sort_True-group_keys_True-non_transform_returns_series],"AssertionError: Series are different Series length are different [left]: 3, Index(['sum', 'mean', 'name'], dtype='object', name='custom_metrics') -[right]: 9, MultiIndex([('k0', 'sum'), +[right]: 6, MultiIndex([('k0', 'sum'), ('k0', 'mean'), ('k0', 'name'), ('k1', 'sum'), ('k1', 'mean'), - ('k1', 'name'), - ( nan, 'sum'), - ( nan, 'mean'), - ( nan, 'name')], + ('k1', 'name')], names=['string_col_1', None])",failed -12254,tests.integ.modin.frame.test_loc,test_df_loc_get_with_timedelta[key2-1-1],ValueError: Could not convert object to NumPy timedelta,failed -12256,tests.integ.modin.frame.test_astype,test_astype_from_timestamp_ltz[to_dtype19],"TypeError: int() argument must be a string, a bytes-like object or a real number, not 'Timestamp'",failed -12261,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice[True-1-4-4],"AssertionError: DataFrame are different - -DataFrame shape mismatch -[left]: (2, 7) -[right]: (1, 7)",failed -12262,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[string_col_1-include_groups_True-dropna_False-sort_False-group_keys_True-transform_returns_series],"AssertionError: MultiIndex level [1] are different +10143,tests.integ.modin.binary.test_binary_op,test_binary_arithmetic_ops_with_non_scalar_fill_value_negative[fill_value1-mul],"AssertionError: Regex pattern did not match. + Regex: 'Only scalars can be used as fill_value.' + Input: 'NumPy boolean array indexing assignment cannot assign 0 input values to the 1 output values where the mask is true'",failed +10144,tests.integ.modin.frame.test_join,test_join_validate[lvalues1-rvalues1-1:m],Failed: DID NOT RAISE ,failed +10147,tests.integ.modin.frame.test_join,test_join_validate[lvalues2-rvalues2-m:1],Failed: DID NOT RAISE ,failed +10149,tests.integ.modin.frame.test_join,test_join_validate[lvalues3-rvalues3-m:m],Failed: DID NOT RAISE ,failed +10151,tests.integ.modin.frame.test_sort_index,test_sort_index_dataframe_axis_1_unsupported,Failed: DID NOT RAISE ,failed +10152,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[string_col_1-include_groups_True-dropna_True-sort_True-group_keys_True-transform_returns_series],"AssertionError: MultiIndex level [1] are different Attribute ""names"" are different [left]: [None] [right]: ['index']",failed -12263,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col4-mark i],KeyError: 'fizz2',failed -12265,tests.integ.modin.groupby.test_groupby_apply,test_df_with_single_level_labels[with_non_unique_index-group_keys_False-duplicate_df_rowwise-as_index_True-by_index-include_groups_True],KeyError: 'index',failed -12276,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[string_col_1-include_groups_True-dropna_False-sort_False-group_keys_True-return_scalar],"AssertionError: Series are different +10153,tests.integ.modin.frame.test_iloc,test_df_iloc_get_key_numeric[row-index with name-key4],"ValueError: +Location based indexing can only have [integer, integer slice (START point is +INCLUDED, END point is EXCLUDED), listlike of integers, boolean array] types.",failed +10154,tests.integ.modin.frame.test_join,test_join_validate[lvalues4-rvalues4-1:m],Failed: DID NOT RAISE ,failed +10155,tests.integ.modin.frame.test_sort_index,test_sort_index_dataframe_multiindex_unsupported,Failed: DID NOT RAISE ,failed +10156,tests.integ.modin.frame.test_join,test_join_validate[lvalues5-rvalues5-m:m],Failed: DID NOT RAISE ,failed +10157,tests.integ.modin.frame.test_join,test_join_validate[lvalues6-rvalues6-m:1],Failed: DID NOT RAISE ,failed +10158,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[string_col_1-include_groups_True-dropna_True-sort_True-group_keys_True-return_scalar],"AssertionError: Series are different Series values are different (100.0 %) -[index]: [k0, k1, nan] +[index]: [k0, k1] [left]: [x int_col 44 dtype: int64_x @@ -6458,84 +5210,50 @@ dtype: float64_k0, x int_col 14 dtype: int64_x int_col 14.0 -dtype: float64_k1, x -int_col 17 -dtype: int64_x -int_col 17.0 -dtype: float64_None] -[right]: [44_14.666666666666666_k0, 14_14.0_k1, 17_17.0_None] +dtype: float64_k1] +[right]: [44_14.666666666666666_k0, 14_14.0_k1] At positional index 0, first diff: x int_col 44 dtype: int64_x int_col 14.666667 dtype: float64_k0 != 44_14.666666666666666_k0",failed -12278,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice[True-1-4-10],"AssertionError: DataFrame are different - -DataFrame shape mismatch -[left]: (4, 7) -[right]: (3, 7)",failed -12287,tests.integ.modin.groupby.test_groupby_apply,test_df_with_single_level_labels[with_non_unique_index-group_keys_False-duplicate_df_rowwise-as_index_True-by_index-include_groups_False],KeyError: 'index',failed -12288,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col4-row1],KeyError: 'fizz2',failed -12294,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[string_col_1-include_groups_True-dropna_False-sort_False-group_keys_False-non_transform_returns_dataframe],AssertionError,failed -12310,tests.integ.modin.groupby.test_groupby_apply,test_df_with_single_level_labels[with_non_unique_index-group_keys_False-duplicate_df_rowwise-as_index_True-by_string_col_1-include_groups_True],"AssertionError: DataFrame.index are different - -Attribute ""names"" are different -[left]: [None] -[right]: ['index']",failed -12311,tests.integ.modin.test_merge_asof,test_merge_asof_left_right_on[backward-True],"AssertionError: DataFrame are different - -DataFrame shape mismatch -[left]: (3, 5) -[right]: (3, 6)",failed -12314,tests.integ.modin.test_merge_asof,test_merge_asof_left_right_on[backward-False],"AssertionError: DataFrame are different - -DataFrame shape mismatch -[left]: (3, 5) -[right]: (3, 6)",failed -12317,tests.integ.modin.test_merge_asof,test_merge_asof_left_right_on[forward-True],"AssertionError: DataFrame are different - -DataFrame shape mismatch -[left]: (3, 5) -[right]: (3, 6)",failed -12320,tests.integ.modin.groupby.test_groupby_apply,test_df_with_single_level_labels[with_non_unique_index-group_keys_False-duplicate_df_rowwise-as_index_True-by_string_col_1-include_groups_False],"AssertionError: DataFrame.index are different - -Attribute ""names"" are different -[left]: [None] -[right]: ['index']",failed -12322,tests.integ.modin.test_merge_asof,test_merge_asof_left_right_on[forward-False],"AssertionError: DataFrame are different - -DataFrame shape mismatch -[left]: (3, 5) -[right]: (3, 6)",failed -12338,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[string_col_1-include_groups_True-dropna_False-sort_False-group_keys_False-transform_returns_dataframe],TypeError: must pass an index to rename,failed -12343,tests.integ.modin.test_merge_asof,test_merge_asof_negative_non_numeric_on,"pandas.errors.MergeError: Incompatible merge dtype, dtype('O') and dtype('O'), both sides must have numeric dtype",failed -12345,tests.integ.modin.groupby.test_groupby_apply,test_df_with_single_level_labels[with_non_unique_index-group_keys_False-duplicate_df_rowwise-as_index_False-by_index-include_groups_True],KeyError: 'index',failed -12351,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col4-row2],KeyError: 'fizz2',failed -12354,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[string_col_1-include_groups_True-dropna_False-sort_False-group_keys_False-non_transform_returns_series],"AssertionError: Series are different +10159,tests.integ.modin.frame.test_join,test_join_validate[lvalues7-rvalues7-m:m],Failed: DID NOT RAISE ,failed +10161,tests.integ.modin.frame.test_join,test_join_validate[lvalues8-rvalues8-m:m],Failed: DID NOT RAISE ,failed +10162,tests.integ.modin.test_concat,test_concat_timedelta_not_implemented,Failed: DID NOT RAISE ,failed +10163,tests.integ.modin.frame.test_loc,test_df_loc_set_key_slice[True-2--1-1],ValueError: Incompatible indexer with DataFrame,failed +10164,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[string_col_1-include_groups_True-dropna_True-sort_True-group_keys_False-non_transform_returns_dataframe],AssertionError,failed +10166,tests.integ.modin.frame.test_join,test_join_validate_negative[lvalues0-rvalues0-1:1],pandas.errors.MergeError: Merge keys are not unique in right dataset; not a one-to-one merge,failed +10168,tests.integ.modin.binary.test_binary_op,test_binary_arithmetic_ops_with_non_scalar_fill_value_negative[fill_value1-rmul],"AssertionError: Regex pattern did not match. + Regex: 'Only scalars can be used as fill_value.' + Input: 'NumPy boolean array indexing assignment cannot assign 0 input values to the 1 output values where the mask is true'",failed +10171,tests.integ.modin.frame.test_join,test_join_validate_negative[lvalues1-rvalues1-m:1],pandas.errors.MergeError: Merge keys are not unique in right dataset; not a many-to-one merge,failed +10175,tests.integ.modin.frame.test_iloc,test_df_iloc_get_key_numeric[row-index with name-key5],"ValueError: +Location based indexing can only have [integer, integer slice (START point is +INCLUDED, END point is EXCLUDED), listlike of integers, boolean array] types.",failed +10177,tests.integ.modin.binary.test_binary_op,test_binary_arithmetic_ops_with_non_scalar_fill_value_negative[fill_value1-truediv],"AssertionError: Regex pattern did not match. + Regex: 'Only scalars can be used as fill_value.' + Input: 'NumPy boolean array indexing assignment cannot assign 0 input values to the 1 output values where the mask is true'",failed +10178,tests.integ.modin.frame.test_loc,test_df_loc_set_key_slice[True-2-1-1],ValueError: Incompatible indexer with DataFrame,failed +10180,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[string_col_1-include_groups_True-dropna_True-sort_True-group_keys_False-transform_returns_dataframe],TypeError: must pass an index to rename,failed +10181,tests.integ.modin.frame.test_join,test_join_validate_negative[lvalues2-rvalues2-1:1],pandas.errors.MergeError: Merge keys are not unique in left dataset; not a one-to-one merge,failed +10188,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[string_col_1-include_groups_True-dropna_True-sort_True-group_keys_False-non_transform_returns_series],"AssertionError: Series are different Series length are different [left]: 3, Index(['sum', 'mean', 'name'], dtype='object', name='custom_metrics') -[right]: 9, Index(['sum', 'mean', 'name', 'sum', 'mean', 'name', 'sum', 'mean', 'name'], dtype='object')",failed -12360,tests.integ.modin.test_merge_asof,test_merge_asof_negative_multiple_on,"KeyError: ""None of [Index([('a', 'another_col_right')], dtype='object')] are in the [columns]""",failed -12362,tests.integ.modin.groupby.test_groupby_apply,test_df_with_single_level_labels[with_non_unique_index-group_keys_False-duplicate_df_rowwise-as_index_False-by_index-include_groups_False],KeyError: 'index',failed -12363,tests.integ.modin.test_merge_asof,test_merge_asof_nearest_unsupported,Failed: DID NOT RAISE ,failed -12366,tests.integ.modin.frame.test_astype,test_astype_from_timestamp_ltz[to_dtype20],"TypeError: int() argument must be a string, a bytes-like object or a real number, not 'Timestamp'",failed -12368,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[string_col_1-include_groups_True-dropna_False-sort_False-group_keys_False-transform_returns_series],"AssertionError: Series.index are different - -Attribute ""names"" are different -[left]: [None] -[right]: ['index']",failed -12371,tests.integ.modin.groupby.test_groupby_apply,test_df_with_single_level_labels[with_non_unique_index-group_keys_False-duplicate_df_rowwise-as_index_False-by_string_col_1-include_groups_True],"AssertionError: DataFrame.index are different +[right]: 6, Index(['sum', 'mean', 'name', 'sum', 'mean', 'name'], dtype='object')",failed +10192,tests.integ.modin.binary.test_binary_op,test_binary_arithmetic_ops_with_non_scalar_fill_value_negative[fill_value1-rtruediv],"AssertionError: Regex pattern did not match. + Regex: 'Only scalars can be used as fill_value.' + Input: 'NumPy boolean array indexing assignment cannot assign 0 input values to the 1 output values where the mask is true'",failed +10200,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[string_col_1-include_groups_True-dropna_True-sort_True-group_keys_False-transform_returns_series],"AssertionError: Series.index are different Attribute ""names"" are different [left]: [None] [right]: ['index']",failed -12375,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col4-row3],KeyError: 'fizz2',failed -12376,tests.integ.modin.test_merge_asof,test_merge_asof_params_unsupported,"KeyError: ""None of [Index(['price'], dtype='object')] are in the [columns]""",failed -12378,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[string_col_1-include_groups_True-dropna_False-sort_False-group_keys_False-return_scalar],"AssertionError: Series are different +10203,tests.integ.modin.frame.test_join,test_join_validate_negative[lvalues3-rvalues3-1:m],pandas.errors.MergeError: Merge keys are not unique in left dataset; not a one-to-many merge,failed +10209,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[string_col_1-include_groups_True-dropna_True-sort_True-group_keys_False-return_scalar],"AssertionError: Series are different Series values are different (100.0 %) -[index]: [k0, k1, nan] +[index]: [k0, k1] [left]: [x int_col 44 dtype: int64_x @@ -6544,88 +5262,40 @@ dtype: float64_k0, x int_col 14 dtype: int64_x int_col 14.0 -dtype: float64_k1, x -int_col 17 -dtype: int64_x -int_col 17.0 -dtype: float64_None] -[right]: [44_14.666666666666666_k0, 14_14.0_k1, 17_17.0_None] +dtype: float64_k1] +[right]: [44_14.666666666666666_k0, 14_14.0_k1] At positional index 0, first diff: x int_col 44 dtype: int64_x int_col 14.666667 dtype: float64_k0 != 44_14.666666666666666_k0",failed -12379,tests.integ.modin.groupby.test_groupby_apply,test_df_with_single_level_labels[with_non_unique_index-group_keys_False-duplicate_df_rowwise-as_index_False-by_string_col_1-include_groups_False],"AssertionError: DataFrame.index are different - -Attribute ""names"" are different -[left]: [None] -[right]: ['index']",failed -12382,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice[True--1--1-None],"AssertionError: DataFrame are different - -DataFrame shape mismatch -[left]: (1, 7) -[right]: (0, 7)",failed -12383,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[string_col_1-include_groups_False-dropna_True-sort_True-group_keys_True-non_transform_returns_dataframe],AssertionError,failed -12384,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col4-row4],"KeyError: ['viper', 'mark i', 'viper']",failed -12386,tests.integ.modin.groupby.test_groupby_apply,test_df_with_single_level_labels[with_unique_index-group_keys_True-transform_that_changes_columns-as_index_True-by_index-include_groups_True],KeyError: 'index',failed -12390,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice[True--1--1--1],"AssertionError: DataFrame are different - -DataFrame shape mismatch -[left]: (1, 7) -[right]: (0, 7)",failed -12392,tests.integ.modin.frame.test_loc,test_df_loc_get_with_timedelta_behavior_difference[key0-expected_result0],KeyError: Timedelta('4 days 23:59:59.999999999'),failed -12398,tests.integ.modin.groupby.test_groupby_apply,test_df_with_single_level_labels[with_unique_index-group_keys_True-transform_that_changes_columns-as_index_True-by_index-include_groups_False],KeyError: 'index',failed -12403,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col4-row5],KeyError: 'mark vi',failed -12405,tests.integ.modin.groupby.test_groupby_dataframe_cumulative,test_groupby_cumulative[True-True-True-True-cummin-LEXLUTHOR],"AssertionError: DataFrame are different - -DataFrame shape mismatch -[left]: (5, 6) -[right]: (5, 4)",failed -12408,tests.integ.modin.groupby.test_groupby_apply,test_df_with_single_level_labels[with_unique_index-group_keys_True-transform_that_changes_columns-as_index_True-by_string_col_1-include_groups_True],"AssertionError: MultiIndex level [1] are different - -Attribute ""names"" are different -[left]: [None] -[right]: ['index']",failed -12411,tests.integ.modin.groupby.test_groupby_dataframe_cumulative,test_groupby_cumulative[True-True-True-True-cummin-by1],"AssertionError: DataFrame are different - -DataFrame shape mismatch -[left]: (5, 5) -[right]: (5, 3)",failed -12414,tests.integ.modin.groupby.test_groupby_dataframe_cumulative,test_groupby_cumulative[True-True-True-True-cummin-DARKSEID],"AssertionError: DataFrame are different - -DataFrame shape mismatch -[left]: (5, 6) -[right]: (5, 4)",failed -12415,tests.integ.modin.groupby.test_groupby_apply,test_df_with_single_level_labels[with_unique_index-group_keys_True-transform_that_changes_columns-as_index_True-by_string_col_1-include_groups_False],"AssertionError: MultiIndex level [1] are different - -Attribute ""names"" are different -[left]: [None] -[right]: ['index']",failed -12416,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice[True--1-1-None],"AssertionError: DataFrame are different - -DataFrame shape mismatch -[left]: (3, 7) -[right]: (2, 7)",failed -12417,tests.integ.modin.frame.test_astype,test_astype_from_timestamp_ltz[to_dtype21],"TypeError: int() argument must be a string, a bytes-like object or a real number, not 'Timestamp'",failed -12421,tests.integ.modin.groupby.test_groupby_dataframe_cumulative,test_groupby_cumulative[True-True-True-True-cummax-LEXLUTHOR],"AssertionError: DataFrame are different - -DataFrame shape mismatch -[left]: (5, 6) -[right]: (5, 4)",failed -12422,tests.integ.modin.frame.test_loc,test_df_loc_get_with_timedelta_behavior_difference[key1-expected_result1],KeyError: Timedelta('4 days 23:59:59.999999999'),failed -12423,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[string_col_1-include_groups_False-dropna_True-sort_True-group_keys_True-transform_returns_dataframe],TypeError: must pass an index to rename,failed -12425,tests.integ.modin.groupby.test_groupby_dataframe_cumulative,test_groupby_cumulative[True-True-True-True-cummax-by1],"AssertionError: DataFrame are different - -DataFrame shape mismatch -[left]: (5, 5) -[right]: (5, 3)",failed -12427,tests.integ.modin.groupby.test_groupby_apply,test_df_with_single_level_labels[with_unique_index-group_keys_True-transform_that_changes_columns-as_index_False-by_index-include_groups_True],KeyError: 'index',failed -12429,tests.integ.modin.groupby.test_groupby_dataframe_cumulative,test_groupby_cumulative[True-True-True-True-cummax-DARKSEID],"AssertionError: DataFrame are different - -DataFrame shape mismatch -[left]: (5, 6) -[right]: (5, 4)",failed -12430,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[string_col_1-include_groups_False-dropna_True-sort_True-group_keys_True-non_transform_returns_series],"AssertionError: Series are different +10210,tests.integ.modin.frame.test_join,test_join_validate_negative[lvalues4-rvalues4-1:1],pandas.errors.MergeError: Merge keys are not unique in either left or right dataset; not a one-to-one merge,failed +10213,tests.integ.modin.frame.test_sort_values,test_sort_values[True-ind],KeyError: 'ind',failed +10215,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[string_col_1-include_groups_True-dropna_True-sort_False-group_keys_True-non_transform_returns_dataframe],AssertionError,failed +10216,tests.integ.modin.frame.test_join,test_join_validate_negative[lvalues5-rvalues5-1:m],pandas.errors.MergeError: Merge keys are not unique in left dataset; not a one-to-many merge,failed +10221,tests.integ.modin.binary.test_binary_op,test_binary_arithmetic_ops_with_non_scalar_fill_value_negative[fill_value1-floordiv],"AssertionError: Regex pattern did not match. + Regex: 'Only scalars can be used as fill_value.' + Input: 'NumPy boolean array indexing assignment cannot assign 0 input values to the 1 output values where the mask is true'",failed +10225,tests.integ.modin.frame.test_join,test_join_validate_negative[lvalues6-rvalues6-m:1],pandas.errors.MergeError: Merge keys are not unique in right dataset; not a many-to-one merge,failed +10228,tests.integ.modin.frame.test_iloc,test_df_iloc_get_key_numeric[row-index with name-key6],"ValueError: +Location based indexing can only have [integer, integer slice (START point is +INCLUDED, END point is EXCLUDED), listlike of integers, boolean array] types.",failed +10233,tests.integ.modin.frame.test_sort_values,test_sort_values[False-ind],KeyError: 'ind',failed +10239,tests.integ.modin.binary.test_binary_op,test_binary_arithmetic_ops_with_non_scalar_fill_value_negative[fill_value1-rfloordiv],"AssertionError: Regex pattern did not match. + Regex: 'Only scalars can be used as fill_value.' + Input: 'NumPy boolean array indexing assignment cannot assign 0 input values to the 1 output values where the mask is true'",failed +10244,tests.integ.modin.frame.test_sort_values,test_sort_values_on_duplicate_labels_negative,Failed: DID NOT RAISE ,failed +10245,tests.integ.modin.frame.test_loc,test_df_loc_set_key_slice[True--2-None-4],ValueError: Incompatible indexer with DataFrame,failed +10256,tests.integ.modin.binary.test_binary_op,test_binary_arithmetic_ops_with_non_scalar_fill_value_negative[fill_value1-mod],"AssertionError: Regex pattern did not match. + Regex: 'Only scalars can be used as fill_value.' + Input: 'NumPy boolean array indexing assignment cannot assign 0 input values to the 1 output values where the mask is true'",failed +10260,tests.integ.modin.frame.test_loc,test_df_loc_set_key_slice[True--2--1-None],ValueError: Incompatible indexer with DataFrame,failed +10264,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[string_col_1-include_groups_True-dropna_True-sort_False-group_keys_True-transform_returns_dataframe],TypeError: must pass an index to rename,failed +10268,tests.integ.modin.frame.test_iloc,test_df_iloc_get_key_numeric[col-list-key4],IndexError: index 8 is out of bounds for axis 0 with size 7,failed +10271,tests.integ.modin.binary.test_binary_op,test_binary_arithmetic_ops_with_non_scalar_fill_value_negative[fill_value1-rmod],"AssertionError: Regex pattern did not match. + Regex: 'Only scalars can be used as fill_value.' + Input: 'NumPy boolean array indexing assignment cannot assign 0 input values to the 1 output values where the mask is true'",failed +10272,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[string_col_1-include_groups_True-dropna_True-sort_False-group_keys_True-non_transform_returns_series],"AssertionError: Series are different Series length are different [left]: 3, Index(['sum', 'mean', 'name'], dtype='object', name='custom_metrics') @@ -6636,30 +5306,27 @@ Series length are different ('k1', 'mean'), ('k1', 'name')], names=['string_col_1', None])",failed -12436,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col4-row6],KeyError: 'mark vi',failed -12438,tests.integ.modin.groupby.test_groupby_apply,test_df_with_single_level_labels[with_unique_index-group_keys_True-transform_that_changes_columns-as_index_False-by_index-include_groups_False],KeyError: 'index',failed -12439,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[string_col_1-include_groups_False-dropna_True-sort_True-group_keys_True-transform_returns_series],"AssertionError: MultiIndex level [1] are different +10274,tests.integ.modin.frame.test_loc,test_df_loc_set_key_slice[True--2--1--1],ValueError: Incompatible indexer with DataFrame,failed +10276,tests.integ.modin.frame.test_iloc,test_df_iloc_get_key_numeric[col-list-key5],"ValueError: +Location based indexing can only have [integer, integer slice (START point is +INCLUDED, END point is EXCLUDED), listlike of integers, boolean array] types.",failed +10280,tests.integ.modin.frame.test_sort_values,test_sort_values_duplicate_by[by1],KeyError: 'ind',failed +10284,tests.integ.modin.frame.test_iloc,test_df_iloc_get_key_numeric[col-list-key6],"ValueError: +Location based indexing can only have [integer, integer slice (START point is +INCLUDED, END point is EXCLUDED), listlike of integers, boolean array] types.",failed +10288,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[string_col_1-include_groups_True-dropna_True-sort_False-group_keys_True-transform_returns_series],"AssertionError: MultiIndex level [1] are different Attribute ""names"" are different [left]: [None] [right]: ['index']",failed -12442,tests.integ.modin.frame.test_loc,test_df_loc_get_with_timedelta_behavior_difference[key2-expected_result2],KeyError: Timedelta('2 days 23:59:59.999999999'),failed -12443,tests.integ.modin.groupby.test_groupby_dataframe_cumulative,test_groupby_cumulative[True-True-True-False-cummin-LEXLUTHOR],"AssertionError: DataFrame are different - -DataFrame shape mismatch -[left]: (5, 6) -[right]: (5, 4)",failed -12445,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice[True--1-1--1],"AssertionError: DataFrame are different - -DataFrame shape mismatch -[left]: (3, 7) -[right]: (2, 7)",failed -12446,tests.integ.modin.groupby.test_groupby_dataframe_cumulative,test_groupby_cumulative[True-True-True-False-cummin-by1],"AssertionError: DataFrame are different - -DataFrame shape mismatch -[left]: (5, 5) -[right]: (5, 3)",failed -12449,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[string_col_1-include_groups_False-dropna_True-sort_True-group_keys_True-return_scalar],"AssertionError: Series are different +10293,tests.integ.modin.frame.test_loc,test_df_loc_set_key_slice[True--2--1-1],ValueError: Incompatible indexer with DataFrame,failed +10295,tests.integ.modin.test_cut,test_cut_with_labels[True-3-True-True-data0-cuts0-labels0],categorical not supported in Snowpark pandas API,xfailed +10297,tests.integ.modin.frame.test_iloc,test_df_iloc_get_key_numeric[col-series-key0],"ValueError: +Location based indexing can only have [integer, integer slice (START point is +INCLUDED, END point is EXCLUDED), listlike of integers, boolean array] types.",failed +10298,tests.integ.modin.test_cut,test_cut_with_labels[True-3-True-True-data1-4-labels1],categorical not supported in Snowpark pandas API,xfailed +10301,tests.integ.modin.test_cut,test_cut_with_labels[True-3-True-False-data0-cuts0-labels0],categorical not supported in Snowpark pandas API,xfailed +10302,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[string_col_1-include_groups_True-dropna_True-sort_False-group_keys_True-return_scalar],"AssertionError: Series are different Series values are different (100.0 %) [index]: [k0, k1] @@ -6678,102 +5345,75 @@ int_col 44 dtype: int64_x int_col 14.666667 dtype: float64_k0 != 44_14.666666666666666_k0",failed -12450,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice[True--1-1-1],"AssertionError: DataFrame are different - -DataFrame shape mismatch -[left]: (2, 7) -[right]: (1, 7)",failed -12452,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col4-row7],KeyError: 'mark vi',failed -12455,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[string_col_1-include_groups_False-dropna_True-sort_True-group_keys_False-non_transform_returns_dataframe],AssertionError,failed -12457,tests.integ.modin.frame.test_loc,test_df_loc_get_with_timedelta_behavior_difference[key3-expected_result3],KeyError: Timedelta('2 days 02:00:00'),failed -12460,tests.integ.modin.groupby.test_groupby_apply,test_df_with_single_level_labels[with_unique_index-group_keys_True-transform_that_changes_columns-as_index_False-by_string_col_1-include_groups_True],"AssertionError: MultiIndex level [1] are different - -Attribute ""names"" are different -[left]: [None] -[right]: ['index']",failed -12463,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice[True--1-4-None],"AssertionError: DataFrame are different - -DataFrame shape mismatch -[left]: (6, 7) -[right]: (5, 7)",failed -12464,tests.integ.modin.groupby.test_groupby_dataframe_cumulative,test_groupby_cumulative[True-True-True-False-cummin-DARKSEID],"AssertionError: DataFrame are different - -DataFrame shape mismatch -[left]: (5, 6) -[right]: (5, 4)",failed -12466,tests.integ.modin.groupby.test_groupby_apply,test_df_with_single_level_labels[with_unique_index-group_keys_True-transform_that_changes_columns-as_index_False-by_string_col_1-include_groups_False],"AssertionError: MultiIndex level [1] are different - -Attribute ""names"" are different -[left]: [None] -[right]: ['index']",failed -12467,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col4-row8],KeyError: 'mark vi',failed -12468,tests.integ.modin.groupby.test_groupby_dataframe_cumulative,test_groupby_cumulative[True-True-True-False-cummax-LEXLUTHOR],"AssertionError: DataFrame are different - -DataFrame shape mismatch -[left]: (5, 6) -[right]: (5, 4)",failed -12470,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice[True--1-4--1],"AssertionError: DataFrame are different - -DataFrame shape mismatch -[left]: (6, 7) -[right]: (5, 7)",failed -12471,tests.integ.modin.groupby.test_groupby_dataframe_cumulative,test_groupby_cumulative[True-True-True-False-cummax-by1],"AssertionError: DataFrame are different - -DataFrame shape mismatch -[left]: (5, 5) -[right]: (5, 3)",failed -12473,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[string_col_1-include_groups_False-dropna_True-sort_True-group_keys_False-transform_returns_dataframe],TypeError: must pass an index to rename,failed -12474,tests.integ.modin.groupby.test_groupby_dataframe_cumulative,test_groupby_cumulative[True-True-True-False-cummax-DARKSEID],"AssertionError: DataFrame are different - -DataFrame shape mismatch -[left]: (5, 6) -[right]: (5, 4)",failed -12480,tests.integ.modin.groupby.test_groupby_apply,test_df_with_single_level_labels[with_unique_index-group_keys_True-duplicate_df_rowwise-as_index_True-by_index-include_groups_True],KeyError: 'index',failed -12481,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[string_col_1-include_groups_False-dropna_True-sort_True-group_keys_False-non_transform_returns_series],"AssertionError: Series are different +10304,tests.integ.modin.test_cut,test_cut_with_labels[True-3-True-False-data1-4-labels1],categorical not supported in Snowpark pandas API,xfailed +10305,tests.integ.modin.test_cut,test_cut_with_labels[True-3-False-True-data0-cuts0-labels0],categorical not supported in Snowpark pandas API,xfailed +10308,tests.integ.modin.test_cut,test_cut_with_labels[True-3-False-True-data1-4-labels1],categorical not supported in Snowpark pandas API,xfailed +10311,tests.integ.modin.test_cut,test_cut_with_labels[True-3-False-False-data0-cuts0-labels0],categorical not supported in Snowpark pandas API,xfailed +10313,tests.integ.modin.frame.test_sort_values,test_sort_values_multiple_by[by1],KeyError: 'ind',failed +10315,tests.integ.modin.test_cut,test_cut_with_labels[True-3-False-False-data1-4-labels1],categorical not supported in Snowpark pandas API,xfailed +10317,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[string_col_1-include_groups_True-dropna_True-sort_False-group_keys_False-non_transform_returns_dataframe],AssertionError,failed +10319,tests.integ.modin.test_cut,test_cut_with_labels[True-8-True-True-data0-cuts0-labels0],categorical not supported in Snowpark pandas API,xfailed +10322,tests.integ.modin.binary.test_binary_op,test_binary_arithmetic_ops_with_non_scalar_fill_value_negative[fill_value1-pow],"AssertionError: Regex pattern did not match. + Regex: 'Only scalars can be used as fill_value.' + Input: 'NumPy boolean array indexing assignment cannot assign 0 input values to the 1 output values where the mask is true'",failed +10323,tests.integ.modin.test_cut,test_cut_with_labels[True-8-True-True-data1-4-labels1],categorical not supported in Snowpark pandas API,xfailed +10324,tests.integ.modin.frame.test_sort_values,test_sort_values_axis_1[0],Failed: DID NOT RAISE ,failed +10325,tests.integ.modin.test_cut,test_cut_with_labels[True-8-True-False-data0-cuts0-labels0],categorical not supported in Snowpark pandas API,xfailed +10326,tests.integ.modin.frame.test_sort_values,test_sort_values_axis_1[1],Failed: DID NOT RAISE ,failed +10328,tests.integ.modin.frame.test_sort_values,test_sort_values_axis_1[2],Failed: DID NOT RAISE ,failed +10329,tests.integ.modin.test_cut,test_cut_with_labels[True-8-True-False-data1-4-labels1],categorical not supported in Snowpark pandas API,xfailed +10330,tests.integ.modin.frame.test_sort_values,test_sort_values_axis_1[3],Failed: DID NOT RAISE ,failed +10331,tests.integ.modin.test_cut,test_cut_with_labels[True-8-False-True-data0-cuts0-labels0],categorical not supported in Snowpark pandas API,xfailed +10333,tests.integ.modin.frame.test_sort_values,test_sort_values_axis_1[4],Failed: DID NOT RAISE ,failed +10334,tests.integ.modin.test_cut,test_cut_with_labels[True-8-False-True-data1-4-labels1],categorical not supported in Snowpark pandas API,xfailed +10335,tests.integ.modin.frame.test_sort_values,test_sort_values_axis_1_inplace[0],Failed: DID NOT RAISE ,failed +10337,tests.integ.modin.test_cut,test_cut_with_labels[True-8-False-False-data0-cuts0-labels0],categorical not supported in Snowpark pandas API,xfailed +10338,tests.integ.modin.frame.test_sort_values,test_sort_values_axis_1_inplace[1],Failed: DID NOT RAISE ,failed +10340,tests.integ.modin.binary.test_binary_op,test_binary_arithmetic_ops_with_non_scalar_fill_value_negative[fill_value1-rpow],"AssertionError: Regex pattern did not match. + Regex: 'Only scalars can be used as fill_value.' + Input: 'NumPy boolean array indexing assignment cannot assign 0 input values to the 1 output values where the mask is true'",failed +10341,tests.integ.modin.test_cut,test_cut_with_labels[True-8-False-False-data1-4-labels1],categorical not supported in Snowpark pandas API,xfailed +10342,tests.integ.modin.frame.test_sort_values,test_sort_values_axis_1_inplace[2],Failed: DID NOT RAISE ,failed +10344,tests.integ.modin.test_cut,test_cut_with_labels[False-3-True-True-data0-cuts0-labels0],categorical not supported in Snowpark pandas API,xfailed +10345,tests.integ.modin.binary.test_binary_op,test_binary_arithmetic_ops_with_single_element_list_like_fill_value_negative[add],Failed: DID NOT RAISE ,failed +10346,tests.integ.modin.frame.test_sort_values,test_sort_values_axis_1_inplace[3],Failed: DID NOT RAISE ,failed +10347,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[string_col_1-include_groups_True-dropna_True-sort_False-group_keys_False-transform_returns_dataframe],TypeError: must pass an index to rename,failed +10348,tests.integ.modin.test_cut,test_cut_with_labels[False-3-True-True-data1-4-labels1],categorical not supported in Snowpark pandas API,xfailed +10349,tests.integ.modin.frame.test_sort_values,test_sort_values_axis_1_inplace[4],Failed: DID NOT RAISE ,failed +10350,tests.integ.modin.binary.test_binary_op,test_binary_arithmetic_ops_with_single_element_list_like_fill_value_negative[radd],Failed: DID NOT RAISE ,failed +10353,tests.integ.modin.test_cut,test_cut_with_labels[False-3-True-False-data0-cuts0-labels0],categorical not supported in Snowpark pandas API,xfailed +10355,tests.integ.modin.test_cut,test_cut_with_labels[False-3-True-False-data1-4-labels1],categorical not supported in Snowpark pandas API,xfailed +10356,tests.integ.modin.binary.test_binary_op,test_binary_arithmetic_ops_with_single_element_list_like_fill_value_negative[sub],Failed: DID NOT RAISE ,failed +10358,tests.integ.modin.test_cut,test_cut_with_labels[False-3-False-True-data0-cuts0-labels0],categorical not supported in Snowpark pandas API,xfailed +10361,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[string_col_1-include_groups_True-dropna_True-sort_False-group_keys_False-non_transform_returns_series],"AssertionError: Series are different Series length are different [left]: 3, Index(['sum', 'mean', 'name'], dtype='object', name='custom_metrics') [right]: 6, Index(['sum', 'mean', 'name', 'sum', 'mean', 'name'], dtype='object')",failed -12482,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col4-row9],KeyError: 'fizz2',failed -12483,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice[True--1-4-1],"AssertionError: DataFrame are different - -DataFrame shape mismatch -[left]: (5, 7) -[right]: (4, 7)",failed -12487,tests.integ.modin.groupby.test_groupby_dataframe_cumulative,test_groupby_cumulative[True-True-False-True-cummin-LEXLUTHOR],"AssertionError: DataFrame are different - -DataFrame shape mismatch -[left]: (5, 6) -[right]: (5, 4)",failed -12488,tests.integ.modin.frame.test_astype,test_astype_from_timestamp_ltz[to_dtype22],"TypeError: int() argument must be a string, a bytes-like object or a real number, not 'Timestamp'",failed -12489,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[string_col_1-include_groups_False-dropna_True-sort_True-group_keys_False-transform_returns_series],"AssertionError: Series.index are different +10362,tests.integ.modin.binary.test_binary_op,test_binary_arithmetic_ops_with_single_element_list_like_fill_value_negative[rsub],Failed: DID NOT RAISE ,failed +10363,tests.integ.modin.test_cut,test_cut_with_labels[False-3-False-True-data1-4-labels1],categorical not supported in Snowpark pandas API,xfailed +10367,tests.integ.modin.test_cut,test_cut_with_labels[False-3-False-False-data0-cuts0-labels0],categorical not supported in Snowpark pandas API,xfailed +10368,tests.integ.modin.frame.test_loc,test_df_loc_set_key_slice[True--2-4-4],ValueError: Incompatible indexer with DataFrame,failed +10370,tests.integ.modin.binary.test_binary_op,test_binary_arithmetic_ops_with_single_element_list_like_fill_value_negative[mul],Failed: DID NOT RAISE ,failed +10371,tests.integ.modin.test_cut,test_cut_with_labels[False-3-False-False-data1-4-labels1],categorical not supported in Snowpark pandas API,xfailed +10373,tests.integ.modin.frame.test_iloc,test_df_iloc_get_key_numeric[col-series-key4],IndexError: index 8 is out of bounds for axis 0 with size 7,failed +10374,tests.integ.modin.test_cut,test_cut_with_labels[False-8-True-True-data0-cuts0-labels0],categorical not supported in Snowpark pandas API,xfailed +10377,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[string_col_1-include_groups_True-dropna_True-sort_False-group_keys_False-transform_returns_series],"AssertionError: Series.index are different Attribute ""names"" are different [left]: [None] [right]: ['index']",failed -12491,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice[True--1-4-4],"AssertionError: DataFrame are different - -DataFrame shape mismatch -[left]: (2, 7) -[right]: (1, 7)",failed -12492,tests.integ.modin.groupby.test_groupby_dataframe_cumulative,test_groupby_cumulative[True-True-False-True-cummin-by1],"AssertionError: DataFrame are different - -DataFrame shape mismatch -[left]: (5, 5) -[right]: (5, 3)",failed -12494,tests.integ.modin.groupby.test_groupby_apply,test_df_with_single_level_labels[with_unique_index-group_keys_True-duplicate_df_rowwise-as_index_True-by_index-include_groups_False],KeyError: 'index',failed -12497,tests.integ.modin.groupby.test_groupby_dataframe_cumulative,test_groupby_cumulative[True-True-False-True-cummin-DARKSEID],"AssertionError: DataFrame are different - -DataFrame shape mismatch -[left]: (5, 6) -[right]: (5, 4)",failed -12498,tests.integ.modin.frame.test_loc,test_df_loc_get_with_timedelta_and_none_key,SNOW-1653219 None key does not work with timedelta index,xfailed -12501,tests.integ.modin.groupby.test_groupby_dataframe_cumulative,test_groupby_cumulative[True-True-False-True-cummax-LEXLUTHOR],"AssertionError: DataFrame are different - -DataFrame shape mismatch -[left]: (5, 6) -[right]: (5, 4)",failed -12502,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[string_col_1-include_groups_False-dropna_True-sort_True-group_keys_False-return_scalar],"AssertionError: Series are different +10378,tests.integ.modin.binary.test_binary_op,test_binary_arithmetic_ops_with_single_element_list_like_fill_value_negative[rmul],Failed: DID NOT RAISE ,failed +10379,tests.integ.modin.test_cut,test_cut_with_labels[False-8-True-True-data1-4-labels1],categorical not supported in Snowpark pandas API,xfailed +10383,tests.integ.modin.test_cut,test_cut_with_labels[False-8-True-False-data0-cuts0-labels0],categorical not supported in Snowpark pandas API,xfailed +10384,tests.integ.modin.binary.test_binary_op,test_binary_arithmetic_ops_with_single_element_list_like_fill_value_negative[truediv],Failed: DID NOT RAISE ,failed +10386,tests.integ.modin.test_cut,test_cut_with_labels[False-8-True-False-data1-4-labels1],categorical not supported in Snowpark pandas API,xfailed +10387,tests.integ.modin.frame.test_iloc,test_df_iloc_get_key_numeric[col-series-key5],"ValueError: +Location based indexing can only have [integer, integer slice (START point is +INCLUDED, END point is EXCLUDED), listlike of integers, boolean array] types.",failed +10390,tests.integ.modin.test_cut,test_cut_with_labels[False-8-False-True-data0-cuts0-labels0],categorical not supported in Snowpark pandas API,xfailed +10391,tests.integ.modin.binary.test_binary_op,test_binary_arithmetic_ops_with_single_element_list_like_fill_value_negative[rtruediv],Failed: DID NOT RAISE ,failed +10393,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[string_col_1-include_groups_True-dropna_True-sort_False-group_keys_False-return_scalar],"AssertionError: Series are different Series values are different (100.0 %) [index]: [k0, k1] @@ -6792,121 +5432,51 @@ int_col 44 dtype: int64_x int_col 14.666667 dtype: float64_k0 != 44_14.666666666666666_k0",failed -12505,tests.integ.modin.groupby.test_groupby_dataframe_cumulative,test_groupby_cumulative[True-True-False-True-cummax-by1],"AssertionError: DataFrame are different - -DataFrame shape mismatch -[left]: (5, 5) -[right]: (5, 3)",failed -12507,tests.integ.modin.groupby.test_groupby_apply,test_df_with_single_level_labels[with_unique_index-group_keys_True-duplicate_df_rowwise-as_index_True-by_string_col_1-include_groups_True],"AssertionError: MultiIndex level [1] are different - -Attribute ""names"" are different -[left]: [None] -[right]: ['index']",failed -12510,tests.integ.modin.groupby.test_groupby_dataframe_cumulative,test_groupby_cumulative[True-True-False-True-cummax-DARKSEID],"AssertionError: DataFrame are different - -DataFrame shape mismatch -[left]: (5, 6) -[right]: (5, 4)",failed -12512,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col4-row10],KeyError: 'fizz2',failed -12514,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[string_col_1-include_groups_False-dropna_True-sort_False-group_keys_True-non_transform_returns_dataframe],AssertionError,failed -12517,tests.integ.modin.groupby.test_groupby_apply,test_df_with_single_level_labels[with_unique_index-group_keys_True-duplicate_df_rowwise-as_index_True-by_string_col_1-include_groups_False],"AssertionError: MultiIndex level [1] are different - -Attribute ""names"" are different -[left]: [None] -[right]: ['index']",failed -12525,tests.integ.modin.frame.test_set_index,test_set_index_pass_arrays_duplicate[False-False-frame_of_ints-Index-Index],"TypeError: The parameter ""keys"" may be a column key, one-dimensional array, or a list containing only valid column keys and one-dimensional arrays. Received column of type ",failed -12527,tests.integ.modin.groupby.test_groupby_dataframe_cumulative,test_groupby_cumulative[True-True-False-False-cummin-LEXLUTHOR],"AssertionError: DataFrame are different - -DataFrame shape mismatch -[left]: (5, 6) -[right]: (5, 4)",failed -12529,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col4-row11],KeyError: 'fizz2',failed -12531,tests.integ.modin.groupby.test_groupby_dataframe_cumulative,test_groupby_cumulative[True-True-False-False-cummin-by1],"AssertionError: DataFrame are different - -DataFrame shape mismatch -[left]: (5, 5) -[right]: (5, 3)",failed -12532,tests.integ.modin.groupby.test_groupby_apply,test_df_with_single_level_labels[with_unique_index-group_keys_True-duplicate_df_rowwise-as_index_False-by_index-include_groups_True],KeyError: 'index',failed -12535,tests.integ.modin.groupby.test_groupby_dataframe_cumulative,test_groupby_cumulative[True-True-False-False-cummin-DARKSEID],"AssertionError: DataFrame are different - -DataFrame shape mismatch -[left]: (5, 6) -[right]: (5, 4)",failed -12538,tests.integ.modin.groupby.test_groupby_dataframe_cumulative,test_groupby_cumulative[True-True-False-False-cummax-LEXLUTHOR],"AssertionError: DataFrame are different - -DataFrame shape mismatch -[left]: (5, 6) -[right]: (5, 4)",failed -12542,tests.integ.modin.frame.test_loc,test_df_loc_full_set_row_from_series_pandas_errors_default_columns[index0-expected_result0],"ValueError: could not broadcast input array from shape (2,) into shape (2, 3)",failed -12544,tests.integ.modin.groupby.test_groupby_apply,test_df_with_single_level_labels[with_unique_index-group_keys_True-duplicate_df_rowwise-as_index_False-by_index-include_groups_False],KeyError: 'index',failed -12545,tests.integ.modin.groupby.test_groupby_dataframe_cumulative,test_groupby_cumulative[True-True-False-False-cummax-by1],"AssertionError: DataFrame are different - -DataFrame shape mismatch -[left]: (5, 5) -[right]: (5, 3)",failed -12547,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col4-row12],KeyError: 'fizz2',failed -12551,tests.integ.modin.groupby.test_groupby_apply,test_df_with_single_level_labels[with_unique_index-group_keys_True-duplicate_df_rowwise-as_index_False-by_string_col_1-include_groups_True],"AssertionError: MultiIndex level [1] are different - -Attribute ""names"" are different -[left]: [None] -[right]: ['index']",failed -12552,tests.integ.modin.groupby.test_groupby_dataframe_cumulative,test_groupby_cumulative[True-True-False-False-cummax-DARKSEID],"AssertionError: DataFrame are different - -DataFrame shape mismatch -[left]: (5, 6) -[right]: (5, 4)",failed -12561,tests.integ.modin.groupby.test_groupby_apply,test_df_with_single_level_labels[with_unique_index-group_keys_True-duplicate_df_rowwise-as_index_False-by_string_col_1-include_groups_False],"AssertionError: MultiIndex level [1] are different - -Attribute ""names"" are different -[left]: [None] -[right]: ['index']",failed -12562,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[string_col_1-include_groups_False-dropna_True-sort_False-group_keys_True-transform_returns_dataframe],TypeError: must pass an index to rename,failed -12564,tests.integ.modin.frame.test_astype,test_astype_from_timestamp_ltz[to_dtype23],"TypeError: int() argument must be a string, a bytes-like object or a real number, not 'Timestamp'",failed -12569,tests.integ.modin.groupby.test_groupby_dataframe_cumulative,test_groupby_cumulative[True-False-True-True-cummin-LEXLUTHOR],"AssertionError: DataFrame are different - -DataFrame shape mismatch -[left]: (5, 6) -[right]: (5, 4)",failed -12571,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[string_col_1-include_groups_False-dropna_True-sort_False-group_keys_True-non_transform_returns_series],"AssertionError: Series are different +10394,tests.integ.modin.test_cut,test_cut_with_labels[False-8-False-True-data1-4-labels1],categorical not supported in Snowpark pandas API,xfailed +10397,tests.integ.modin.test_cut,test_cut_with_labels[False-8-False-False-data0-cuts0-labels0],categorical not supported in Snowpark pandas API,xfailed +10399,tests.integ.modin.frame.test_iloc,test_df_iloc_get_key_numeric[col-series-key6],"ValueError: +Location based indexing can only have [integer, integer slice (START point is +INCLUDED, END point is EXCLUDED), listlike of integers, boolean array] types.",failed +10400,tests.integ.modin.binary.test_binary_op,test_binary_arithmetic_ops_with_single_element_list_like_fill_value_negative[floordiv],Failed: DID NOT RAISE ,failed +10402,tests.integ.modin.test_cut,test_cut_with_labels[False-8-False-False-data1-4-labels1],categorical not supported in Snowpark pandas API,xfailed +10403,tests.integ.modin.frame.test_set_index,test_set_index_timedelta_index[frame_of_ints],"TypeError: The parameter ""keys"" may be a column key, one-dimensional array, or a list containing only valid column keys and one-dimensional arrays. Received column of type ",failed +10405,tests.integ.modin.binary.test_binary_op,test_binary_arithmetic_ops_with_single_element_list_like_fill_value_negative[rfloordiv],Failed: DID NOT RAISE ,failed +10408,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[string_col_1-include_groups_True-dropna_False-sort_True-group_keys_True-non_transform_returns_dataframe],AssertionError,failed +10413,tests.integ.modin.binary.test_binary_op,test_binary_arithmetic_ops_with_single_element_list_like_fill_value_negative[mod],Failed: DID NOT RAISE ,failed +10414,tests.integ.modin.test_cut,test_cut_retbins_negative,Failed: DID NOT RAISE ,failed +10416,tests.integ.modin.test_cut,test_cut_labels_none_negative,Failed: DID NOT RAISE ,failed +10417,tests.integ.modin.binary.test_binary_op,test_binary_arithmetic_ops_with_single_element_list_like_fill_value_negative[rmod],Failed: DID NOT RAISE ,failed +10426,tests.integ.modin.binary.test_binary_op,test_binary_arithmetic_ops_with_single_element_list_like_fill_value_negative[pow],Failed: DID NOT RAISE ,failed +10429,tests.integ.modin.binary.test_binary_op,test_binary_arithmetic_ops_with_single_element_list_like_fill_value_negative[rpow],Failed: DID NOT RAISE ,failed +10431,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[string_col_1-include_groups_True-dropna_False-sort_True-group_keys_True-transform_returns_dataframe],TypeError: must pass an index to rename,failed +10432,tests.integ.modin.frame.test_sort_values,test_sort_values_invalid_kind_negative,Failed: DID NOT RAISE ,failed +10434,tests.integ.modin.frame.test_loc,test_df_loc_set_key_slice[True--2-10-4],ValueError: Incompatible indexer with DataFrame,failed +10443,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[string_col_1-include_groups_True-dropna_False-sort_True-group_keys_True-non_transform_returns_series],"AssertionError: Series are different Series length are different [left]: 3, Index(['sum', 'mean', 'name'], dtype='object', name='custom_metrics') -[right]: 6, MultiIndex([('k0', 'sum'), +[right]: 9, MultiIndex([('k0', 'sum'), ('k0', 'mean'), ('k0', 'name'), ('k1', 'sum'), ('k1', 'mean'), - ('k1', 'name')], + ('k1', 'name'), + ( nan, 'sum'), + ( nan, 'mean'), + ( nan, 'name')], names=['string_col_1', None])",failed -12573,tests.integ.modin.groupby.test_groupby_apply,test_df_with_single_level_labels[with_unique_index-group_keys_False-transform_that_changes_columns-as_index_True-by_index-include_groups_True],KeyError: 'index',failed -12574,tests.integ.modin.frame.test_loc,test_df_loc_full_set_row_from_series_pandas_errors_default_columns[index1-expected_result1],"ValueError: could not broadcast input array from shape (2,) into shape (2, 3)",failed -12576,tests.integ.modin.groupby.test_groupby_dataframe_cumulative,test_groupby_cumulative[True-False-True-True-cummin-by1],"AssertionError: DataFrame are different - -DataFrame shape mismatch -[left]: (5, 5) -[right]: (5, 3)",failed -12579,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[string_col_1-include_groups_False-dropna_True-sort_False-group_keys_True-transform_returns_series],"AssertionError: MultiIndex level [1] are different +10446,tests.integ.modin.frame.test_sort_values,test_sort_values_key[0],Failed: DID NOT RAISE ,failed +10449,tests.integ.modin.frame.test_sort_values,test_sort_values_key[1],Failed: DID NOT RAISE ,failed +10456,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[string_col_1-include_groups_True-dropna_False-sort_True-group_keys_True-transform_returns_series],"AssertionError: MultiIndex level [1] are different Attribute ""names"" are different [left]: [None] [right]: ['index']",failed -12582,tests.integ.modin.groupby.test_groupby_dataframe_cumulative,test_groupby_cumulative[True-False-True-True-cummin-DARKSEID],"AssertionError: DataFrame are different - -DataFrame shape mismatch -[left]: (5, 6) -[right]: (5, 4)",failed -12585,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col4-row13],KeyError: 'fizz2',failed -12586,tests.integ.modin.groupby.test_groupby_apply,test_df_with_single_level_labels[with_unique_index-group_keys_False-transform_that_changes_columns-as_index_True-by_index-include_groups_False],KeyError: 'index',failed -12589,tests.integ.modin.frame.test_loc,test_df_loc_full_set_row_from_series_pandas_errors_string_columns[series_index0],"ValueError: could not broadcast input array from shape (2,) into shape (2, 3)",failed -12590,tests.integ.modin.groupby.test_groupby_dataframe_cumulative,test_groupby_cumulative[True-False-True-True-cummax-LEXLUTHOR],"AssertionError: DataFrame are different - -DataFrame shape mismatch -[left]: (5, 6) -[right]: (5, 4)",failed -12593,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[string_col_1-include_groups_False-dropna_True-sort_False-group_keys_True-return_scalar],"AssertionError: Series are different +10460,tests.integ.modin.frame.test_loc,test_df_loc_set_key_slice[True-9-None-None],ValueError: Incompatible indexer with DataFrame,failed +10471,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[string_col_1-include_groups_True-dropna_False-sort_True-group_keys_True-return_scalar],"AssertionError: Series are different Series values are different (100.0 %) -[index]: [k0, k1] +[index]: [k0, k1, nan] [left]: [x int_col 44 dtype: int64_x @@ -6915,134 +5485,41 @@ dtype: float64_k0, x int_col 14 dtype: int64_x int_col 14.0 -dtype: float64_k1] -[right]: [44_14.666666666666666_k0, 14_14.0_k1] +dtype: float64_k1, x +int_col 17 +dtype: int64_x +int_col 17.0 +dtype: float64_None] +[right]: [44_14.666666666666666_k0, 14_14.0_k1, 17_17.0_None] At positional index 0, first diff: x int_col 44 dtype: int64_x int_col 14.666667 dtype: float64_k0 != 44_14.666666666666666_k0",failed -12594,tests.integ.modin.groupby.test_groupby_dataframe_cumulative,test_groupby_cumulative[True-False-True-True-cummax-by1],"AssertionError: DataFrame are different - -DataFrame shape mismatch -[left]: (5, 5) -[right]: (5, 3)",failed -12595,tests.integ.modin.groupby.test_groupby_apply,test_df_with_single_level_labels[with_unique_index-group_keys_False-transform_that_changes_columns-as_index_True-by_string_col_1-include_groups_True],"AssertionError: DataFrame.index are different - -Attribute ""names"" are different -[left]: [None] -[right]: ['index']",failed -12598,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice[True-2-1-None],"AssertionError: DataFrame are different - -DataFrame shape mismatch -[left]: (4, 7) -[right]: (3, 7)",failed -12600,tests.integ.modin.groupby.test_groupby_dataframe_cumulative,test_groupby_cumulative[True-False-True-True-cummax-DARKSEID],"AssertionError: DataFrame are different - -DataFrame shape mismatch -[left]: (5, 6) -[right]: (5, 4)",failed -12601,tests.integ.modin.frame.test_loc,test_df_loc_full_set_row_from_series_pandas_errors_string_columns[series_index1],"ValueError: could not broadcast input array from shape (2,) into shape (2, 3)",failed -12605,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col4-row14],KeyError: 'fizz2',failed -12607,tests.integ.modin.groupby.test_groupby_apply,test_df_with_single_level_labels[with_unique_index-group_keys_False-transform_that_changes_columns-as_index_True-by_string_col_1-include_groups_False],"AssertionError: DataFrame.index are different - -Attribute ""names"" are different -[left]: [None] -[right]: ['index']",failed -12609,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[string_col_1-include_groups_False-dropna_True-sort_False-group_keys_False-non_transform_returns_dataframe],AssertionError,failed -12619,tests.integ.modin.groupby.test_groupby_dataframe_cumulative,test_groupby_cumulative[True-False-True-False-cummin-LEXLUTHOR],"AssertionError: DataFrame are different - -DataFrame shape mismatch -[left]: (5, 6) -[right]: (5, 4)",failed -12621,tests.integ.modin.frame.test_loc,test_df_loc_set_series_value[None-True-key0],"ValueError: could not broadcast input array from shape (2,) into shape (2, 3)",failed -12622,tests.integ.modin.groupby.test_groupby_apply,test_df_with_single_level_labels[with_unique_index-group_keys_False-transform_that_changes_columns-as_index_False-by_index-include_groups_True],KeyError: 'index',failed -12623,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice[True-2-1-4],"AssertionError: DataFrame are different - -DataFrame shape mismatch -[left]: (3, 7) -[right]: (2, 7)",failed -12624,tests.integ.modin.groupby.test_groupby_dataframe_cumulative,test_groupby_cumulative[True-False-True-False-cummin-by1],"AssertionError: DataFrame are different - -DataFrame shape mismatch -[left]: (5, 5) -[right]: (5, 3)",failed -12629,tests.integ.modin.groupby.test_groupby_dataframe_cumulative,test_groupby_cumulative[True-False-True-False-cummin-DARKSEID],"AssertionError: DataFrame are different - -DataFrame shape mismatch -[left]: (5, 6) -[right]: (5, 4)",failed -12630,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col5-mark i],KeyError: 'buzz1',failed -12633,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[string_col_1-include_groups_False-dropna_True-sort_False-group_keys_False-transform_returns_dataframe],TypeError: must pass an index to rename,failed -12634,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice[True-2-1-10],"AssertionError: DataFrame are different - -DataFrame shape mismatch -[left]: (4, 7) -[right]: (3, 7)",failed -12635,tests.integ.modin.groupby.test_groupby_dataframe_cumulative,test_groupby_cumulative[True-False-True-False-cummax-LEXLUTHOR],"AssertionError: DataFrame are different - -DataFrame shape mismatch -[left]: (5, 6) -[right]: (5, 4)",failed -12638,tests.integ.modin.frame.test_loc,test_df_loc_set_series_value[None-True-key1],"ValueError: could not broadcast input array from shape (2,) into shape (2, 3)",failed -12640,tests.integ.modin.groupby.test_groupby_apply,test_df_with_single_level_labels[with_unique_index-group_keys_False-transform_that_changes_columns-as_index_False-by_index-include_groups_False],KeyError: 'index',failed -12641,tests.integ.modin.groupby.test_groupby_dataframe_cumulative,test_groupby_cumulative[True-False-True-False-cummax-by1],"AssertionError: DataFrame are different - -DataFrame shape mismatch -[left]: (5, 5) -[right]: (5, 3)",failed -12643,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice[True-2-4-None],"AssertionError: DataFrame are different - -DataFrame shape mismatch -[left]: (3, 7) -[right]: (2, 7)",failed -12644,tests.integ.modin.groupby.test_groupby_dataframe_cumulative,test_groupby_cumulative[True-False-True-False-cummax-DARKSEID],"AssertionError: DataFrame are different - -DataFrame shape mismatch -[left]: (5, 6) -[right]: (5, 4)",failed -12648,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[string_col_1-include_groups_False-dropna_True-sort_False-group_keys_False-non_transform_returns_series],"AssertionError: Series are different +10479,tests.integ.modin.frame.test_loc,test_df_loc_set_key_slice[True-9-None-1],ValueError: Incompatible indexer with DataFrame,failed +10484,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[string_col_1-include_groups_True-dropna_False-sort_True-group_keys_False-non_transform_returns_dataframe],AssertionError,failed +10491,tests.integ.modin.frame.test_loc,test_df_loc_set_key_slice[True-9-None-4],ValueError: Incompatible indexer with DataFrame,failed +10499,tests.integ.modin.frame.test_set_index,test_set_index_timedelta_index[frame_of_ints_and_timedelta],"TypeError: The parameter ""keys"" may be a column key, one-dimensional array, or a list containing only valid column keys and one-dimensional arrays. Received column of type ",failed +10502,tests.integ.modin.frame.test_loc,test_df_loc_set_key_slice[True-9-None-10],ValueError: Incompatible indexer with DataFrame,failed +10513,tests.integ.modin.frame.test_loc,test_df_loc_set_key_slice[True-9--1-None],ValueError: Incompatible indexer with DataFrame,failed +10520,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[string_col_1-include_groups_True-dropna_False-sort_True-group_keys_False-transform_returns_dataframe],TypeError: must pass an index to rename,failed +10523,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[string_col_1-include_groups_True-dropna_False-sort_True-group_keys_False-non_transform_returns_series],"AssertionError: Series are different Series length are different [left]: 3, Index(['sum', 'mean', 'name'], dtype='object', name='custom_metrics') -[right]: 6, Index(['sum', 'mean', 'name', 'sum', 'mean', 'name'], dtype='object')",failed -12650,tests.integ.modin.frame.test_loc,test_df_loc_set_series_value[None-False-key0],"ValueError: could not broadcast input array from shape (2,) into shape (2, 3)",failed -12651,tests.integ.modin.groupby.test_groupby_apply,test_df_with_single_level_labels[with_unique_index-group_keys_False-transform_that_changes_columns-as_index_False-by_string_col_1-include_groups_True],"AssertionError: DataFrame.index are different - -Attribute ""names"" are different -[left]: [None] -[right]: ['index']",failed -12656,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col5-row1],KeyError: 'buzz1',failed -12662,tests.integ.modin.groupby.test_groupby_dataframe_cumulative,test_groupby_cumulative[True-False-False-True-cummin-LEXLUTHOR],"AssertionError: DataFrame are different - -DataFrame shape mismatch -[left]: (5, 6) -[right]: (5, 4)",failed -12663,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[string_col_1-include_groups_False-dropna_True-sort_False-group_keys_False-transform_returns_series],"AssertionError: Series.index are different +[right]: 9, Index(['sum', 'mean', 'name', 'sum', 'mean', 'name', 'sum', 'mean', 'name'], dtype='object')",failed +10527,tests.integ.modin.frame.test_loc,test_df_loc_set_key_slice[True-9--1-1],ValueError: Incompatible indexer with DataFrame,failed +10533,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[string_col_1-include_groups_True-dropna_False-sort_True-group_keys_False-transform_returns_series],"AssertionError: Series.index are different Attribute ""names"" are different [left]: [None] [right]: ['index']",failed -12665,tests.integ.modin.frame.test_loc,test_df_loc_set_series_value[None-False-key1],"ValueError: could not broadcast input array from shape (2,) into shape (2, 3)",failed -12667,tests.integ.modin.groupby.test_groupby_dataframe_cumulative,test_groupby_cumulative[True-False-False-True-cummin-by1],"AssertionError: DataFrame are different - -DataFrame shape mismatch -[left]: (5, 5) -[right]: (5, 3)",failed -12668,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice[True-2-4-4],"AssertionError: DataFrame are different - -DataFrame shape mismatch -[left]: (2, 7) -[right]: (1, 7)",failed -12672,tests.integ.modin.groupby.test_groupby_dataframe_cumulative,test_groupby_cumulative[True-False-False-True-cummin-DARKSEID],"AssertionError: DataFrame are different - -DataFrame shape mismatch -[left]: (5, 6) -[right]: (5, 4)",failed -12674,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[string_col_1-include_groups_False-dropna_True-sort_False-group_keys_False-return_scalar],"AssertionError: Series are different +10535,tests.integ.modin.frame.test_loc,test_df_loc_set_key_slice[True-9--1-4],ValueError: Incompatible indexer with DataFrame,failed +10536,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_1[list0-add],"ValueError: Unable to coerce to Series, length must be 3: given 2",failed +10538,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[string_col_1-include_groups_True-dropna_False-sort_True-group_keys_False-return_scalar],"AssertionError: Series are different Series values are different (100.0 %) -[index]: [k0, k1] +[index]: [k0, k1, nan] [left]: [x int_col 44 dtype: int64_x @@ -7051,72 +5528,46 @@ dtype: float64_k0, x int_col 14 dtype: int64_x int_col 14.0 -dtype: float64_k1] -[right]: [44_14.666666666666666_k0, 14_14.0_k1] +dtype: float64_k1, x +int_col 17 +dtype: int64_x +int_col 17.0 +dtype: float64_None] +[right]: [44_14.666666666666666_k0, 14_14.0_k1, 17_17.0_None] At positional index 0, first diff: x int_col 44 dtype: int64_x int_col 14.666667 dtype: float64_k0 != 44_14.666666666666666_k0",failed -12675,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice[True-2-4-10],"AssertionError: DataFrame are different - -DataFrame shape mismatch -[left]: (3, 7) -[right]: (2, 7)",failed -12677,tests.integ.modin.groupby.test_groupby_dataframe_cumulative,test_groupby_cumulative[True-False-False-True-cummax-LEXLUTHOR],"AssertionError: DataFrame are different +10543,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_1[list0-radd],"ValueError: Unable to coerce to Series, length must be 3: given 2",failed +10545,tests.integ.modin.groupby.test_groupby_basic_agg,test_groupby_agg_first_and_last[first-False],"AssertionError: DataFrame.iloc[:, 1] (column name=""('float_col', 'first')"") are different -DataFrame shape mismatch -[left]: (5, 6) -[right]: (5, 4)",failed -12680,tests.integ.modin.frame.test_astype,test_astype_from_timestamp_ltz[to_dtype24],"TypeError: int() argument must be a string, a bytes-like object or a real number, not 'Timestamp'",failed -12682,tests.integ.modin.groupby.test_groupby_dataframe_cumulative,test_groupby_cumulative[True-False-False-True-cummax-by1],"AssertionError: DataFrame are different - -DataFrame shape mismatch -[left]: (5, 5) -[right]: (5, 3)",failed -12683,tests.integ.modin.groupby.test_groupby_apply,test_df_with_single_level_labels[with_unique_index-group_keys_False-transform_that_changes_columns-as_index_False-by_string_col_1-include_groups_False],"AssertionError: DataFrame.index are different - -Attribute ""names"" are different -[left]: [None] -[right]: ['index']",failed -12685,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[string_col_1-include_groups_False-dropna_False-sort_True-group_keys_True-non_transform_returns_dataframe],AssertionError,failed -12686,tests.integ.modin.groupby.test_groupby_dataframe_cumulative,test_groupby_cumulative[True-False-False-True-cummax-DARKSEID],"AssertionError: DataFrame are different - -DataFrame shape mismatch -[left]: (5, 6) -[right]: (5, 4)",failed -12696,tests.integ.modin.groupby.test_groupby_apply,test_df_with_single_level_labels[with_unique_index-group_keys_False-duplicate_df_rowwise-as_index_True-by_index-include_groups_True],KeyError: 'index',failed -12698,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col5-row2],KeyError: 'buzz1',failed -12702,tests.integ.modin.groupby.test_groupby_dataframe_cumulative,test_groupby_cumulative[True-False-False-False-cummin-LEXLUTHOR],"AssertionError: DataFrame are different - -DataFrame shape mismatch -[left]: (5, 6) -[right]: (5, 4)",failed -12703,tests.integ.modin.frame.test_loc,test_df_loc_set_series_value[0-True-key1],"AssertionError: DataFrame.iloc[:, 0] (column name=""A"") are different - -DataFrame.iloc[:, 0] (column name=""A"") values are different (50.0 %) -[index]: [0, 1] -[left]: [1, 4] -[right]: [9, 4]",failed -12708,tests.integ.modin.groupby.test_groupby_dataframe_cumulative,test_groupby_cumulative[True-False-False-False-cummin-by1],"AssertionError: DataFrame are different - -DataFrame shape mismatch -[left]: (5, 5) -[right]: (5, 3)",failed -12709,tests.integ.modin.groupby.test_groupby_apply,test_df_with_single_level_labels[with_unique_index-group_keys_False-duplicate_df_rowwise-as_index_True-by_index-include_groups_False],KeyError: 'index',failed -12710,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[string_col_1-include_groups_False-dropna_False-sort_True-group_keys_True-transform_returns_dataframe],TypeError: must pass an index to rename,failed -12714,tests.integ.modin.groupby.test_groupby_dataframe_cumulative,test_groupby_cumulative[True-False-False-False-cummin-DARKSEID],"AssertionError: DataFrame are different - -DataFrame shape mismatch -[left]: (5, 6) -[right]: (5, 4)",failed -12718,tests.integ.modin.groupby.test_groupby_dataframe_cumulative,test_groupby_cumulative[True-False-False-False-cummax-LEXLUTHOR],"AssertionError: DataFrame are different +DataFrame.iloc[:, 1] (column name=""('float_col', 'first')"") values are different (50.0 %) +[index]: [A, B] +[left]: [2.0, 3.0] +[right]: [nan, 3.0] +At positional index 0, first diff: 2.0 != nan",failed +10547,tests.integ.modin.frame.test_loc,test_df_loc_set_key_slice[True-9--1-10],ValueError: Incompatible indexer with DataFrame,failed +10549,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[string_col_1-include_groups_True-dropna_False-sort_False-group_keys_True-non_transform_returns_dataframe],AssertionError,failed +10552,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_1[list0-sub],"ValueError: Unable to coerce to Series, length must be 3: given 2",failed +10555,tests.integ.modin.groupby.test_groupby_basic_agg,test_groupby_agg_first_and_last[last-False],"AssertionError: DataFrame.iloc[:, 1] (column name=""('float_col', 'last')"") are different -DataFrame shape mismatch -[left]: (5, 6) -[right]: (5, 4)",failed -12721,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col5-row3],KeyError: 'buzz1',failed -12722,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[string_col_1-include_groups_False-dropna_False-sort_True-group_keys_True-non_transform_returns_series],"AssertionError: Series are different +DataFrame.iloc[:, 1] (column name=""('float_col', 'last')"") values are different (50.0 %) +[index]: [A, B] +[left]: [4.0, 3.0] +[right]: [4.0, nan] +At positional index 1, first diff: 3.0 != nan",failed +10563,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_1[list0-rsub],"ValueError: Unable to coerce to Series, length must be 3: given 2",failed +10564,tests.integ.modin.frame.test_loc,test_df_loc_set_key_slice[True-9-1-None],ValueError: Incompatible indexer with DataFrame,failed +10568,tests.integ.modin.frame.test_set_index,test_set_index_different_index_length,"TypeError: The parameter ""keys"" may be a column key, one-dimensional array, or a list containing only valid column keys and one-dimensional arrays. Received column of type ",failed +10574,tests.integ.modin.frame.test_set_index,test_set_index_dup_column_name,"AssertionError: Regex pattern did not match. + Regex: ""The column label 'A' is not unique"" + Input: 'Index data must be 1-dimensional'",failed +10576,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_1[list0-mul],"ValueError: Unable to coerce to Series, length must be 3: given 2",failed +10581,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[string_col_1-include_groups_True-dropna_False-sort_False-group_keys_True-transform_returns_dataframe],TypeError: must pass an index to rename,failed +10584,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_1[list0-rmul],"ValueError: Unable to coerce to Series, length must be 3: given 2",failed +10588,tests.integ.modin.frame.test_loc,test_df_loc_set_key_slice[True-9-1-1],ValueError: Incompatible indexer with DataFrame,failed +10592,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[string_col_1-include_groups_True-dropna_False-sort_False-group_keys_True-non_transform_returns_series],"AssertionError: Series are different Series length are different [left]: 3, Index(['sum', 'mean', 'name'], dtype='object', name='custom_metrics') @@ -7130,41 +5581,17 @@ Series length are different ( nan, 'mean'), ( nan, 'name')], names=['string_col_1', None])",failed -12723,tests.integ.modin.groupby.test_groupby_apply,test_df_with_single_level_labels[with_unique_index-group_keys_False-duplicate_df_rowwise-as_index_True-by_string_col_1-include_groups_True],"AssertionError: DataFrame.index are different - -Attribute ""names"" are different -[left]: [None] -[right]: ['index']",failed -12724,tests.integ.modin.groupby.test_groupby_dataframe_cumulative,test_groupby_cumulative[True-False-False-False-cummax-by1],"AssertionError: DataFrame are different - -DataFrame shape mismatch -[left]: (5, 5) -[right]: (5, 3)",failed -12729,tests.integ.modin.groupby.test_groupby_dataframe_cumulative,test_groupby_cumulative[True-False-False-False-cummax-DARKSEID],"AssertionError: DataFrame are different - -DataFrame shape mismatch -[left]: (5, 6) -[right]: (5, 4)",failed -12733,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col5-row4],"KeyError: ['viper', 'mark i', 'viper']",failed -12734,tests.integ.modin.groupby.test_groupby_apply,test_df_with_single_level_labels[with_unique_index-group_keys_False-duplicate_df_rowwise-as_index_True-by_string_col_1-include_groups_False],"AssertionError: DataFrame.index are different - -Attribute ""names"" are different -[left]: [None] -[right]: ['index']",failed -12737,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[string_col_1-include_groups_False-dropna_False-sort_True-group_keys_True-transform_returns_series],"AssertionError: MultiIndex level [1] are different +10595,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_1[list0-truediv],"ValueError: Unable to coerce to Series, length must be 3: given 2",failed +10602,tests.integ.modin.frame.test_loc,test_df_loc_set_key_slice[True-9-1-4],ValueError: Incompatible indexer with DataFrame,failed +10606,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[string_col_1-include_groups_True-dropna_False-sort_False-group_keys_True-transform_returns_series],"AssertionError: MultiIndex level [1] are different Attribute ""names"" are different [left]: [None] [right]: ['index']",failed -12740,tests.integ.modin.frame.test_loc,test_df_loc_set_series_value_slice_key[None-key0],ValueError: buffer source array is read-only,failed -12742,tests.integ.modin.frame.test_astype,test_astype_from_timestamp_ltz[to_dtype25],AssertionError: assert string[python] == dtype('O'),failed -12744,tests.integ.modin.groupby.test_groupby_apply,test_df_with_single_level_labels[with_unique_index-group_keys_False-duplicate_df_rowwise-as_index_False-by_index-include_groups_True],KeyError: 'index',failed -12745,tests.integ.modin.groupby.test_groupby_dataframe_cumulative,test_groupby_cumulative[False-True-True-True-cummin-LEXLUTHOR],"AssertionError: DataFrame are different - -DataFrame shape mismatch -[left]: (5, 6) -[right]: (5, 4)",failed -12746,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[string_col_1-include_groups_False-dropna_False-sort_True-group_keys_True-return_scalar],"AssertionError: Series are different +10616,tests.integ.modin.frame.test_iloc,test_df_iloc_get_key_numeric[col-index-key1],"ValueError: +Location based indexing can only have [integer, integer slice (START point is +INCLUDED, END point is EXCLUDED), listlike of integers, boolean array] types.",failed +10620,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[string_col_1-include_groups_True-dropna_False-sort_False-group_keys_True-return_scalar],"AssertionError: Series are different Series values are different (100.0 %) [index]: [k0, k1, nan] @@ -7187,137 +5614,37 @@ int_col 44 dtype: int64_x int_col 14.666667 dtype: float64_k0 != 44_14.666666666666666_k0",failed -12748,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice[True--2--1-None],"AssertionError: DataFrame are different - -DataFrame shape mismatch -[left]: (1, 7) -[right]: (0, 7)",failed -12749,tests.integ.modin.groupby.test_groupby_dataframe_cumulative,test_groupby_cumulative[False-True-True-True-cummin-by1],"AssertionError: DataFrame are different - -DataFrame shape mismatch -[left]: (5, 5) -[right]: (5, 3)",failed -12750,tests.integ.modin.frame.test_loc,test_df_loc_set_series_value_slice_key[None-key1],"ValueError: could not broadcast input array from shape (2,) into shape (2, 3)",failed -12752,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col5-row5],KeyError: 'mark vi',failed -12753,tests.integ.modin.groupby.test_groupby_dataframe_cumulative,test_groupby_cumulative[False-True-True-True-cummin-DARKSEID],"AssertionError: DataFrame are different - -DataFrame shape mismatch -[left]: (5, 6) -[right]: (5, 4)",failed -12755,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice[True--2--1--1],"AssertionError: DataFrame are different - -DataFrame shape mismatch -[left]: (1, 7) -[right]: (0, 7)",failed -12756,tests.integ.modin.groupby.test_groupby_apply,test_df_with_single_level_labels[with_unique_index-group_keys_False-duplicate_df_rowwise-as_index_False-by_index-include_groups_False],KeyError: 'index',failed -12758,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[string_col_1-include_groups_False-dropna_False-sort_True-group_keys_False-non_transform_returns_dataframe],AssertionError,failed -12759,tests.integ.modin.groupby.test_groupby_dataframe_cumulative,test_groupby_cumulative[False-True-True-True-cummax-LEXLUTHOR],"AssertionError: DataFrame are different - -DataFrame shape mismatch -[left]: (5, 6) -[right]: (5, 4)",failed -12761,tests.integ.modin.groupby.test_groupby_dataframe_cumulative,test_groupby_cumulative[False-True-True-True-cummax-by1],"AssertionError: DataFrame are different - -DataFrame shape mismatch -[left]: (5, 5) -[right]: (5, 3)",failed -12763,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice[True--2--1-1],"AssertionError: DataFrame are different - -DataFrame shape mismatch -[left]: (1, 7) -[right]: (0, 7)",failed -12764,tests.integ.modin.groupby.test_groupby_apply,test_df_with_single_level_labels[with_unique_index-group_keys_False-duplicate_df_rowwise-as_index_False-by_string_col_1-include_groups_True],"AssertionError: DataFrame.index are different - -Attribute ""names"" are different -[left]: [None] -[right]: ['index']",failed -12765,tests.integ.modin.groupby.test_groupby_dataframe_cumulative,test_groupby_cumulative[False-True-True-True-cummax-DARKSEID],"AssertionError: DataFrame are different - -DataFrame shape mismatch -[left]: (5, 6) -[right]: (5, 4)",failed -12767,tests.integ.modin.frame.test_loc,test_df_loc_set_series_value_slice_key[0-key0],ValueError: buffer source array is read-only,failed -12773,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col5-row6],KeyError: 'mark vi',failed -12778,tests.integ.modin.groupby.test_groupby_apply,test_df_with_single_level_labels[with_unique_index-group_keys_False-duplicate_df_rowwise-as_index_False-by_string_col_1-include_groups_False],"AssertionError: DataFrame.index are different - -Attribute ""names"" are different -[left]: [None] -[right]: ['index']",failed -12780,tests.integ.modin.groupby.test_groupby_dataframe_cumulative,test_groupby_cumulative[False-True-True-False-cummin-LEXLUTHOR],"AssertionError: DataFrame are different - -DataFrame shape mismatch -[left]: (5, 6) -[right]: (5, 4)",failed -12783,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice[True--2-1-None],"AssertionError: DataFrame are different - -DataFrame shape mismatch -[left]: (2, 7) -[right]: (1, 7)",failed -12784,tests.integ.modin.groupby.test_groupby_dataframe_cumulative,test_groupby_cumulative[False-True-True-False-cummin-by1],"AssertionError: DataFrame are different - -DataFrame shape mismatch -[left]: (5, 5) -[right]: (5, 3)",failed -12786,tests.integ.modin.groupby.test_groupby_dataframe_cumulative,test_groupby_cumulative[False-True-True-False-cummin-DARKSEID],"AssertionError: DataFrame are different - -DataFrame shape mismatch -[left]: (5, 6) -[right]: (5, 4)",failed -12789,tests.integ.modin.groupby.test_groupby_dataframe_cumulative,test_groupby_cumulative[False-True-True-False-cummax-LEXLUTHOR],"AssertionError: DataFrame are different - -DataFrame shape mismatch -[left]: (5, 6) -[right]: (5, 4)",failed -12792,tests.integ.modin.groupby.test_groupby_dataframe_cumulative,test_groupby_cumulative[False-True-True-False-cummax-by1],"AssertionError: DataFrame are different - -DataFrame shape mismatch -[left]: (5, 5) -[right]: (5, 3)",failed -12794,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[string_col_1-include_groups_False-dropna_False-sort_True-group_keys_False-transform_returns_dataframe],TypeError: must pass an index to rename,failed -12796,tests.integ.modin.groupby.test_groupby_dataframe_cumulative,test_groupby_cumulative[False-True-True-False-cummax-DARKSEID],"AssertionError: DataFrame are different - -DataFrame shape mismatch -[left]: (5, 6) -[right]: (5, 4)",failed -12800,tests.integ.modin.frame.test_set_index,test_set_index_pass_arrays_duplicate[False-False-frame_of_ints_and_timedelta-Index-Index],"TypeError: The parameter ""keys"" may be a column key, one-dimensional array, or a list containing only valid column keys and one-dimensional arrays. Received column of type ",failed -12801,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col5-row7],KeyError: 'mark vi',failed -12803,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[string_col_1-include_groups_False-dropna_False-sort_True-group_keys_False-non_transform_returns_series],"AssertionError: Series are different +10626,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_1[list0-rtruediv],"ValueError: Unable to coerce to Series, length must be 3: given 2",failed +10634,tests.integ.modin.frame.test_squeeze,test_timedelta_1_by_n_horizontal[0],"[XPASS(strict)] Transpose produces a column with both an int value and a timedelta value, so it can't preserve the timedelta type for the timedelta row.",failed +10635,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_1[list0-floordiv],"ValueError: Unable to coerce to Series, length must be 3: given 2",failed +10636,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[string_col_1-include_groups_True-dropna_False-sort_False-group_keys_False-non_transform_returns_dataframe],AssertionError,failed +10637,tests.integ.modin.frame.test_squeeze,test_timedelta_1_by_n_horizontal[index],"[XPASS(strict)] Transpose produces a column with both an int value and a timedelta value, so it can't preserve the timedelta type for the timedelta row.",failed +10639,tests.integ.modin.frame.test_squeeze,test_timedelta_1_by_n_horizontal[None],"[XPASS(strict)] Transpose produces a column with both an int value and a timedelta value, so it can't preserve the timedelta type for the timedelta row.",failed +10643,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_1[list0-rfloordiv],"ValueError: Unable to coerce to Series, length must be 3: given 2",failed +10644,tests.integ.modin.frame.test_loc,test_df_loc_set_key_slice[True-9-1-10],ValueError: Incompatible indexer with DataFrame,failed +10647,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_1[list0-mod],"ValueError: Unable to coerce to Series, length must be 3: given 2",failed +10650,tests.integ.modin.frame.test_set_index,test_set_index_names[frame_of_ints],"TypeError: The parameter ""keys"" may be a column key, one-dimensional array, or a list containing only valid column keys and one-dimensional arrays. Received column of type ",failed +10653,tests.integ.modin.frame.test_loc,test_df_loc_set_key_slice[True-9-4-None],ValueError: Incompatible indexer with DataFrame,failed +10654,tests.integ.modin.frame.test_iloc,test_df_iloc_get_key_numeric[col-index-key2],"ValueError: +Location based indexing can only have [integer, integer slice (START point is +INCLUDED, END point is EXCLUDED), listlike of integers, boolean array] types.",failed +10656,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_1[list0-rmod],"ValueError: Unable to coerce to Series, length must be 3: given 2",failed +10658,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[string_col_1-include_groups_True-dropna_False-sort_False-group_keys_False-transform_returns_dataframe],TypeError: must pass an index to rename,failed +10663,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_1[list0-pow],"ValueError: Unable to coerce to Series, length must be 3: given 2",failed +10664,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[string_col_1-include_groups_True-dropna_False-sort_False-group_keys_False-non_transform_returns_series],"AssertionError: Series are different Series length are different [left]: 3, Index(['sum', 'mean', 'name'], dtype='object', name='custom_metrics') [right]: 9, Index(['sum', 'mean', 'name', 'sum', 'mean', 'name', 'sum', 'mean', 'name'], dtype='object')",failed -12809,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice[True--2-1--1],"AssertionError: DataFrame are different - -DataFrame shape mismatch -[left]: (2, 7) -[right]: (1, 7)",failed -12814,tests.integ.modin.groupby.test_groupby_dataframe_cumulative,test_groupby_cumulative[False-True-False-True-cummin-LEXLUTHOR],"AssertionError: DataFrame are different - -DataFrame shape mismatch -[left]: (5, 6) -[right]: (5, 4)",failed -12816,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[string_col_1-include_groups_False-dropna_False-sort_True-group_keys_False-transform_returns_series],"AssertionError: Series.index are different +10665,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_1[list0-rpow],"ValueError: Unable to coerce to Series, length must be 3: given 2",failed +10666,tests.integ.modin.frame.test_loc,test_df_loc_set_key_slice[True-9-4-1],ValueError: Incompatible indexer with DataFrame,failed +10669,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[string_col_1-include_groups_True-dropna_False-sort_False-group_keys_False-transform_returns_series],"AssertionError: Series.index are different Attribute ""names"" are different [left]: [None] [right]: ['index']",failed -12819,tests.integ.modin.groupby.test_groupby_dataframe_cumulative,test_groupby_cumulative[False-True-False-True-cummin-by1],"AssertionError: DataFrame are different - -DataFrame shape mismatch -[left]: (5, 5) -[right]: (5, 3)",failed -12820,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice[True--2-1-1],"AssertionError: DataFrame are different - -DataFrame shape mismatch -[left]: (2, 7) -[right]: (1, 7)",failed -12825,tests.integ.modin.groupby.test_groupby_dataframe_cumulative,test_groupby_cumulative[False-True-False-True-cummin-DARKSEID],"AssertionError: DataFrame are different - -DataFrame shape mismatch -[left]: (5, 6) -[right]: (5, 4)",failed -12826,tests.integ.modin.groupby.test_groupby_apply,test_numpy_ints_in_result[result2-include_groups_True],"[XPASS(strict)] SNOW-1229760: np.int64 is nested inside the single value of the dataframe, so we don't find it or convert it to int.",failed -12827,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[string_col_1-include_groups_False-dropna_False-sort_True-group_keys_False-return_scalar],"AssertionError: Series are different +10670,tests.integ.modin.frame.test_loc,test_df_loc_set_key_slice[True-9-4-4],ValueError: Incompatible indexer with DataFrame,failed +10671,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[string_col_1-include_groups_True-dropna_False-sort_False-group_keys_False-return_scalar],"AssertionError: Series are different Series values are different (100.0 %) [index]: [k0, k1, nan] @@ -7340,104 +5667,59 @@ int_col 44 dtype: int64_x int_col 14.666667 dtype: float64_k0 != 44_14.666666666666666_k0",failed -12828,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col5-row8],KeyError: 'mark vi',failed -12832,tests.integ.modin.groupby.test_groupby_apply,test_numpy_ints_in_result[result2-include_groups_False],"[XPASS(strict)] SNOW-1229760: np.int64 is nested inside the single value of the dataframe, so we don't find it or convert it to int.",failed -12833,tests.integ.modin.groupby.test_groupby_dataframe_cumulative,test_groupby_cumulative[False-True-False-True-cummax-LEXLUTHOR],"AssertionError: DataFrame are different - -DataFrame shape mismatch -[left]: (5, 6) -[right]: (5, 4)",failed -12839,tests.integ.modin.groupby.test_groupby_dataframe_cumulative,test_groupby_cumulative[False-True-False-True-cummax-by1],"AssertionError: DataFrame are different - -DataFrame shape mismatch -[left]: (5, 5) -[right]: (5, 3)",failed -12841,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[string_col_1-include_groups_False-dropna_False-sort_False-group_keys_True-non_transform_returns_dataframe],AssertionError,failed -12846,tests.integ.modin.groupby.test_groupby_dataframe_cumulative,test_groupby_cumulative[False-True-False-True-cummax-DARKSEID],"AssertionError: DataFrame are different - -DataFrame shape mismatch -[left]: (5, 6) -[right]: (5, 4)",failed -12852,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice[True--2-4-None],"AssertionError: DataFrame are different - -DataFrame shape mismatch -[left]: (4, 7) -[right]: (3, 7)",failed -12857,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col5-row9],KeyError: 'buzz1',failed -12861,tests.integ.modin.groupby.test_groupby_dataframe_cumulative,test_groupby_cumulative[False-True-False-False-cummin-LEXLUTHOR],"AssertionError: DataFrame are different - -DataFrame shape mismatch -[left]: (5, 6) -[right]: (5, 4)",failed -12864,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice[True--2-4--1],"AssertionError: DataFrame are different - -DataFrame shape mismatch -[left]: (4, 7) -[right]: (3, 7)",failed -12865,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[string_col_1-include_groups_False-dropna_False-sort_False-group_keys_True-transform_returns_dataframe],TypeError: must pass an index to rename,failed -12866,tests.integ.modin.groupby.test_groupby_dataframe_cumulative,test_groupby_cumulative[False-True-False-False-cummin-by1],"AssertionError: DataFrame are different - -DataFrame shape mismatch -[left]: (5, 5) -[right]: (5, 3)",failed -12867,tests.integ.modin.frame.test_astype,test_astype_from_timestamp_ltz[float],"AssertionError: Regex pattern did not match. - Regex: 'cannot be converted' - Input: 'Cannot cast DatetimeArray to dtype float64'",failed -12868,tests.integ.modin.groupby.test_groupby_apply,test_duplicate_index_groupby_mismatch_with_pandas[include_groups_True],KeyError: 'index',failed -12872,tests.integ.modin.groupby.test_groupby_dataframe_cumulative,test_groupby_cumulative[False-True-False-False-cummin-DARKSEID],"AssertionError: DataFrame are different - -DataFrame shape mismatch -[left]: (5, 6) -[right]: (5, 4)",failed -12874,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice[True--2-4-1],"AssertionError: DataFrame are different - -DataFrame shape mismatch -[left]: (3, 7) -[right]: (2, 7)",failed -12875,tests.integ.modin.groupby.test_groupby_dataframe_cumulative,test_groupby_cumulative[False-True-False-False-cummax-LEXLUTHOR],"AssertionError: DataFrame are different - -DataFrame shape mismatch -[left]: (5, 6) -[right]: (5, 4)",failed -12876,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[string_col_1-include_groups_False-dropna_False-sort_False-group_keys_True-non_transform_returns_series],"AssertionError: Series are different +10675,tests.integ.modin.frame.test_loc,test_df_loc_set_key_slice[True-9-4-10],ValueError: Incompatible indexer with DataFrame,failed +10677,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_1[ndarray0-add],"ValueError: Unable to coerce to Series, length must be 3: given 2",failed +10681,tests.integ.modin.frame.test_iloc,test_df_iloc_get_key_numeric[col-index-key3],"ValueError: +Location based indexing can only have [integer, integer slice (START point is +INCLUDED, END point is EXCLUDED), listlike of integers, boolean array] types.",failed +10683,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_1[ndarray0-radd],"ValueError: Unable to coerce to Series, length must be 3: given 2",failed +10686,tests.integ.modin.frame.test_loc,test_df_loc_set_key_slice[True-9-10-None],ValueError: Incompatible indexer with DataFrame,failed +10689,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_1[ndarray0-sub],"ValueError: Unable to coerce to Series, length must be 3: given 2",failed +10702,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_1[ndarray0-rsub],"ValueError: Unable to coerce to Series, length must be 3: given 2",failed +10704,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[string_col_1-include_groups_False-dropna_True-sort_True-group_keys_True-non_transform_returns_dataframe],AssertionError,failed +10706,tests.integ.modin.frame.test_set_index,test_set_index_names[frame_of_ints_and_timedelta],"TypeError: The parameter ""keys"" may be a column key, one-dimensional array, or a list containing only valid column keys and one-dimensional arrays. Received column of type ",failed +10708,tests.integ.modin.frame.test_loc,test_df_loc_set_key_slice[True-9-10-1],ValueError: Incompatible indexer with DataFrame,failed +10711,tests.integ.modin.frame.test_stack,test_stack_level_unsupported,Failed: DID NOT RAISE ,failed +10713,tests.integ.modin.frame.test_stack,test_stack_multiindex_unsupported,Failed: DID NOT RAISE ,failed +10716,tests.integ.modin.frame.test_stack,test_stack_timedelta_unsupported,Failed: DID NOT RAISE ,failed +10717,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_1[ndarray0-mul],"ValueError: Unable to coerce to Series, length must be 3: given 2",failed +10726,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_1[ndarray0-rmul],"ValueError: Unable to coerce to Series, length must be 3: given 2",failed +10734,tests.integ.modin.frame.test_iloc,test_df_iloc_get_key_numeric[col-index-key4],"ValueError: +Location based indexing can only have [integer, integer slice (START point is +INCLUDED, END point is EXCLUDED), listlike of integers, boolean array] types.",failed +10735,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_1[ndarray0-truediv],"ValueError: Unable to coerce to Series, length must be 3: given 2",failed +10747,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[string_col_1-include_groups_False-dropna_True-sort_True-group_keys_True-transform_returns_dataframe],TypeError: must pass an index to rename,failed +10749,tests.integ.modin.frame.test_loc,test_df_loc_get_col_time_df[key0],"TypeError: Cannot interpret 'datetime64[ns, UTC]' as a data type",failed +10751,tests.integ.modin.frame.test_loc,test_df_loc_set_key_slice[True-9-10-4],ValueError: Incompatible indexer with DataFrame,failed +10759,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[string_col_1-include_groups_False-dropna_True-sort_True-group_keys_True-non_transform_returns_series],"AssertionError: Series are different Series length are different [left]: 3, Index(['sum', 'mean', 'name'], dtype='object', name='custom_metrics') -[right]: 9, MultiIndex([('k0', 'sum'), +[right]: 6, MultiIndex([('k0', 'sum'), ('k0', 'mean'), ('k0', 'name'), ('k1', 'sum'), ('k1', 'mean'), - ('k1', 'name'), - ( nan, 'sum'), - ( nan, 'mean'), - ( nan, 'name')], + ('k1', 'name')], names=['string_col_1', None])",failed -12879,tests.integ.modin.groupby.test_groupby_apply,test_duplicate_index_groupby_mismatch_with_pandas[include_groups_False],KeyError: 'index',failed -12881,tests.integ.modin.groupby.test_groupby_dataframe_cumulative,test_groupby_cumulative[False-True-False-False-cummax-by1],"AssertionError: DataFrame are different - -DataFrame shape mismatch -[left]: (5, 5) -[right]: (5, 3)",failed -12885,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[string_col_1-include_groups_False-dropna_False-sort_False-group_keys_True-transform_returns_series],"AssertionError: MultiIndex level [1] are different +10763,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_1[ndarray0-rtruediv],"ValueError: Unable to coerce to Series, length must be 3: given 2",failed +10764,tests.integ.modin.frame.test_loc,test_df_loc_set_key_slice[True-9-10-10],ValueError: Incompatible indexer with DataFrame,failed +10769,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[string_col_1-include_groups_False-dropna_True-sort_True-group_keys_True-transform_returns_series],"AssertionError: MultiIndex level [1] are different Attribute ""names"" are different [left]: [None] [right]: ['index']",failed -12887,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice[True--2-4-4],"AssertionError: DataFrame are different - -DataFrame shape mismatch -[left]: (2, 7) -[right]: (1, 7)",failed -12889,tests.integ.modin.groupby.test_groupby_dataframe_cumulative,test_groupby_cumulative[False-True-False-False-cummax-DARKSEID],"AssertionError: DataFrame are different - -DataFrame shape mismatch -[left]: (5, 6) -[right]: (5, 4)",failed -12901,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[string_col_1-include_groups_False-dropna_False-sort_False-group_keys_True-return_scalar],"AssertionError: Series are different +10772,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_1[ndarray0-floordiv],"ValueError: Unable to coerce to Series, length must be 3: given 2",failed +10775,tests.integ.modin.frame.test_iloc,test_df_iloc_get_key_numeric[col-index-key5],"ValueError: +Location based indexing can only have [integer, integer slice (START point is +INCLUDED, END point is EXCLUDED), listlike of integers, boolean array] types.",failed +10778,tests.integ.modin.frame.test_loc,test_df_loc_get_col_time_df[key1],"TypeError: Cannot interpret 'datetime64[ns, UTC]' as a data type",failed +10779,tests.integ.modin.frame.test_loc,test_df_loc_set_key_slice[True--9-None-None],ValueError: Incompatible indexer with DataFrame,failed +10781,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_1[ndarray0-rfloordiv],"ValueError: Unable to coerce to Series, length must be 3: given 2",failed +10782,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[string_col_1-include_groups_False-dropna_True-sort_True-group_keys_True-return_scalar],"AssertionError: Series are different Series values are different (100.0 %) -[index]: [k0, k1, nan] +[index]: [k0, k1] [left]: [x int_col 44 dtype: int64_x @@ -7446,97 +5728,303 @@ dtype: float64_k0, x int_col 14 dtype: int64_x int_col 14.0 -dtype: float64_k1, x -int_col 17 -dtype: int64_x -int_col 17.0 -dtype: float64_None] -[right]: [44_14.666666666666666_k0, 14_14.0_k1, 17_17.0_None] +dtype: float64_k1] +[right]: [44_14.666666666666666_k0, 14_14.0_k1] At positional index 0, first diff: x int_col 44 dtype: int64_x int_col 14.666667 dtype: float64_k0 != 44_14.666666666666666_k0",failed -12908,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col5-row10],KeyError: 'buzz1',failed -12909,tests.integ.modin.groupby.test_groupby_dataframe_cumulative,test_groupby_cumulative[False-False-True-True-cummin-LEXLUTHOR],"AssertionError: DataFrame are different - -DataFrame shape mismatch -[left]: (5, 6) -[right]: (5, 4)",failed -12914,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[string_col_1-include_groups_False-dropna_False-sort_False-group_keys_False-non_transform_returns_dataframe],AssertionError,failed -12916,tests.integ.modin.groupby.test_groupby_dataframe_cumulative,test_groupby_cumulative[False-False-True-True-cummin-by1],"AssertionError: DataFrame are different +10789,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_1[ndarray0-mod],"ValueError: Unable to coerce to Series, length must be 3: given 2",failed +10794,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[string_col_1-include_groups_False-dropna_True-sort_True-group_keys_False-non_transform_returns_dataframe],AssertionError,failed +10795,tests.integ.modin.frame.test_loc,test_df_loc_set_key_slice[True--9-None--1],ValueError: Incompatible indexer with DataFrame,failed +10799,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_1[ndarray0-rmod],"ValueError: Unable to coerce to Series, length must be 3: given 2",failed +10807,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_1[ndarray0-pow],"ValueError: Unable to coerce to Series, length must be 3: given 2",failed +10810,tests.integ.modin.frame.test_loc,test_df_loc_set_key_slice[True--9-None-1],ValueError: Incompatible indexer with DataFrame,failed +10816,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_1[ndarray0-rpow],"ValueError: Unable to coerce to Series, length must be 3: given 2",failed +10817,tests.integ.modin.frame.test_iloc,test_df_iloc_get_key_numeric[col-index-key6],"ValueError: +Location based indexing can only have [integer, integer slice (START point is +INCLUDED, END point is EXCLUDED), listlike of integers, boolean array] types.",failed +10818,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[string_col_1-include_groups_False-dropna_True-sort_True-group_keys_False-transform_returns_dataframe],TypeError: must pass an index to rename,failed +10821,tests.integ.modin.frame.test_loc,test_df_loc_get_col_snowpark_pandas_input[series[bool]_col],"AssertionError: DataFrame.columns are different -DataFrame shape mismatch -[left]: (5, 5) -[right]: (5, 3)",failed -12922,tests.integ.modin.groupby.test_groupby_dataframe_cumulative,test_groupby_cumulative[False-False-True-True-cummin-DARKSEID],"AssertionError: DataFrame are different +DataFrame.columns values are different (20.0 %) +[left]: Index(['A', 'B', 'C', 'F', 'A'], dtype='object') +[right]: Index(['A', 'B', 'C', 'E', 'A'], dtype='object') +At positional index 3, first diff: F != E",failed +10825,tests.integ.modin.frame.test_iloc,test_df_iloc_get_key_numeric[col-ndarray-key0],"ValueError: +Location based indexing can only have [integer, integer slice (START point is +INCLUDED, END point is EXCLUDED), listlike of integers, boolean array] types.",failed +10826,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_1[index0-add],"ValueError: Unable to coerce to Series, length must be 3: given 2",failed +10828,tests.integ.modin.frame.test_loc,test_df_loc_set_key_slice[True--9-None-4],ValueError: Incompatible indexer with DataFrame,failed +10830,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[string_col_1-include_groups_False-dropna_True-sort_True-group_keys_False-non_transform_returns_series],"AssertionError: Series are different -DataFrame shape mismatch -[left]: (5, 6) -[right]: (5, 4)",failed -12929,tests.integ.modin.groupby.test_groupby_dataframe_cumulative,test_groupby_cumulative[False-False-True-True-cummax-LEXLUTHOR],"AssertionError: DataFrame are different +Series length are different +[left]: 3, Index(['sum', 'mean', 'name'], dtype='object', name='custom_metrics') +[right]: 6, Index(['sum', 'mean', 'name', 'sum', 'mean', 'name'], dtype='object')",failed +10842,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[string_col_1-include_groups_False-dropna_True-sort_True-group_keys_False-transform_returns_series],"AssertionError: Series.index are different -DataFrame shape mismatch -[left]: (5, 6) -[right]: (5, 4)",failed -12935,tests.integ.modin.groupby.test_groupby_dataframe_cumulative,test_groupby_cumulative[False-False-True-True-cummax-by1],"AssertionError: DataFrame are different +Attribute ""names"" are different +[left]: [None] +[right]: ['index']",failed +10855,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[string_col_1-include_groups_False-dropna_True-sort_True-group_keys_False-return_scalar],"AssertionError: Series are different -DataFrame shape mismatch -[left]: (5, 5) -[right]: (5, 3)",failed -12938,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col5-row11],KeyError: 'buzz1',failed -12944,tests.integ.modin.groupby.test_groupby_dataframe_cumulative,test_groupby_cumulative[False-False-True-True-cummax-DARKSEID],"AssertionError: DataFrame are different +Series values are different (100.0 %) +[index]: [k0, k1] +[left]: [x +int_col 44 +dtype: int64_x +int_col 14.666667 +dtype: float64_k0, x +int_col 14 +dtype: int64_x +int_col 14.0 +dtype: float64_k1] +[right]: [44_14.666666666666666_k0, 14_14.0_k1] +At positional index 0, first diff: x +int_col 44 +dtype: int64_x +int_col 14.666667 +dtype: float64_k0 != 44_14.666666666666666_k0",failed +10860,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_1[index0-radd],"ValueError: Unable to coerce to Series, length must be 3: given 2",failed +10867,tests.integ.modin.frame.test_iloc,test_df_iloc_get_key_numeric[col-ndarray-key4],IndexError: index 8 is out of bounds for axis 0 with size 7,failed +10871,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[string_col_1-include_groups_False-dropna_True-sort_False-group_keys_True-non_transform_returns_dataframe],AssertionError,failed +10872,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_1[index0-sub],"ValueError: Unable to coerce to Series, length must be 3: given 2",failed +10875,tests.integ.modin.frame.test_iloc,test_df_iloc_get_key_numeric[col-ndarray-key5],"ValueError: +Location based indexing can only have [integer, integer slice (START point is +INCLUDED, END point is EXCLUDED), listlike of integers, boolean array] types.",failed +10879,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_1[index0-rsub],"ValueError: Unable to coerce to Series, length must be 3: given 2",failed +10881,tests.integ.modin.frame.test_take,test_df_take[float-False],IndexError: positional indexers are out-of-bounds,failed +10882,tests.integ.modin.frame.test_loc,test_df_loc_set_key_slice[True--9--1-None],ValueError: Incompatible indexer with DataFrame,failed +10884,tests.integ.modin.frame.test_loc,test_df_loc_get_col_len_mismatch_boolean_indexer[key1],IndexError: positional indexers are out-of-bounds,failed +10885,tests.integ.modin.frame.test_iloc,test_df_iloc_get_key_numeric[col-ndarray-key6],"ValueError: +Location based indexing can only have [integer, integer slice (START point is +INCLUDED, END point is EXCLUDED), listlike of integers, boolean array] types.",failed +10890,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_1[index0-mul],"ValueError: Unable to coerce to Series, length must be 3: given 2",failed +10892,tests.integ.modin.frame.test_take,test_df_take[float-True],IndexError: positional indexers are out-of-bounds,failed +10894,tests.integ.modin.frame.test_loc,test_df_loc_set_key_slice[True--9--1--1],ValueError: Incompatible indexer with DataFrame,failed +10896,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_1[index0-rmul],"ValueError: Unable to coerce to Series, length must be 3: given 2",failed +10897,tests.integ.modin.frame.test_set_index,test_set_index_duplicate_label_in_dataframe_negative[True],"AssertionError: Regex pattern did not match. + Regex: ""The column label 'a' is not unique"" + Input: 'Index data must be 1-dimensional'",failed +10899,tests.integ.modin.frame.test_loc,test_df_loc_get_negative_row_diff2native[key0-TypeError-Passing a set as an indexer is not supported. Use a list instead.],"AssertionError: Regex pattern did not match. + Regex: 'Passing a set as an indexer is not supported. Use a list instead.' + Input: ""'set' type is unordered""",failed +10900,tests.integ.modin.frame.test_take,test_df_take[timedelta64[ns]-False],IndexError: positional indexers are out-of-bounds,failed +10902,tests.integ.modin.frame.test_loc,test_df_loc_get_negative_row_diff2native[key1-TypeError-Passing a dict as an indexer is not supported. Use a list instead.],Failed: DID NOT RAISE ,failed +10903,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_1[index0-truediv],"ValueError: Unable to coerce to Series, length must be 3: given 2",failed +10906,tests.integ.modin.frame.test_loc,test_df_loc_set_key_slice[True--9--1-1],ValueError: Incompatible indexer with DataFrame,failed +10908,tests.integ.modin.frame.test_loc,test_df_loc_get_negative_row_diff2native[key2-TypeError-Please convert this to Snowpark pandas objects by calling modin],"KeyError: array([2, 4], dtype=object)",failed +10909,tests.integ.modin.frame.test_take,test_df_take[timedelta64[ns]-True],IndexError: positional indexers are out-of-bounds,failed +10910,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_1[index0-rtruediv],"ValueError: Unable to coerce to Series, length must be 3: given 2",failed +10912,tests.integ.modin.frame.test_loc,test_df_loc_get_negative_row_diff2native[key3-TypeError-Please convert this to Snowpark pandas objects by calling modin],Failed: DID NOT RAISE ,failed +10917,tests.integ.modin.frame.test_loc,test_df_loc_set_key_slice[True--9--1-4],ValueError: Incompatible indexer with DataFrame,failed +10919,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[string_col_1-include_groups_False-dropna_True-sort_False-group_keys_True-transform_returns_dataframe],TypeError: must pass an index to rename,failed +10924,tests.integ.modin.frame.test_set_index,test_set_index_duplicate_label_in_dataframe_negative[False],"AssertionError: Regex pattern did not match. + Regex: ""The column label 'a' is not unique"" + Input: 'Index data must be 1-dimensional'",failed +10926,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[string_col_1-include_groups_False-dropna_True-sort_False-group_keys_True-non_transform_returns_series],"AssertionError: Series are different -DataFrame shape mismatch -[left]: (5, 6) -[right]: (5, 4)",failed -12966,tests.integ.modin.groupby.test_groupby_dataframe_cumulative,test_groupby_cumulative[False-False-True-False-cummin-LEXLUTHOR],"AssertionError: DataFrame are different +Series length are different +[left]: 3, Index(['sum', 'mean', 'name'], dtype='object', name='custom_metrics') +[right]: 6, MultiIndex([('k0', 'sum'), + ('k0', 'mean'), + ('k0', 'name'), + ('k1', 'sum'), + ('k1', 'mean'), + ('k1', 'name')], + names=['string_col_1', None])",failed +10928,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_1[index0-floordiv],"ValueError: Unable to coerce to Series, length must be 3: given 2",failed +10929,tests.integ.modin.frame.test_loc,test_df_loc_set_key_slice[True--9-1-None],ValueError: Incompatible indexer with DataFrame,failed +10937,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_1[index0-rfloordiv],"ValueError: Unable to coerce to Series, length must be 3: given 2",failed +10938,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[string_col_1-include_groups_False-dropna_True-sort_False-group_keys_True-transform_returns_series],"AssertionError: MultiIndex level [1] are different -DataFrame shape mismatch -[left]: (5, 6) -[right]: (5, 4)",failed -12973,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col5-row12],KeyError: 'buzz1',failed -12974,tests.integ.modin.groupby.test_groupby_dataframe_cumulative,test_groupby_cumulative[False-False-True-False-cummin-by1],"AssertionError: DataFrame are different +Attribute ""names"" are different +[left]: [None] +[right]: ['index']",failed +10942,tests.integ.modin.frame.test_loc,test_df_loc_set_key_slice[True--9-1--1],ValueError: Incompatible indexer with DataFrame,failed +10946,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_1[index0-mod],"ValueError: Unable to coerce to Series, length must be 3: given 2",failed +10948,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[string_col_1-include_groups_False-dropna_True-sort_False-group_keys_True-return_scalar],"AssertionError: Series are different -DataFrame shape mismatch -[left]: (5, 5) -[right]: (5, 3)",failed -12977,tests.integ.modin.frame.test_astype,test_astype_to_timedelta_negative,"AssertionError: Regex pattern did not match. - Regex: 'dtype\\ datetime64\\[ns\\]\\ cannot\\ be\\ converted\\ to\\ timedelta64\\[ns\\]' - Input: 'Cannot cast DatetimeArray to dtype timedelta64[ns]'",failed -12983,tests.integ.modin.groupby.test_groupby_dataframe_cumulative,test_groupby_cumulative[False-False-True-False-cummin-DARKSEID],"AssertionError: DataFrame are different +Series values are different (100.0 %) +[index]: [k0, k1] +[left]: [x +int_col 44 +dtype: int64_x +int_col 14.666667 +dtype: float64_k0, x +int_col 14 +dtype: int64_x +int_col 14.0 +dtype: float64_k1] +[right]: [44_14.666666666666666_k0, 14_14.0_k1] +At positional index 0, first diff: x +int_col 44 +dtype: int64_x +int_col 14.666667 +dtype: float64_k0 != 44_14.666666666666666_k0",failed +10952,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_1[index0-rmod],"ValueError: Unable to coerce to Series, length must be 3: given 2",failed +10954,tests.integ.modin.frame.test_loc,test_df_loc_set_key_slice[True--9-1-1],ValueError: Incompatible indexer with DataFrame,failed +10956,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[string_col_1-include_groups_False-dropna_True-sort_False-group_keys_False-non_transform_returns_dataframe],AssertionError,failed +10958,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_1[index0-pow],"ValueError: Unable to coerce to Series, length must be 3: given 2",failed +10962,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_1[index0-rpow],"ValueError: Unable to coerce to Series, length must be 3: given 2",failed +10965,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_1[index_with_name0-add],"ValueError: Unable to coerce to Series, length must be 3: given 2",failed +10968,tests.integ.modin.frame.test_loc,test_df_loc_get_negative_snowpark_pandas_input[dataframe],Failed: DID NOT RAISE ,failed +10970,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_col_key[fizz1-None],AssertionError,failed +10971,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[string_col_1-include_groups_False-dropna_True-sort_False-group_keys_False-transform_returns_dataframe],TypeError: must pass an index to rename,failed +10977,tests.integ.modin.frame.test_loc,test_df_loc_set_key_slice[True--9-1-4],ValueError: Incompatible indexer with DataFrame,failed +10980,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_col_key[key4-None],"AssertionError: DataFrame.columns are different -DataFrame shape mismatch -[left]: (5, 6) -[right]: (5, 4)",failed -12988,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[string_col_1-include_groups_False-dropna_False-sort_False-group_keys_False-transform_returns_dataframe],TypeError: must pass an index to rename,failed -12992,tests.integ.modin.groupby.test_groupby_dataframe_cumulative,test_groupby_cumulative[False-False-True-False-cummax-LEXLUTHOR],"AssertionError: DataFrame are different +DataFrame.columns classes are different +[left]: Index(['buzz1'], dtype='object', name='buzz') +[right]: MultiIndex([('fizz1', 'buzz1')], + names=['fizz', 'buzz'])",failed +10982,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[string_col_1-include_groups_False-dropna_True-sort_False-group_keys_False-non_transform_returns_series],"AssertionError: Series are different -DataFrame shape mismatch -[left]: (5, 6) -[right]: (5, 4)",failed -12999,tests.integ.modin.groupby.test_groupby_dataframe_cumulative,test_groupby_cumulative[False-False-True-False-cummax-by1],"AssertionError: DataFrame are different +Series length are different +[left]: 3, Index(['sum', 'mean', 'name'], dtype='object', name='custom_metrics') +[right]: 6, Index(['sum', 'mean', 'name', 'sum', 'mean', 'name'], dtype='object')",failed +10985,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_1[index_with_name0-radd],"ValueError: Unable to coerce to Series, length must be 3: given 2",failed +10987,tests.integ.modin.frame.test_loc,test_df_loc_set_key_slice[True--9-4-None],ValueError: Incompatible indexer with DataFrame,failed +10989,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[string_col_1-include_groups_False-dropna_True-sort_False-group_keys_False-transform_returns_series],"AssertionError: Series.index are different -DataFrame shape mismatch -[left]: (5, 5) -[right]: (5, 3)",failed -13005,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[string_col_1-include_groups_False-dropna_False-sort_False-group_keys_False-non_transform_returns_series],"AssertionError: Series are different +Attribute ""names"" are different +[left]: [None] +[right]: ['index']",failed +10991,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_1[index_with_name0-sub],"ValueError: Unable to coerce to Series, length must be 3: given 2",failed +10995,tests.integ.modin.frame.test_loc,test_df_loc_set_key_slice[True--9-4--1],ValueError: Incompatible indexer with DataFrame,failed +10996,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_1[index_with_name0-rsub],"ValueError: Unable to coerce to Series, length must be 3: given 2",failed +10997,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[string_col_1-include_groups_False-dropna_True-sort_False-group_keys_False-return_scalar],"AssertionError: Series are different + +Series values are different (100.0 %) +[index]: [k0, k1] +[left]: [x +int_col 44 +dtype: int64_x +int_col 14.666667 +dtype: float64_k0, x +int_col 14 +dtype: int64_x +int_col 14.0 +dtype: float64_k1] +[right]: [44_14.666666666666666_k0, 14_14.0_k1] +At positional index 0, first diff: x +int_col 44 +dtype: int64_x +int_col 14.666667 +dtype: float64_k0 != 44_14.666666666666666_k0",failed +11001,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_1[index_with_name0-mul],"ValueError: Unable to coerce to Series, length must be 3: given 2",failed +11002,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_col_key[key5-None],KeyError: 'fizz2',failed +11004,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[string_col_1-include_groups_False-dropna_False-sort_True-group_keys_True-non_transform_returns_dataframe],AssertionError,failed +11005,tests.integ.modin.frame.test_loc,test_df_loc_set_key_slice[True--9-4-1],ValueError: Incompatible indexer with DataFrame,failed +11008,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_1[index_with_name0-rmul],"ValueError: Unable to coerce to Series, length must be 3: given 2",failed +11009,tests.integ.modin.groupby.test_groupby_bfill_ffill,test_groupby_bfill_ffill_multiindex_negative[by_list0-bfill],AssertionError: Snowpark pandas Exception 'I' doesn't match pandas Exception 'A',failed +11010,tests.integ.modin.groupby.test_groupby_bfill_ffill,test_groupby_bfill_ffill_multiindex_negative[by_list0-ffill],AssertionError: Snowpark pandas Exception 'I' doesn't match pandas Exception 'A',failed +11012,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_1[index_with_name0-truediv],"ValueError: Unable to coerce to Series, length must be 3: given 2",failed +11013,tests.integ.modin.frame.test_loc,test_df_loc_set_key_slice[True--9-4-4],ValueError: Incompatible indexer with DataFrame,failed +11018,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[string_col_1-include_groups_False-dropna_False-sort_True-group_keys_True-transform_returns_dataframe],TypeError: must pass an index to rename,failed +11019,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_1[index_with_name0-rtruediv],"ValueError: Unable to coerce to Series, length must be 3: given 2",failed +11020,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_col_key[key7-None],KeyError: 'buzz1',failed +11023,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_1[index_with_name0-floordiv],"ValueError: Unable to coerce to Series, length must be 3: given 2",failed +11024,tests.integ.modin.frame.test_loc,test_df_loc_set_key_slice[True--9-10-None],ValueError: Incompatible indexer with DataFrame,failed +11025,tests.integ.modin.frame.test_iloc,test_df_iloc_get_key_numeric[col-index with name-key1],"ValueError: +Location based indexing can only have [integer, integer slice (START point is +INCLUDED, END point is EXCLUDED), listlike of integers, boolean array] types.",failed +11026,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[string_col_1-include_groups_False-dropna_False-sort_True-group_keys_True-non_transform_returns_series],"AssertionError: Series are different Series length are different [left]: 3, Index(['sum', 'mean', 'name'], dtype='object', name='custom_metrics') -[right]: 9, Index(['sum', 'mean', 'name', 'sum', 'mean', 'name', 'sum', 'mean', 'name'], dtype='object')",failed -13007,tests.integ.modin.groupby.test_groupby_dataframe_cumulative,test_groupby_cumulative[False-False-True-False-cummax-DARKSEID],"AssertionError: DataFrame are different +[right]: 9, MultiIndex([('k0', 'sum'), + ('k0', 'mean'), + ('k0', 'name'), + ('k1', 'sum'), + ('k1', 'mean'), + ('k1', 'name'), + ( nan, 'sum'), + ( nan, 'mean'), + ( nan, 'name')], + names=['string_col_1', None])",failed +11027,tests.integ.modin.groupby.test_groupby_bfill_ffill,test_groupby_bfill_ffill_unsupported_grouping_negative[bfill],KeyError: 'I',failed +11028,tests.integ.modin.groupby.test_groupby_bfill_ffill,test_groupby_bfill_ffill_unsupported_grouping_negative[ffill],KeyError: 'I',failed +11029,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_col_key[key8-None],KeyError: 'buzz1',failed +11030,tests.integ.modin.frame.test_set_index,test_set_index_pass_single_array[True-True-frame_of_ints-Index],"TypeError: The parameter ""keys"" may be a column key, one-dimensional array, or a list containing only valid column keys and one-dimensional arrays. Received column of type ",failed +11032,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[string_col_1-include_groups_False-dropna_False-sort_True-group_keys_True-transform_returns_series],"AssertionError: MultiIndex level [1] are different -DataFrame shape mismatch -[left]: (5, 6) -[right]: (5, 4)",failed -13008,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col5-row13],KeyError: 'buzz1',failed -13019,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[string_col_1-include_groups_False-dropna_False-sort_False-group_keys_False-transform_returns_series],"AssertionError: Series.index are different +Attribute ""names"" are different +[left]: [None] +[right]: ['index']",failed +11041,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_1[index_with_name0-rfloordiv],"ValueError: Unable to coerce to Series, length must be 3: given 2",failed +11042,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[string_col_1-include_groups_False-dropna_False-sort_True-group_keys_True-return_scalar],"AssertionError: Series are different + +Series values are different (100.0 %) +[index]: [k0, k1, nan] +[left]: [x +int_col 44 +dtype: int64_x +int_col 14.666667 +dtype: float64_k0, x +int_col 14 +dtype: int64_x +int_col 14.0 +dtype: float64_k1, x +int_col 17 +dtype: int64_x +int_col 17.0 +dtype: float64_None] +[right]: [44_14.666666666666666_k0, 14_14.0_k1, 17_17.0_None] +At positional index 0, first diff: x +int_col 44 +dtype: int64_x +int_col 14.666667 +dtype: float64_k0 != 44_14.666666666666666_k0",failed +11044,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_col_key[key9-None],KeyError: 'buzz1',failed +11049,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_1[index_with_name0-mod],"ValueError: Unable to coerce to Series, length must be 3: given 2",failed +11052,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[string_col_1-include_groups_False-dropna_False-sort_True-group_keys_False-non_transform_returns_dataframe],AssertionError,failed +11054,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_1[index_with_name0-rmod],"ValueError: Unable to coerce to Series, length must be 3: given 2",failed +11055,tests.integ.modin.frame.test_loc,test_df_loc_set_key_slice[True--9-10--1],ValueError: Incompatible indexer with DataFrame,failed +11059,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_1[index_with_name0-pow],"ValueError: Unable to coerce to Series, length must be 3: given 2",failed +11061,tests.integ.modin.frame.test_iloc,test_df_iloc_get_key_numeric[col-index with name-key2],"ValueError: +Location based indexing can only have [integer, integer slice (START point is +INCLUDED, END point is EXCLUDED), listlike of integers, boolean array] types.",failed +11063,tests.integ.modin.frame.test_loc,test_df_loc_set_key_slice[True--9-10-1],ValueError: Incompatible indexer with DataFrame,failed +11064,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_1[index_with_name0-rpow],"ValueError: Unable to coerce to Series, length must be 3: given 2",failed +11069,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_1[list1-add],"ValueError: Unable to coerce to Series, length must be 3: given 4",failed +11071,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_row_key[mark ii-KeyError],KeyError: np.str_('mark ii'),failed +11072,tests.integ.modin.frame.test_loc,test_df_loc_set_key_slice[True--9-10-4],ValueError: Incompatible indexer with DataFrame,failed +11074,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_row_key[key4-None],"AssertionError: DataFrame.index are different + +DataFrame.index levels are different +[left]: 1, Index(['mark v', 'mark vi'], dtype='object') +[right]: 2, MultiIndex([('mark i', 'mark v'), + ('mark i', 'mark vi')], + )",failed +11075,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_1[list1-radd],"ValueError: Unable to coerce to Series, length must be 3: given 4",failed +11080,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_row_key[key5-None],"KeyError: ['viper', 'mark i', 'viper']",failed +11081,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[string_col_1-include_groups_False-dropna_False-sort_True-group_keys_False-transform_returns_dataframe],TypeError: must pass an index to rename,failed +11083,tests.integ.modin.frame.test_iloc,test_df_iloc_get_key_numeric[col-index with name-key3],"ValueError: +Location based indexing can only have [integer, integer slice (START point is +INCLUDED, END point is EXCLUDED), listlike of integers, boolean array] types.",failed +11086,tests.integ.modin.frame.test_loc,test_df_loc_set_item_df_single_value[key0-val_columns0-val_index0],ValueError: Length of values (1) does not match length of index (4),failed +11088,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_row_key[key6-KeyError],KeyError: 'invalid',failed +11091,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_1[list1-sub],"ValueError: Unable to coerce to Series, length must be 3: given 4",failed +11092,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[string_col_1-include_groups_False-dropna_False-sort_True-group_keys_False-non_transform_returns_series],"AssertionError: Series are different + +Series length are different +[left]: 3, Index(['sum', 'mean', 'name'], dtype='object', name='custom_metrics') +[right]: 9, Index(['sum', 'mean', 'name', 'sum', 'mean', 'name', 'sum', 'mean', 'name'], dtype='object')",failed +11094,tests.integ.modin.frame.test_set_index,test_set_index_pass_single_array[True-True-frame_of_ints_and_timedelta-Index],"TypeError: The parameter ""keys"" may be a column key, one-dimensional array, or a list containing only valid column keys and one-dimensional arrays. Received column of type ",failed +11097,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_1[list1-rsub],"ValueError: Unable to coerce to Series, length must be 3: given 4",failed +11099,tests.integ.modin.frame.test_loc,test_df_loc_set_item_df_single_value[key0-val_columns0-val_index1],ValueError: Length of values (1) does not match length of index (4),failed +11103,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_row_key[key7-None],KeyError: 'mark vi',failed +11104,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[string_col_1-include_groups_False-dropna_False-sort_True-group_keys_False-transform_returns_series],"AssertionError: Series.index are different Attribute ""names"" are different [left]: [None] [right]: ['index']",failed -13031,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[string_col_1-include_groups_False-dropna_False-sort_False-group_keys_False-return_scalar],"AssertionError: Series are different +11105,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_1[list1-mul],"ValueError: Unable to coerce to Series, length must be 3: given 4",failed +11107,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_1[list1-rmul],"ValueError: Unable to coerce to Series, length must be 3: given 4",failed +11108,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_1[list1-truediv],"ValueError: Unable to coerce to Series, length must be 3: given 4",failed +11109,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[string_col_1-include_groups_False-dropna_False-sort_True-group_keys_False-return_scalar],"AssertionError: Series are different Series values are different (100.0 %) [index]: [k0, k1, nan] @@ -7559,1535 +6047,1688 @@ int_col 44 dtype: int64_x int_col 14.666667 dtype: float64_k0 != 44_14.666666666666666_k0",failed -13041,tests.integ.modin.frame.test_set_index,test_set_index_raise_keys_negative[True-True-frame_of_ints-keys1],"AssertionError: Snowpark pandas Exception 'X' doesn't match pandas Exception ""None of ['X'] are in the columns""",failed -13047,tests.integ.modin.groupby.test_groupby_dataframe_cumulative,test_groupby_cumulative[False-False-False-True-cummin-LEXLUTHOR],"AssertionError: DataFrame are different +11110,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_1[list1-rtruediv],"ValueError: Unable to coerce to Series, length must be 3: given 4",failed +11111,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[string_col_1-include_groups_False-dropna_False-sort_False-group_keys_True-non_transform_returns_dataframe],AssertionError,failed +11112,tests.integ.modin.frame.test_iloc,test_df_iloc_get_key_numeric[col-index with name-key4],"ValueError: +Location based indexing can only have [integer, integer slice (START point is +INCLUDED, END point is EXCLUDED), listlike of integers, boolean array] types.",failed +11113,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_1[list1-floordiv],"ValueError: Unable to coerce to Series, length must be 3: given 4",failed +11114,tests.integ.modin.frame.test_loc,test_df_loc_set_item_df_single_value[key0-val_columns1-val_index0],ValueError: Length of values (1) does not match length of index (4),failed +11115,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_row_key[key8-None],KeyError: 'mark vi',failed +11116,tests.integ.modin.frame.test_loc,test_df_loc_set_item_df_single_value[key0-val_columns1-val_index1],ValueError: Length of values (1) does not match length of index (4),failed +11117,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[string_col_1-include_groups_False-dropna_False-sort_False-group_keys_True-transform_returns_dataframe],TypeError: must pass an index to rename,failed +11118,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_row_key[key9-None],KeyError: 'mark vi',failed +11119,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_row_key[key10-AssertionError],"assert False + + where False = fizz fizz1 fizz2\nbuzz buzz1 buzz2\nmark i mark v 12 2\n mark vi 0 4.empty",failed +11120,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_1[list1-rfloordiv],"ValueError: Unable to coerce to Series, length must be 3: given 4",failed +11121,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[fizz1-mark i],AssertionError,failed +11122,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[fizz1-row1],AssertionError,failed +11123,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_1[list1-mod],"ValueError: Unable to coerce to Series, length must be 3: given 4",failed +11125,tests.integ.modin.frame.test_loc,test_df_loc_set_item_df_single_value[A-val_columns0-val_index0],ValueError: Length of values (1) does not match length of index (4),failed +11126,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[string_col_1-include_groups_False-dropna_False-sort_False-group_keys_True-non_transform_returns_series],"AssertionError: Series are different + +Series length are different +[left]: 3, Index(['sum', 'mean', 'name'], dtype='object', name='custom_metrics') +[right]: 9, MultiIndex([('k0', 'sum'), + ('k0', 'mean'), + ('k0', 'name'), + ('k1', 'sum'), + ('k1', 'mean'), + ('k1', 'name'), + ( nan, 'sum'), + ( nan, 'mean'), + ( nan, 'name')], + names=['string_col_1', None])",failed +11127,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[fizz1-row2],AssertionError: Got type: ,failed +11130,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[fizz1-row3],AssertionError,failed +11131,tests.integ.modin.frame.test_iloc,test_df_iloc_get_key_numeric[col-index with name-key5],"ValueError: +Location based indexing can only have [integer, integer slice (START point is +INCLUDED, END point is EXCLUDED), listlike of integers, boolean array] types.",failed +11132,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_1[list1-rmod],"ValueError: Unable to coerce to Series, length must be 3: given 4",failed +11133,tests.integ.modin.groupby.test_groupby_dataframe_cumulative,test_groupby_cumulative[True-True-True-True-cummin-LEXLUTHOR],"AssertionError: DataFrame are different DataFrame shape mismatch [left]: (5, 6) [right]: (5, 4)",failed -13048,tests.integ.modin.groupby.test_groupby_dataframe_cumulative,test_groupby_cumulative[False-False-False-True-cummin-by1],"AssertionError: DataFrame are different +11134,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[string_col_1-include_groups_False-dropna_False-sort_False-group_keys_True-transform_returns_series],"AssertionError: MultiIndex level [1] are different + +Attribute ""names"" are different +[left]: [None] +[right]: ['index']",failed +11135,tests.integ.modin.groupby.test_groupby_dataframe_cumulative,test_groupby_cumulative[True-True-True-True-cummin-by1],"AssertionError: DataFrame are different DataFrame shape mismatch [left]: (5, 5) [right]: (5, 3)",failed -13052,tests.integ.modin.groupby.test_groupby_dataframe_cumulative,test_groupby_cumulative[False-False-False-True-cummin-DARKSEID],"AssertionError: DataFrame are different +11136,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_1[list1-pow],"ValueError: Unable to coerce to Series, length must be 3: given 4",failed +11137,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[fizz1-row4],"KeyError: ['viper', 'mark i', 'viper']",failed +11138,tests.integ.modin.frame.test_loc,test_df_loc_set_item_df_single_value[A-val_columns0-val_index1],ValueError: Length of values (1) does not match length of index (4),failed +11139,tests.integ.modin.groupby.test_groupby_dataframe_cumulative,test_groupby_cumulative[True-True-True-True-cummin-DARKSEID],"AssertionError: DataFrame are different DataFrame shape mismatch [left]: (5, 6) [right]: (5, 4)",failed -13056,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[by1-include_groups_True-dropna_True-sort_True-group_keys_True-non_transform_returns_dataframe],KeyError: 'index',failed -13062,tests.integ.modin.groupby.test_groupby_dataframe_cumulative,test_groupby_cumulative[False-False-False-True-cummax-LEXLUTHOR],"AssertionError: DataFrame are different +11140,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[string_col_1-include_groups_False-dropna_False-sort_False-group_keys_True-return_scalar],"AssertionError: Series are different + +Series values are different (100.0 %) +[index]: [k0, k1, nan] +[left]: [x +int_col 44 +dtype: int64_x +int_col 14.666667 +dtype: float64_k0, x +int_col 14 +dtype: int64_x +int_col 14.0 +dtype: float64_k1, x +int_col 17 +dtype: int64_x +int_col 17.0 +dtype: float64_None] +[right]: [44_14.666666666666666_k0, 14_14.0_k1, 17_17.0_None] +At positional index 0, first diff: x +int_col 44 +dtype: int64_x +int_col 14.666667 +dtype: float64_k0 != 44_14.666666666666666_k0",failed +11141,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_1[list1-rpow],"ValueError: Unable to coerce to Series, length must be 3: given 4",failed +11142,tests.integ.modin.groupby.test_groupby_dataframe_cumulative,test_groupby_cumulative[True-True-True-True-cummax-LEXLUTHOR],"AssertionError: DataFrame are different DataFrame shape mismatch [left]: (5, 6) [right]: (5, 4)",failed -13068,tests.integ.modin.frame.test_set_index,test_set_index_raise_keys_negative[True-True-frame_of_ints_and_timedelta-keys1],"AssertionError: Snowpark pandas Exception 'X' doesn't match pandas Exception ""None of ['X'] are in the columns""",failed -13071,tests.integ.modin.frame.test_at,test_at_set_multiindex_index_str_columns_neg,Failed: DID NOT RAISE ,failed -13075,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col5-row14],KeyError: 'buzz1',failed -13076,tests.integ.modin.groupby.test_groupby_dataframe_cumulative,test_groupby_cumulative[False-False-False-True-cummax-by1],"AssertionError: DataFrame are different +11143,tests.integ.modin.groupby.test_groupby_dataframe_cumulative,test_groupby_cumulative[True-True-True-True-cummax-by1],"AssertionError: DataFrame are different DataFrame shape mismatch [left]: (5, 5) [right]: (5, 3)",failed -13078,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[by1-include_groups_True-dropna_True-sort_True-group_keys_True-transform_returns_dataframe],KeyError: 'index',failed -13084,tests.integ.modin.frame.test_at,test_at_set_default_index_multiindex_columns_neg,Failed: DID NOT RAISE ,failed -13087,tests.integ.modin.groupby.test_groupby_dataframe_cumulative,test_groupby_cumulative[False-False-False-True-cummax-DARKSEID],"AssertionError: DataFrame are different +11144,tests.integ.modin.frame.test_set_index,test_set_index_pass_single_array[True-False-frame_of_ints-Index],"TypeError: The parameter ""keys"" may be a column key, one-dimensional array, or a list containing only valid column keys and one-dimensional arrays. Received column of type ",failed +11145,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_1[ndarray1-add],"ValueError: Unable to coerce to Series, length must be 3: given 4",failed +11146,tests.integ.modin.groupby.test_groupby_dataframe_cumulative,test_groupby_cumulative[True-True-True-True-cummax-DARKSEID],"AssertionError: DataFrame are different DataFrame shape mismatch [left]: (5, 6) [right]: (5, 4)",failed -13091,tests.integ.modin.frame.test_set_index,test_set_index_raise_keys_negative[True-False-frame_of_ints-keys1],"AssertionError: Snowpark pandas Exception 'X' doesn't match pandas Exception ""None of ['X'] are in the columns""",failed -13093,tests.integ.modin.frame.test_at,test_at_set_multiindex_index_multiindex_columns_neg,Failed: DID NOT RAISE ,failed -13099,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[by1-include_groups_True-dropna_True-sort_True-group_keys_True-non_transform_returns_series],KeyError: 'index',failed -13101,tests.integ.modin.frame.test_at,test_at_neg[0-IndexingError],Failed: DID NOT RAISE ,failed -13107,tests.integ.modin.frame.test_at,test_at_neg[key1-IndexingError],Failed: DID NOT RAISE ,failed -13112,tests.integ.modin.groupby.test_groupby_dataframe_cumulative,test_groupby_cumulative[False-False-False-False-cummin-LEXLUTHOR],"AssertionError: DataFrame are different +11147,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[string_col_1-include_groups_False-dropna_False-sort_False-group_keys_False-non_transform_returns_dataframe],AssertionError,failed +11149,tests.integ.modin.frame.test_loc,test_df_loc_set_item_df_single_value[A-val_columns1-val_index0],ValueError: Length of values (1) does not match length of index (4),failed +11152,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_1[ndarray1-radd],"ValueError: Unable to coerce to Series, length must be 3: given 4",failed +11155,tests.integ.modin.frame.test_to_dynamic_table,test_to_dynamic_table_enforce_ordering_raises[method],"NotImplementedError: Modin supports the method DataFrame.to_dynamic_table on the Snowflake backend, but not on the backend Pandas.",failed +11158,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_1[ndarray1-sub],"ValueError: Unable to coerce to Series, length must be 3: given 4",failed +11160,tests.integ.modin.groupby.test_groupby_dataframe_cumulative,test_groupby_cumulative[True-True-True-False-cummin-LEXLUTHOR],"AssertionError: DataFrame are different DataFrame shape mismatch [left]: (5, 6) [right]: (5, 4)",failed -13115,tests.integ.modin.frame.test_set_index,test_set_index_raise_keys_negative[True-False-frame_of_ints_and_timedelta-keys1],"AssertionError: Snowpark pandas Exception 'X' doesn't match pandas Exception ""None of ['X'] are in the columns""",failed -13116,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col6-mark i],KeyError: 'buzz1',failed -13119,tests.integ.modin.frame.test_at,test_at_neg[key2-IndexingError],"TypeError: int() argument must be a string, a bytes-like object or a real number, not 'dict'",failed -13121,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[by1-include_groups_True-dropna_True-sort_True-group_keys_True-transform_returns_series],KeyError: 'index',failed -13124,tests.integ.modin.groupby.test_groupby_dataframe_cumulative,test_groupby_cumulative[False-False-False-False-cummin-by1],"AssertionError: DataFrame are different +11161,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[fizz1-row5],KeyError: 'mark vi',failed +11162,tests.integ.modin.groupby.test_groupby_dataframe_cumulative,test_groupby_cumulative[True-True-True-False-cummin-by1],"AssertionError: DataFrame are different DataFrame shape mismatch [left]: (5, 5) [right]: (5, 3)",failed -13129,tests.integ.modin.groupby.test_groupby_dataframe_cumulative,test_groupby_cumulative[False-False-False-False-cummin-DARKSEID],"AssertionError: DataFrame are different +11163,tests.integ.modin.frame.test_iloc,test_df_iloc_get_key_numeric[col-index with name-key6],"ValueError: +Location based indexing can only have [integer, integer slice (START point is +INCLUDED, END point is EXCLUDED), listlike of integers, boolean array] types.",failed +11164,tests.integ.modin.groupby.test_groupby_dataframe_cumulative,test_groupby_cumulative[True-True-True-False-cummin-DARKSEID],"AssertionError: DataFrame are different DataFrame shape mismatch [left]: (5, 6) [right]: (5, 4)",failed -13131,tests.integ.modin.frame.test_at,test_at_neg[a-IndexingError],"KeyError: array(['a'], dtype=',failed -13138,tests.integ.modin.groupby.test_groupby_dataframe_cumulative,test_groupby_cumulative[False-False-False-False-cummax-LEXLUTHOR],"AssertionError: DataFrame are different +11165,tests.integ.modin.groupby.test_groupby_dataframe_cumulative,test_groupby_cumulative[True-True-True-False-cummax-LEXLUTHOR],"AssertionError: DataFrame are different DataFrame shape mismatch [left]: (5, 6) [right]: (5, 4)",failed -13140,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[by1-include_groups_True-dropna_True-sort_True-group_keys_True-return_scalar],KeyError: 'index',failed -13144,tests.integ.modin.frame.test_at,test_at_neg[key5-IndexingError],Failed: DID NOT RAISE ,failed -13149,tests.integ.modin.groupby.test_groupby_dataframe_cumulative,test_groupby_cumulative[False-False-False-False-cummax-by1],"AssertionError: DataFrame are different +11167,tests.integ.modin.groupby.test_groupby_dataframe_cumulative,test_groupby_cumulative[True-True-True-False-cummax-by1],"AssertionError: DataFrame are different DataFrame shape mismatch [left]: (5, 5) [right]: (5, 3)",failed -13153,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col6-row1],KeyError: 'buzz1',failed -13156,tests.integ.modin.groupby.test_groupby_dataframe_cumulative,test_groupby_cumulative[False-False-False-False-cummax-DARKSEID],"AssertionError: DataFrame are different +11168,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[fizz1-row6],KeyError: 'mark vi',failed +11169,tests.integ.modin.groupby.test_groupby_dataframe_cumulative,test_groupby_cumulative[True-True-True-False-cummax-DARKSEID],"AssertionError: DataFrame are different DataFrame shape mismatch [left]: (5, 6) [right]: (5, 4)",failed -13158,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[by1-include_groups_True-dropna_True-sort_True-group_keys_False-non_transform_returns_dataframe],KeyError: 'index',failed -13170,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice[True-9-10-None],"AssertionError: DataFrame are different +11170,tests.integ.modin.frame.test_iloc,test_df_iloc_get_key_int_series_with_1k_shape[key0],"ValueError: +Location based indexing can only have [integer, integer slice (START point is +INCLUDED, END point is EXCLUDED), listlike of integers, boolean array] types.",failed +11172,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_1[ndarray1-rsub],"ValueError: Unable to coerce to Series, length must be 3: given 4",failed +11173,tests.integ.modin.frame.test_loc,test_df_loc_set_item_df_single_value[A-val_columns1-val_index1],ValueError: Length of values (1) does not match length of index (4),failed +11177,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[string_col_1-include_groups_False-dropna_False-sort_False-group_keys_False-transform_returns_dataframe],TypeError: must pass an index to rename,failed +11179,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_1[ndarray1-mul],"ValueError: Unable to coerce to Series, length must be 3: given 4",failed +11181,tests.integ.modin.groupby.test_groupby_dataframe_cumulative,test_groupby_cumulative[True-True-False-True-cummin-LEXLUTHOR],"AssertionError: DataFrame are different DataFrame shape mismatch -[left]: (1, 7) -[right]: (0, 7)",failed -13174,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[by1-include_groups_True-dropna_True-sort_True-group_keys_False-transform_returns_dataframe],KeyError: 'index',failed -13177,tests.integ.modin.frame.test_at,test_at_neg[key6-IndexingError],"TypeError: int() argument must be a string, a bytes-like object or a real number, not 'dict'",failed -13185,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col6-row2],KeyError: 'buzz1',failed -13192,tests.integ.modin.frame.test_at,test_at_neg[key8-KeyError],"TypeError: int() argument must be a string, a bytes-like object or a real number, not 'dict'",failed -13196,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice[True-9-10-1],"AssertionError: DataFrame are different +[left]: (5, 6) +[right]: (5, 4)",failed +11182,tests.integ.modin.frame.test_iloc,test_df_iloc_get_key_int_series_with_1k_shape[key1],IndexError: index -1440 is out of bounds for axis 0 with size 1000,failed +11184,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[fizz1-row7],KeyError: 'mark vi',failed +11185,tests.integ.modin.groupby.test_groupby_dataframe_cumulative,test_groupby_cumulative[True-True-False-True-cummin-by1],"AssertionError: DataFrame are different DataFrame shape mismatch -[left]: (1, 7) -[right]: (0, 7)",failed -13198,tests.integ.modin.groupby.test_groupby_apply,test_non_series_or_dataframe_return_types[None-include_groups_True],AssertionError,failed -13204,tests.integ.modin.groupby.test_groupby_apply,test_non_series_or_dataframe_return_types[None-include_groups_False],AssertionError,failed -13205,tests.integ.modin.frame.test_at,test_at_multiindex_neg[key0-IndexingError],Failed: DID NOT RAISE ,failed -13209,tests.integ.modin.frame.test_at,test_at_multiindex_neg[key1-IndexingError],Failed: DID NOT RAISE ,failed -13211,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice[True-9-10-4],"AssertionError: DataFrame are different +[left]: (5, 5) +[right]: (5, 3)",failed +11186,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_1[ndarray1-rmul],"ValueError: Unable to coerce to Series, length must be 3: given 4",failed +11187,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[string_col_1-include_groups_False-dropna_False-sort_False-group_keys_False-non_transform_returns_series],"AssertionError: Series are different -DataFrame shape mismatch -[left]: (1, 7) -[right]: (0, 7)",failed -13213,tests.integ.modin.frame.test_at,test_at_multiindex_neg[key2-IndexingError],Failed: DID NOT RAISE ,failed -13216,tests.integ.modin.frame.test_mask,test_dataframe_mask_cond_non_boolean_negative_test,TypeError: bad operand type for unary ~: 'str',failed -13218,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[by1-include_groups_True-dropna_True-sort_True-group_keys_False-non_transform_returns_series],KeyError: 'index',failed -13222,tests.integ.modin.frame.test_mask,test_dataframe_mask_cond_is_none_negative,AssertionError: exception type does not match with expected type ,failed -13224,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice[True-9-10-10],"AssertionError: DataFrame are different +Series length are different +[left]: 3, Index(['sum', 'mean', 'name'], dtype='object', name='custom_metrics') +[right]: 9, Index(['sum', 'mean', 'name', 'sum', 'mean', 'name', 'sum', 'mean', 'name'], dtype='object')",failed +11188,tests.integ.modin.frame.test_loc,test_df_loc_set_with_scalar_item[col_key4],SNOW-1321196: pandas 2.2.1 migration,xfailed +11189,tests.integ.modin.groupby.test_groupby_dataframe_cumulative,test_groupby_cumulative[True-True-False-True-cummin-DARKSEID],"AssertionError: DataFrame are different DataFrame shape mismatch -[left]: (1, 7) -[right]: (0, 7)",failed -13226,tests.integ.modin.frame.test_at,test_at_multiindex_neg[key3-IndexingError],IndexError: list index out of range,failed -13234,tests.integ.modin.frame.test_mask,test_dataframe_mask_not_implemented,Failed: DID NOT RAISE ,failed -13235,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[by1-include_groups_True-dropna_True-sort_True-group_keys_False-transform_returns_series],KeyError: 'index',failed -13237,tests.integ.modin.frame.test_at,test_raise_set_cell_with_list_like_value_error,"ValueError: could not broadcast input array from shape (2,) into shape (1, 1)",failed -13243,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col6-row3],KeyError: 'buzz1',failed -13257,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[by1-include_groups_True-dropna_True-sort_True-group_keys_False-return_scalar],KeyError: 'index',failed -13266,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col6-row4],"KeyError: ['viper', 'mark i', 'viper']",failed -13280,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[by1-include_groups_True-dropna_True-sort_False-group_keys_True-non_transform_returns_dataframe],KeyError: 'index',failed -13290,tests.integ.modin.groupby.test_groupby_apply,test_non_series_or_dataframe_return_types[date-include_groups_True],[XPASS(strict)] SNOW-1217565,failed -13293,tests.integ.modin.groupby.test_groupby_apply,test_non_series_or_dataframe_return_types[date-include_groups_False],[XPASS(strict)] SNOW-1217565,failed -13294,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice[True--9--1-None],"AssertionError: DataFrame are different +[left]: (5, 6) +[right]: (5, 4)",failed +11191,tests.integ.modin.frame.test_iloc,test_df_iloc_get_key_int_series_with_1k_shape[key2],"ValueError: +Location based indexing can only have [integer, integer slice (START point is +INCLUDED, END point is EXCLUDED), listlike of integers, boolean array] types.",failed +11193,tests.integ.modin.groupby.test_groupby_dataframe_cumulative,test_groupby_cumulative[True-True-False-True-cummax-LEXLUTHOR],"AssertionError: DataFrame are different DataFrame shape mismatch -[left]: (1, 7) -[right]: (0, 7)",failed -13296,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[by1-include_groups_True-dropna_True-sort_False-group_keys_True-transform_returns_dataframe],KeyError: 'index',failed -13300,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col6-row5],KeyError: 'mark vi',failed -13302,tests.integ.modin.frame.test_set_index,test_set_index_with_index_series_name[sample0],"AssertionError: DataFrame.index are different +[left]: (5, 6) +[right]: (5, 4)",failed +11194,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_1[ndarray1-truediv],"ValueError: Unable to coerce to Series, length must be 3: given 4",failed +11197,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[string_col_1-include_groups_False-dropna_False-sort_False-group_keys_False-transform_returns_series],"AssertionError: Series.index are different Attribute ""names"" are different [left]: [None] -[right]: ['num']",failed -13305,tests.integ.modin.frame.test_attrs,test_df_attrs_set_deepcopy,AttributeError: can't set attribute,failed -13308,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice[True--9--1--1],"AssertionError: DataFrame are different +[right]: ['index']",failed +11198,tests.integ.modin.groupby.test_groupby_dataframe_cumulative,test_groupby_cumulative[True-True-False-True-cummax-by1],"AssertionError: DataFrame are different DataFrame shape mismatch -[left]: (1, 7) -[right]: (0, 7)",failed -13309,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[by1-include_groups_True-dropna_True-sort_False-group_keys_True-non_transform_returns_series],KeyError: 'index',failed -13310,tests.integ.modin.groupby.test_groupby_apply,test_return_timedelta[include_groups_True],[XPASS(strict)] SNOW-1619940,failed -13315,tests.integ.modin.groupby.test_groupby_apply,test_return_timedelta[include_groups_False],[XPASS(strict)] SNOW-1619940,failed -13317,tests.integ.modin.groupby.test_groupby_apply,test_timedelta_input[timedelta_column-include_groups_True],[XPASS(strict)] ,failed -13318,tests.integ.modin.frame.test_attrs,test_df_attrs_take,AttributeError: can't set attribute,failed -13320,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice[True--9--1-1],"AssertionError: DataFrame are different +[left]: (5, 5) +[right]: (5, 3)",failed +11202,tests.integ.modin.groupby.test_groupby_dataframe_cumulative,test_groupby_cumulative[True-True-False-True-cummax-DARKSEID],"AssertionError: DataFrame are different DataFrame shape mismatch -[left]: (1, 7) -[right]: (0, 7)",failed -13322,tests.integ.modin.groupby.test_groupby_apply,test_timedelta_input[timedelta_column-include_groups_False],[XPASS(strict)] ,failed -13325,tests.integ.modin.frame.test_attrs,test_df_attrs_add,AttributeError: can't set attribute,failed -13327,tests.integ.modin.groupby.test_groupby_apply,test_timedelta_input[timedelta_index-include_groups_True],[XPASS(strict)] ,failed -13328,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col6-row6],KeyError: 'mark vi',failed -13331,tests.integ.modin.groupby.test_groupby_apply,test_timedelta_input[timedelta_index-include_groups_False],[XPASS(strict)] ,failed -13332,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice[True--9--1-4],"AssertionError: DataFrame are different +[left]: (5, 6) +[right]: (5, 4)",failed +11203,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_1[ndarray1-rtruediv],"ValueError: Unable to coerce to Series, length must be 3: given 4",failed +11205,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[fizz1-row8],KeyError: 'mark vi',failed +11208,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[string_col_1-include_groups_False-dropna_False-sort_False-group_keys_False-return_scalar],"AssertionError: Series are different -DataFrame shape mismatch -[left]: (1, 7) -[right]: (0, 7)",failed -13336,tests.integ.modin.frame.test_attrs,test_df_attrs_concat[0-data0-attrs_list0],AttributeError: can't set attribute,failed -13350,tests.integ.modin.frame.test_attrs,test_df_attrs_concat[0-data1-attrs_list1],AttributeError: can't set attribute,failed -13351,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[by1-include_groups_True-dropna_True-sort_False-group_keys_True-transform_returns_series],KeyError: 'index',failed -13360,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[by1-include_groups_True-dropna_True-sort_False-group_keys_True-return_scalar],KeyError: 'index',failed -13361,tests.integ.modin.frame.test_attrs,test_df_attrs_concat[0-data2-attrs_list2],AttributeError: can't set attribute,failed -13363,tests.integ.modin.frame.test_mask,test_dataframe_mask_with_dataframe_cond_single_index_different_names_2,"AssertionError: DataFrame.index are different +Series values are different (100.0 %) +[index]: [k0, k1, nan] +[left]: [x +int_col 44 +dtype: int64_x +int_col 14.666667 +dtype: float64_k0, x +int_col 14 +dtype: int64_x +int_col 14.0 +dtype: float64_k1, x +int_col 17 +dtype: int64_x +int_col 17.0 +dtype: float64_None] +[right]: [44_14.666666666666666_k0, 14_14.0_k1, 17_17.0_None] +At positional index 0, first diff: x +int_col 44 +dtype: int64_x +int_col 14.666667 +dtype: float64_k0 != 44_14.666666666666666_k0",failed +11211,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[fizz1-row9],AssertionError,failed +11213,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_1[ndarray1-floordiv],"ValueError: Unable to coerce to Series, length must be 3: given 4",failed +11217,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[fizz1-row10],AssertionError,failed +11218,tests.integ.modin.groupby.test_groupby_dataframe_cumulative,test_groupby_cumulative[True-True-False-False-cummin-LEXLUTHOR],"AssertionError: DataFrame are different -Attribute ""names"" are different -[left]: [None] -[right]: ['B']",failed -13373,tests.integ.modin.frame.test_attrs,test_df_attrs_concat[1-data0-attrs_list0],AttributeError: can't set attribute,failed -13374,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[by1-include_groups_True-dropna_True-sort_False-group_keys_False-non_transform_returns_dataframe],KeyError: 'index',failed -13378,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col6-row7],KeyError: 'mark vi',failed -13379,tests.integ.modin.frame.test_setitem,test_df_setitem_df_value[int-key1],ValueError: Columns must be same length as key,failed -13386,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[by1-include_groups_True-dropna_True-sort_False-group_keys_False-transform_returns_dataframe],KeyError: 'index',failed -13390,tests.integ.modin.frame.test_mask,test_dataframe_mask_with_duplicated_index_aligned[10-cond_frame0],"AssertionError: DataFrame.index are different +DataFrame shape mismatch +[left]: (5, 6) +[right]: (5, 4)",failed +11220,tests.integ.modin.frame.test_set_index,test_set_index_pass_single_array[True-False-frame_of_ints_and_timedelta-Index],"TypeError: The parameter ""keys"" may be a column key, one-dimensional array, or a list containing only valid column keys and one-dimensional arrays. Received column of type ",failed +11222,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_1[ndarray1-rfloordiv],"ValueError: Unable to coerce to Series, length must be 3: given 4",failed +11224,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[by1-include_groups_True-dropna_True-sort_True-group_keys_True-non_transform_returns_dataframe],KeyError: 'index',failed +11225,tests.integ.modin.groupby.test_groupby_dataframe_cumulative,test_groupby_cumulative[True-True-False-False-cummin-by1],"AssertionError: DataFrame are different -Attribute ""names"" are different -[left]: [None] -[right]: ['index']",failed -13398,tests.integ.modin.frame.test_setitem,test_df_setitem_df_value[int-key2],TypeError: unhashable type: 'Series',failed -13399,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice[True--9-1-4],"AssertionError: DataFrame are different +DataFrame shape mismatch +[left]: (5, 5) +[right]: (5, 3)",failed +11228,tests.integ.modin.frame.test_loc,test_df_loc_set_with_column_wise_list_like_item[list--item2-A],"ValueError: could not broadcast input array from shape (4,) into shape (2, 1)",failed +11229,tests.integ.modin.groupby.test_groupby_dataframe_cumulative,test_groupby_cumulative[True-True-False-False-cummin-DARKSEID],"AssertionError: DataFrame are different DataFrame shape mismatch -[left]: (1, 7) -[right]: (0, 7)",failed -13400,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[by1-include_groups_True-dropna_True-sort_False-group_keys_False-non_transform_returns_series],KeyError: 'index',failed -13401,tests.integ.modin.frame.test_attrs,test_df_attrs_concat[1-data1-attrs_list1],AttributeError: can't set attribute,failed -13404,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col6-row8],KeyError: 'mark vi',failed -13417,tests.integ.modin.frame.test_attrs,test_df_attrs_concat[1-data2-attrs_list2],AttributeError: can't set attribute,failed -13420,tests.integ.modin.frame.test_mask,test_dataframe_mask_with_duplicated_index_aligned[10-cond_frame1],"AssertionError: DataFrame.index are different +[left]: (5, 6) +[right]: (5, 4)",failed +11232,tests.integ.modin.groupby.test_groupby_dataframe_cumulative,test_groupby_cumulative[True-True-False-False-cummax-LEXLUTHOR],"AssertionError: DataFrame are different -Attribute ""names"" are different -[left]: [None] -[right]: ['index']",failed -13422,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[by1-include_groups_True-dropna_True-sort_False-group_keys_False-transform_returns_series],KeyError: 'index',failed -13432,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col6-row9],KeyError: 'buzz1',failed -13438,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[by1-include_groups_True-dropna_True-sort_False-group_keys_False-return_scalar],KeyError: 'index',failed -13441,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[by1-include_groups_True-dropna_False-sort_True-group_keys_True-non_transform_returns_dataframe],reason: SNOW-1229760,xfailed -13453,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[by1-include_groups_True-dropna_False-sort_True-group_keys_True-transform_returns_dataframe],KeyError: 'index',failed -13456,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[by1-include_groups_True-dropna_False-sort_True-group_keys_True-non_transform_returns_series],reason: SNOW-1229760,xfailed -13459,tests.integ.modin.frame.test_mask,test_dataframe_mask_with_duplicated_index_aligned[other1-cond_frame0],"AssertionError: DataFrame.index are different +DataFrame shape mismatch +[left]: (5, 6) +[right]: (5, 4)",failed +11233,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[by1-include_groups_True-dropna_True-sort_True-group_keys_True-transform_returns_dataframe],KeyError: 'index',failed +11235,tests.integ.modin.frame.test_loc,test_df_loc_set_with_column_wise_list_like_item[list--item2-X],"ValueError: could not broadcast input array from shape (4,) into shape (2, 1)",failed +11236,tests.integ.modin.groupby.test_groupby_dataframe_cumulative,test_groupby_cumulative[True-True-False-False-cummax-by1],"AssertionError: DataFrame are different -Attribute ""names"" are different -[left]: [None] -[right]: ['index']",failed -13462,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col6-row10],KeyError: 'buzz1',failed -13471,tests.integ.modin.frame.test_setitem,test_df_setitem_df_value[int-key5],TypeError: unhashable type: 'Series',failed -13472,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[by1-include_groups_True-dropna_False-sort_True-group_keys_True-transform_returns_series],KeyError: 'index',failed -13481,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[by1-include_groups_True-dropna_False-sort_True-group_keys_True-return_scalar],KeyError: 'index',failed -13482,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[by1-include_groups_True-dropna_False-sort_True-group_keys_False-non_transform_returns_dataframe],reason: SNOW-1229760,xfailed -13497,tests.integ.modin.frame.test_setitem,test_df_setitem_df_value[int-key6],TypeError: unhashable type: 'Series',failed -13500,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[by1-include_groups_True-dropna_False-sort_True-group_keys_False-transform_returns_dataframe],KeyError: 'index',failed -13501,tests.integ.modin.frame.test_mask,test_dataframe_mask_with_duplicated_index_aligned[other1-cond_frame1],"AssertionError: DataFrame.index are different +DataFrame shape mismatch +[left]: (5, 5) +[right]: (5, 3)",failed +11237,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[fizz1-row11],AssertionError,failed +11239,tests.integ.modin.groupby.test_groupby_dataframe_cumulative,test_groupby_cumulative[True-True-False-False-cummax-DARKSEID],"AssertionError: DataFrame are different -Attribute ""names"" are different -[left]: [None] -[right]: ['index']",failed -13504,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[by1-include_groups_True-dropna_False-sort_True-group_keys_False-non_transform_returns_series],reason: SNOW-1229760,xfailed -13525,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[by1-include_groups_True-dropna_False-sort_True-group_keys_False-transform_returns_series],KeyError: 'index',failed -13526,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col6-row11],KeyError: 'buzz1',failed -13528,tests.integ.modin.frame.test_setitem,test_df_setitem_df_value[timedelta64[ns]-key1],ValueError: Columns must be same length as key,failed -13540,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[by1-include_groups_True-dropna_False-sort_True-group_keys_False-return_scalar],KeyError: 'index',failed -13542,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[by1-include_groups_True-dropna_False-sort_False-group_keys_True-non_transform_returns_dataframe],reason: SNOW-1229760,xfailed -13555,tests.integ.modin.frame.test_setitem,test_df_setitem_df_value[timedelta64[ns]-key2],TypeError: unhashable type: 'Series',failed -13560,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col6-row12],KeyError: 'buzz1',failed -13561,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[by1-include_groups_True-dropna_False-sort_False-group_keys_True-transform_returns_dataframe],KeyError: 'index',failed -13563,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[by1-include_groups_True-dropna_False-sort_False-group_keys_True-non_transform_returns_series],reason: SNOW-1229760,xfailed -13564,tests.integ.modin.frame.test_mask,test_dataframe_mask_with_duplicated_index_aligned[other2-cond_frame0],"AssertionError: DataFrame.index are different +DataFrame shape mismatch +[left]: (5, 6) +[right]: (5, 4)",failed +11240,tests.integ.modin.frame.test_loc,test_df_loc_set_with_column_wise_list_like_item[list--item2-col_key2],"ValueError: could not broadcast input array from shape (4,) into shape (2, 1)",failed +11242,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[fizz1-row12],AssertionError: Got type: ,failed +11244,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[by1-include_groups_True-dropna_True-sort_True-group_keys_True-non_transform_returns_series],KeyError: 'index',failed +11245,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[fizz1-row13],AssertionError: Got type: ,failed +11247,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_1[ndarray1-mod],"ValueError: Unable to coerce to Series, length must be 3: given 4",failed +11249,tests.integ.modin.frame.test_loc,test_df_loc_set_with_column_wise_list_like_item[list--item2-col_key3],"ValueError: could not broadcast input array from shape (4,) into shape (2, 1)",failed +11250,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[fizz1-row14],AssertionError,failed +11251,tests.integ.modin.groupby.test_groupby_dataframe_cumulative,test_groupby_cumulative[True-False-True-True-cummin-LEXLUTHOR],"AssertionError: DataFrame are different -Attribute ""names"" are different -[left]: [None] -[right]: ['index']",failed -13585,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[by1-include_groups_True-dropna_False-sort_False-group_keys_True-transform_returns_series],KeyError: 'index',failed -13592,tests.integ.modin.frame.test_mask,test_dataframe_mask_with_duplicated_index_aligned[other2-cond_frame1],"AssertionError: DataFrame.index are different +DataFrame shape mismatch +[left]: (5, 6) +[right]: (5, 4)",failed +11252,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_1[ndarray1-rmod],"ValueError: Unable to coerce to Series, length must be 3: given 4",failed +11253,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col1-mark i],AssertionError,failed +11254,tests.integ.modin.frame.test_iloc,test_df_iloc_get_key_scalar[row--8],IndexError: index -8 is out of bounds for axis 0 with size 7,failed +11255,tests.integ.modin.groupby.test_groupby_dataframe_cumulative,test_groupby_cumulative[True-False-True-True-cummin-by1],"AssertionError: DataFrame are different -Attribute ""names"" are different -[left]: [None] -[right]: ['index']",failed -13594,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col6-row13],KeyError: 'buzz1',failed -13597,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice_with_unordered_index[1-1-None],"AssertionError: DataFrame are different +DataFrame shape mismatch +[left]: (5, 5) +[right]: (5, 3)",failed +11256,tests.integ.modin.frame.test_loc,test_df_loc_set_with_column_wise_list_like_item[list--item2-col_key4],"ValueError: could not broadcast input array from shape (4,) into shape (2, 1)",failed +11257,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[by1-include_groups_True-dropna_True-sort_True-group_keys_True-transform_returns_series],KeyError: 'index',failed +11258,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col1-row1],AssertionError,failed +11259,tests.integ.modin.groupby.test_groupby_dataframe_cumulative,test_groupby_cumulative[True-False-True-True-cummin-DARKSEID],"AssertionError: DataFrame are different DataFrame shape mismatch -[left]: (1, 7) -[right]: (4, 7)",failed -13602,tests.integ.modin.frame.test_setitem,test_df_setitem_df_value[timedelta64[ns]-key5],TypeError: unhashable type: 'Series',failed -13606,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice_with_unordered_index[1-1-1],"AssertionError: DataFrame are different +[left]: (5, 6) +[right]: (5, 4)",failed +11260,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_1[ndarray1-pow],"ValueError: Unable to coerce to Series, length must be 3: given 4",failed +11261,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col1-row2],AssertionError: Got type: ,failed +11262,tests.integ.modin.groupby.test_groupby_dataframe_cumulative,test_groupby_cumulative[True-False-True-True-cummax-LEXLUTHOR],"AssertionError: DataFrame are different DataFrame shape mismatch -[left]: (0, 7) -[right]: (1, 7)",failed -13613,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice_with_unordered_index[1-1-6],"AssertionError: DataFrame are different +[left]: (5, 6) +[right]: (5, 4)",failed +11263,tests.integ.modin.frame.test_iloc,test_df_iloc_get_key_scalar[row-7],IndexError: positional indexers are out-of-bounds,failed +11264,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col1-row3],"AssertionError: DataFrame.index are different + +DataFrame.index levels are different +[left]: 1, Index(['mark v', 'mark vi'], dtype='object') +[right]: 2, MultiIndex([('mark i', 'mark v'), + ('mark i', 'mark vi')], + )",failed +11265,tests.integ.modin.groupby.test_groupby_dataframe_cumulative,test_groupby_cumulative[True-False-True-True-cummax-by1],"AssertionError: DataFrame are different DataFrame shape mismatch -[left]: (0, 7) -[right]: (2, 7)",failed -13617,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col6-row14],KeyError: 'buzz1',failed -13619,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[by1-include_groups_True-dropna_False-sort_False-group_keys_True-return_scalar],KeyError: 'index',failed -13620,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[by1-include_groups_True-dropna_False-sort_False-group_keys_False-non_transform_returns_dataframe],reason: SNOW-1229760,xfailed -13629,tests.integ.modin.frame.test_mask,test_dataframe_mask_with_duplicated_index_unaligned,pandas.errors.InvalidIndexError,failed -13632,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[by1-include_groups_True-dropna_False-sort_False-group_keys_False-transform_returns_dataframe],KeyError: 'index',failed -13633,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice_with_unordered_index[1-4-None],KeyError: 3,failed -13634,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[by1-include_groups_True-dropna_False-sort_False-group_keys_False-non_transform_returns_series],reason: SNOW-1229760,xfailed -13645,tests.integ.modin.frame.test_mask,test_dataframe_mask_with_duplicated_columns_negative[cond_column_names0-None-Multiple columns are mapped to each label in ['A'] in DataFrame condition],"AssertionError: Regex pattern did not match. - Regex: ""Multiple\\ columns\\ are\\ mapped\\ to\\ each\\ label\\ in\\ \\['A'\\]\\ in\\ DataFrame\\ condition"" - Input: 'cannot reindex on an axis with duplicate labels'",failed -13647,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[by1-include_groups_True-dropna_False-sort_False-group_keys_False-transform_returns_series],KeyError: 'index',failed -13655,tests.integ.modin.frame.test_setitem,test_df_setitem_df_value[timedelta64[ns]-key6],TypeError: unhashable type: 'Series',failed -13660,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice_with_unordered_index[1-4-1],KeyError: 3,failed -13661,tests.integ.modin.frame.test_mask,test_dataframe_mask_with_duplicated_columns_negative[None-others_column_names1-Multiple columns are mapped to each label in ['C'] in DataFrame other],AssertionError: exception type does not match with expected type ,failed -13666,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[by1-include_groups_True-dropna_False-sort_False-group_keys_False-return_scalar],KeyError: 'index',failed -13669,tests.integ.modin.frame.test_setitem,test_df_setitem_df_value_dedup_columns[list-key0],"AssertionError: DataFrame are different +[left]: (5, 5) +[right]: (5, 3)",failed +11266,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_1[ndarray1-rpow],"ValueError: Unable to coerce to Series, length must be 3: given 4",failed +11267,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[by1-include_groups_True-dropna_True-sort_True-group_keys_True-return_scalar],KeyError: 'index',failed +11268,tests.integ.modin.groupby.test_groupby_dataframe_cumulative,test_groupby_cumulative[True-False-True-True-cummax-DARKSEID],"AssertionError: DataFrame are different DataFrame shape mismatch -[left]: (3, 3) -[right]: (3, 2)",failed -13676,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col7-mark i],KeyError: 'buzz1',failed -13678,tests.integ.modin.frame.test_mask,test_dataframe_mask_with_duplicated_columns_negative[cond_column_names2-others_column_names2-Multiple columns are mapped to each label in ['C'] in DataFrame condition],"AssertionError: Regex pattern did not match. - Regex: ""Multiple\\ columns\\ are\\ mapped\\ to\\ each\\ label\\ in\\ \\['C'\\]\\ in\\ DataFrame\\ condition"" - Input: 'cannot reindex on an axis with duplicate labels'",failed -13681,tests.integ.modin.frame.test_setitem,test_df_setitem_df_value_dedup_columns[list-key1],"AssertionError: DataFrame are different +[left]: (5, 6) +[right]: (5, 4)",failed +11269,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col1-row4],"KeyError: ['viper', 'mark i', 'viper']",failed +11270,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_1[index1-add],"ValueError: Unable to coerce to Series, length must be 3: given 4",failed +11273,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[by1-include_groups_True-dropna_True-sort_True-group_keys_False-non_transform_returns_dataframe],KeyError: 'index',failed +11275,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_1[index1-radd],"ValueError: Unable to coerce to Series, length must be 3: given 4",failed +11276,tests.integ.modin.groupby.test_groupby_dataframe_cumulative,test_groupby_cumulative[True-False-True-False-cummin-LEXLUTHOR],"AssertionError: DataFrame are different DataFrame shape mismatch -[left]: (3, 4) -[right]: (3, 3)",failed -13688,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[by1-include_groups_False-dropna_True-sort_True-group_keys_True-non_transform_returns_dataframe],KeyError: 'index',failed -13694,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice_with_unordered_index[1-4-4],KeyError: 3,failed -13703,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[by1-include_groups_False-dropna_True-sort_True-group_keys_True-transform_returns_dataframe],KeyError: 'index',failed -13713,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col7-row1],KeyError: 'buzz1',failed -13721,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[by1-include_groups_False-dropna_True-sort_True-group_keys_True-non_transform_returns_series],KeyError: 'index',failed -13724,tests.integ.modin.frame.test_setitem,test_df_setitem_df_value_dedup_columns[series-key0],TypeError: unhashable type: 'Series',failed -13731,tests.integ.modin.frame.test_mask,test_mask_series_other_axis_not_specified,"AssertionError: Regex pattern did not match. - Regex: 'df.mask requires an axis parameter \\(0 or 1\\) when given a Series' - Input: 'Must specify axis=0 or 1'",failed -13733,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[by1-include_groups_False-dropna_True-sort_True-group_keys_True-transform_returns_series],KeyError: 'index',failed -13744,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col7-row2],KeyError: 'buzz1',failed -13749,tests.integ.modin.frame.test_setitem,test_df_setitem_df_value_dedup_columns[series-key1],TypeError: unhashable type: 'Series',failed -13751,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[by1-include_groups_False-dropna_True-sort_True-group_keys_True-return_scalar],KeyError: 'index',failed -13755,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice_with_unordered_index[1-4-6],KeyError: 3,failed -13764,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice_with_unordered_index[1-6-None],"AssertionError: DataFrame are different +[left]: (5, 6) +[right]: (5, 4)",failed +11277,tests.integ.modin.frame.test_loc,test_df_loc_set_with_column_wise_list_like_item[list--item2-None],"ValueError: could not broadcast input array from shape (4,) into shape (2, 1)",failed +11278,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_1[index1-sub],"ValueError: Unable to coerce to Series, length must be 3: given 4",failed +11279,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[by1-include_groups_True-dropna_True-sort_True-group_keys_False-transform_returns_dataframe],KeyError: 'index',failed +11280,tests.integ.modin.groupby.test_groupby_dataframe_cumulative,test_groupby_cumulative[True-False-True-False-cummin-by1],"AssertionError: DataFrame are different DataFrame shape mismatch -[left]: (6, 7) -[right]: (3, 7)",failed -13769,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[by1-include_groups_False-dropna_True-sort_True-group_keys_False-non_transform_returns_dataframe],KeyError: 'index',failed -13777,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice_with_unordered_index[1-6-1],"AssertionError: DataFrame are different +[left]: (5, 5) +[right]: (5, 3)",failed +11281,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col1-row5],KeyError: 'mark vi',failed +11284,tests.integ.modin.groupby.test_groupby_dataframe_cumulative,test_groupby_cumulative[True-False-True-False-cummin-DARKSEID],"AssertionError: DataFrame are different DataFrame shape mismatch -[left]: (3, 7) -[right]: (0, 7)",failed -13781,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col7-row3],KeyError: 'buzz1',failed -13782,tests.integ.modin.frame.test_setitem,test_df_setitem_df_value_dedup_columns[series-key2],TypeError: unhashable type: 'Series',failed -13789,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice_with_unordered_index[1-6-4],"AssertionError: DataFrame are different +[left]: (5, 6) +[right]: (5, 4)",failed +11286,tests.integ.modin.frame.test_iloc,test_df_iloc_get_key_scalar[row-52879115],IndexError: positional indexers are out-of-bounds,failed +11288,tests.integ.modin.groupby.test_groupby_dataframe_cumulative,test_groupby_cumulative[True-False-True-False-cummax-LEXLUTHOR],"AssertionError: DataFrame are different DataFrame shape mismatch -[left]: (2, 7) -[right]: (0, 7)",failed -13793,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[by1-include_groups_False-dropna_True-sort_True-group_keys_False-transform_returns_dataframe],KeyError: 'index',failed -13802,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice_with_unordered_index[1-6-6],"AssertionError: DataFrame are different +[left]: (5, 6) +[right]: (5, 4)",failed +11291,tests.integ.modin.groupby.test_groupby_dataframe_cumulative,test_groupby_cumulative[True-False-True-False-cummax-by1],"AssertionError: DataFrame are different DataFrame shape mismatch -[left]: (4, 7) -[right]: (1, 7)",failed -13803,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col7-row4],"KeyError: ['viper', 'mark i', 'viper']",failed -13813,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[by1-include_groups_False-dropna_True-sort_True-group_keys_False-non_transform_returns_series],KeyError: 'index',failed -13826,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[by1-include_groups_False-dropna_True-sort_True-group_keys_False-transform_returns_series],KeyError: 'index',failed -13829,tests.integ.modin.frame.test_setitem,test_df_setitem_slice_key_df_value[int-key0],"AssertionError: DataFrame.iloc[:, 1] (column name=""b"") are different +[left]: (5, 5) +[right]: (5, 3)",failed +11292,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[by1-include_groups_True-dropna_True-sort_True-group_keys_False-non_transform_returns_series],KeyError: 'index',failed +11293,tests.integ.modin.frame.test_iloc,test_df_iloc_get_key_scalar[row--9028751],IndexError: index -9028751 is out of bounds for axis 0 with size 7,failed +11296,tests.integ.modin.groupby.test_groupby_dataframe_cumulative,test_groupby_cumulative[True-False-True-False-cummax-DARKSEID],"AssertionError: DataFrame are different -DataFrame.iloc[:, 1] (column name=""b"") values are different (33.33333 %) -[index]: [0, 1, 2] -[left]: [nan, 5.0, 6.0] -[right]: [40, 5, 6]",failed -13830,tests.integ.modin.frame.test_axis,test_set_columns_index_name[5],"AssertionError: Index are different +DataFrame shape mismatch +[left]: (5, 6) +[right]: (5, 4)",failed +11302,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[by1-include_groups_True-dropna_True-sort_True-group_keys_False-transform_returns_series],KeyError: 'index',failed +11305,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_1[index1-rsub],"ValueError: Unable to coerce to Series, length must be 3: given 4",failed +11307,tests.integ.modin.groupby.test_groupby_dataframe_cumulative,test_groupby_cumulative[True-False-False-True-cummin-LEXLUTHOR],"AssertionError: DataFrame are different -Attribute ""names"" are different -[left]: [None] -[right]: [5]",failed -13841,tests.integ.modin.frame.test_setitem,test_df_setitem_slice_key_df_value[int-key1],"AssertionError: DataFrame.iloc[:, 1] (column name=""b"") are different +DataFrame shape mismatch +[left]: (5, 6) +[right]: (5, 4)",failed +11308,tests.integ.modin.frame.test_set_index,test_set_index_pass_single_array[False-True-frame_of_ints-Index],"TypeError: The parameter ""keys"" may be a column key, one-dimensional array, or a list containing only valid column keys and one-dimensional arrays. Received column of type ",failed +11311,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_1[index1-mul],"ValueError: Unable to coerce to Series, length must be 3: given 4",failed +11312,tests.integ.modin.groupby.test_groupby_dataframe_cumulative,test_groupby_cumulative[True-False-False-True-cummin-by1],"AssertionError: DataFrame are different -DataFrame.iloc[:, 1] (column name=""b"") values are different (66.66667 %) -[index]: [0, 1, 2] -[left]: [nan, nan, 6.0] -[right]: [40, 50, 6]",failed -13844,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[by1-include_groups_False-dropna_True-sort_True-group_keys_False-return_scalar],KeyError: 'index',failed -13847,tests.integ.modin.frame.test_axis,test_set_columns_index_name[5.0],"AssertionError: Index are different +DataFrame shape mismatch +[left]: (5, 5) +[right]: (5, 3)",failed +11313,tests.integ.modin.frame.test_loc,test_df_loc_set_with_column_wise_list_like_item[array--item2-A],"ValueError: could not broadcast input array from shape (4,) into shape (2, 1)",failed +11315,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[by1-include_groups_True-dropna_True-sort_True-group_keys_False-return_scalar],KeyError: 'index',failed +11316,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col1-row6],KeyError: 'mark vi',failed +11318,tests.integ.modin.groupby.test_groupby_dataframe_cumulative,test_groupby_cumulative[True-False-False-True-cummin-DARKSEID],"AssertionError: DataFrame are different -Attribute ""names"" are different -[left]: [None] -[right]: [5.0]",failed -13851,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice_with_unordered_index[-1-1-None],KeyError: 2,failed -13854,tests.integ.modin.frame.test_setitem,test_df_setitem_slice_key_df_value[int-key2],"AssertionError: DataFrame.iloc[:, 1] (column name=""b"") are different +DataFrame shape mismatch +[left]: (5, 6) +[right]: (5, 4)",failed +11320,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_1[index1-rmul],"ValueError: Unable to coerce to Series, length must be 3: given 4",failed +11321,tests.integ.modin.groupby.test_groupby_dataframe_cumulative,test_groupby_cumulative[True-False-False-True-cummax-LEXLUTHOR],"AssertionError: DataFrame are different -DataFrame.iloc[:, 1] (column name=""b"") values are different (66.66667 %) -[index]: [0, 1, 2] -[left]: [nan, nan, 6.0] -[right]: [40, 50, 6]",failed -13858,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col7-row5],KeyError: 'mark vi',failed -13860,tests.integ.modin.frame.test_axis,test_set_columns_index_name[index_name2],"AssertionError: Index are different +DataFrame shape mismatch +[left]: (5, 6) +[right]: (5, 4)",failed +11323,tests.integ.modin.frame.test_loc,test_df_loc_set_with_column_wise_list_like_item[array--item2-X],"ValueError: could not broadcast input array from shape (4,) into shape (2, 1)",failed +11325,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[by1-include_groups_True-dropna_True-sort_False-group_keys_True-non_transform_returns_dataframe],KeyError: 'index',failed +11326,tests.integ.modin.groupby.test_groupby_dataframe_cumulative,test_groupby_cumulative[True-False-False-True-cummax-by1],"AssertionError: DataFrame are different -Attribute ""names"" are different -[left]: [None] -[right]: [('5', 5)]",failed -13863,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[by1-include_groups_False-dropna_True-sort_False-group_keys_True-non_transform_returns_dataframe],KeyError: 'index',failed -13871,tests.integ.modin.frame.test_setitem,test_df_setitem_slice_key_df_value[int-key4],"AssertionError: DataFrame.iloc[:, 1] (column name=""b"") are different +DataFrame shape mismatch +[left]: (5, 5) +[right]: (5, 3)",failed +11327,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_1[index1-truediv],"ValueError: Unable to coerce to Series, length must be 3: given 4",failed +11328,tests.integ.modin.groupby.test_groupby_dataframe_cumulative,test_groupby_cumulative[True-False-False-True-cummax-DARKSEID],"AssertionError: DataFrame are different -DataFrame.iloc[:, 1] (column name=""b"") values are different (100.0 %) -[index]: [0, 1, 2] -[left]: [nan, nan, nan] -[right]: [40, 50, 60]",failed -13872,tests.integ.modin.frame.test_axis,test_set_columns_index_name[ c o l ],"AssertionError: Index are different +DataFrame shape mismatch +[left]: (5, 6) +[right]: (5, 4)",failed +11329,tests.integ.modin.frame.test_iloc,test_df_iloc_get_key_scalar[col--7],IndexError: index -7 is out of bounds for axis 0 with size 6,failed +11330,tests.integ.modin.frame.test_loc,test_df_loc_set_with_column_wise_list_like_item[array--item2-col_key2],"ValueError: could not broadcast input array from shape (4,) into shape (2, 1)",failed +11331,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col1-row7],KeyError: 'mark vi',failed +11333,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[by1-include_groups_True-dropna_True-sort_False-group_keys_True-transform_returns_dataframe],KeyError: 'index',failed +11334,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_1[index1-rtruediv],"ValueError: Unable to coerce to Series, length must be 3: given 4",failed +11337,tests.integ.modin.frame.test_loc,test_df_loc_set_with_column_wise_list_like_item[array--item2-col_key3],"ValueError: could not broadcast input array from shape (4,) into shape (2, 1)",failed +11338,tests.integ.modin.frame.test_iloc,test_df_iloc_get_key_scalar[col-6],IndexError: positional indexers are out-of-bounds,failed +11339,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_1[index1-floordiv],"ValueError: Unable to coerce to Series, length must be 3: given 4",failed +11340,tests.integ.modin.groupby.test_groupby_dataframe_cumulative,test_groupby_cumulative[True-False-False-False-cummin-LEXLUTHOR],"AssertionError: DataFrame are different -Attribute ""names"" are different -[left]: [None] -[right]: [' c o l ']",failed -13876,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice_with_unordered_index[-1-1-1],KeyError: 2,failed -13885,tests.integ.modin.frame.test_axis,"test_set_columns_index_name[""col]","AssertionError: Index are different +DataFrame shape mismatch +[left]: (5, 6) +[right]: (5, 4)",failed +11341,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[by1-include_groups_True-dropna_True-sort_False-group_keys_True-non_transform_returns_series],KeyError: 'index',failed +11342,tests.integ.modin.frame.test_loc,test_df_loc_set_with_column_wise_list_like_item[array--item2-col_key4],"ValueError: could not broadcast input array from shape (4,) into shape (2, 1)",failed +11343,tests.integ.modin.groupby.test_groupby_dataframe_cumulative,test_groupby_cumulative[True-False-False-False-cummin-by1],"AssertionError: DataFrame are different -Attribute ""names"" are different -[left]: [None] -[right]: ['""col']",failed -13886,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col7-row6],KeyError: 'mark vi',failed -13887,tests.integ.modin.frame.test_setitem,test_df_setitem_slice_key_df_value[int-key5],"AssertionError: DataFrame.iloc[:, 1] (column name=""b"") are different +DataFrame shape mismatch +[left]: (5, 5) +[right]: (5, 3)",failed +11345,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col1-row8],KeyError: 'mark vi',failed +11346,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_1[index1-rfloordiv],"ValueError: Unable to coerce to Series, length must be 3: given 4",failed +11347,tests.integ.modin.groupby.test_groupby_dataframe_cumulative,test_groupby_cumulative[True-False-False-False-cummin-DARKSEID],"AssertionError: DataFrame are different -DataFrame.iloc[:, 1] (column name=""b"") values are different (33.33333 %) -[index]: [0, 1, 2] -[left]: [nan, 5.0, 6.0] -[right]: [40, 5, 6]",failed -13896,tests.integ.modin.frame.test_setitem,test_df_setitem_slice_key_df_value[int-key6],"AssertionError: DataFrame.iloc[:, 1] (column name=""b"") are different +DataFrame shape mismatch +[left]: (5, 6) +[right]: (5, 4)",failed +11348,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col1-row9],AssertionError,failed +11349,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[by1-include_groups_True-dropna_True-sort_False-group_keys_True-transform_returns_series],KeyError: 'index',failed +11350,tests.integ.modin.frame.test_loc,test_df_loc_set_with_column_wise_list_like_item[array--item2-None],"ValueError: could not broadcast input array from shape (4,) into shape (2, 1)",failed +11351,tests.integ.modin.groupby.test_groupby_dataframe_cumulative,test_groupby_cumulative[True-False-False-False-cummax-LEXLUTHOR],"AssertionError: DataFrame are different -DataFrame.iloc[:, 1] (column name=""b"") values are different (66.66667 %) -[index]: [0, 1, 2] -[left]: [4.0, nan, nan] -[right]: [4, 50, 60]",failed -13899,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice_with_unordered_index[-1-1-4],KeyError: 2,failed -13906,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[by1-include_groups_False-dropna_True-sort_False-group_keys_True-transform_returns_dataframe],KeyError: 'index',failed -13910,tests.integ.modin.frame.test_melt,test_melt_general_path[data0],AttributeError: 'DataFrame' object has no attribute 'ordered_dataframe',failed -13912,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col7-row7],KeyError: 'mark vi',failed -13914,tests.integ.modin.frame.test_setitem,test_df_setitem_slice_key_df_value[int-key8],"AssertionError: DataFrame.iloc[:, 1] (column name=""b"") are different +DataFrame shape mismatch +[left]: (5, 6) +[right]: (5, 4)",failed +11352,tests.integ.modin.frame.test_iloc,test_df_iloc_get_key_scalar[col--8],IndexError: index -8 is out of bounds for axis 0 with size 7,failed +11353,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_1[index1-mod],"ValueError: Unable to coerce to Series, length must be 3: given 4",failed +11355,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col1-row10],AssertionError,failed +11357,tests.integ.modin.groupby.test_groupby_dataframe_cumulative,test_groupby_cumulative[True-False-False-False-cummax-by1],"AssertionError: DataFrame are different -DataFrame.iloc[:, 1] (column name=""b"") values are different (66.66667 %) -[index]: [0, 1, 2] -[left]: [nan, 5.0, nan] -[right]: [40, 5, 60]",failed -13919,tests.integ.modin.frame.test_melt,test_melt_general_path[data1],AttributeError: 'DataFrame' object has no attribute 'ordered_dataframe',failed -13921,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[by1-include_groups_False-dropna_True-sort_False-group_keys_True-non_transform_returns_series],KeyError: 'index',failed -13925,tests.integ.modin.frame.test_setitem,test_df_setitem_slice_key_df_value[int-key9],"AssertionError: DataFrame.iloc[:, 1] (column name=""b"") are different +DataFrame shape mismatch +[left]: (5, 5) +[right]: (5, 3)",failed +11359,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col1-row11],AssertionError,failed +11361,tests.integ.modin.groupby.test_groupby_dataframe_cumulative,test_groupby_cumulative[True-False-False-False-cummax-DARKSEID],"AssertionError: DataFrame are different -DataFrame.iloc[:, 1] (column name=""b"") values are different (66.66667 %) -[index]: [0, 1, 2] -[left]: [nan, nan, 6.0] -[right]: [40, 50, 6]",failed -13928,tests.integ.modin.frame.test_melt,test_melt_general_path[data2],AttributeError: 'DataFrame' object has no attribute 'ordered_dataframe',failed -13933,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[by1-include_groups_False-dropna_True-sort_False-group_keys_True-transform_returns_series],KeyError: 'index',failed -13934,tests.integ.modin.frame.test_setitem,test_df_setitem_slice_key_df_value[timedelta64[ns]-key0],"AssertionError: DataFrame.iloc[:, 1] (column name=""b"") are different +DataFrame shape mismatch +[left]: (5, 6) +[right]: (5, 4)",failed +11364,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col1-row12],AssertionError: Got type: ,failed +11365,tests.integ.modin.frame.test_iloc,test_df_iloc_get_key_scalar[col-7],IndexError: positional indexers are out-of-bounds,failed +11367,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[by1-include_groups_True-dropna_True-sort_False-group_keys_True-return_scalar],KeyError: 'index',failed +11368,tests.integ.modin.frame.test_apply,test_apply_axis1_with_dynamic_pivot_and_with_3rd_party_libraries_and_decorator[packages1-9],TODO: SNOW-1261830 need to support PandasSeriesType annotation.,xfailed +11371,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col1-row13],AssertionError: Got type: ,failed +11377,tests.integ.modin.frame.test_iloc,test_df_iloc_get_key_scalar[col-52879115],IndexError: positional indexers are out-of-bounds,failed +11378,tests.integ.modin.groupby.test_groupby_dataframe_cumulative,test_groupby_cumulative[False-True-True-True-cummin-LEXLUTHOR],"AssertionError: DataFrame are different -DataFrame.iloc[:, 1] (column name=""b"") values are different (33.33333 %) -[index]: [0, 1, 2] -[left]: [-9223372036854775808, 5, 6] -[right]: [40, 5, 6]",failed -13935,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[True-keep-True-min-group-0-0-NotImplementedError],Failed: DID NOT RAISE ,failed -13937,tests.integ.modin.frame.test_melt,test_melt_general_path[data3],AttributeError: 'DataFrame' object has no attribute 'ordered_dataframe',failed -13939,tests.integ.modin.frame.test_axis,"test_set_columns_index_name[""c""""ol]","AssertionError: Index are different +DataFrame shape mismatch +[left]: (5, 6) +[right]: (5, 4)",failed +11381,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[by1-include_groups_True-dropna_True-sort_False-group_keys_False-non_transform_returns_dataframe],KeyError: 'index',failed +11384,tests.integ.modin.groupby.test_groupby_dataframe_cumulative,test_groupby_cumulative[False-True-True-True-cummin-by1],"AssertionError: DataFrame are different -Attribute ""names"" are different -[left]: [None] -[right]: ['""c""""ol']",failed -13940,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[True-keep-True-min-None--1-0-NotImplementedError],Failed: DID NOT RAISE ,failed -13943,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[True-keep-True-min-group-0-1-NotImplementedError],Failed: DID NOT RAISE ,failed -13945,tests.integ.modin.frame.test_melt,test_melt_general_path[data4],AttributeError: 'DataFrame' object has no attribute 'ordered_dataframe',failed -13946,tests.integ.modin.frame.test_setitem,test_df_setitem_slice_key_df_value[timedelta64[ns]-key1],"AssertionError: DataFrame.iloc[:, 1] (column name=""b"") are different +DataFrame shape mismatch +[left]: (5, 5) +[right]: (5, 3)",failed +11387,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_1[index1-rmod],"ValueError: Unable to coerce to Series, length must be 3: given 4",failed +11388,tests.integ.modin.groupby.test_groupby_dataframe_cumulative,test_groupby_cumulative[False-True-True-True-cummin-DARKSEID],"AssertionError: DataFrame are different -DataFrame.iloc[:, 1] (column name=""b"") values are different (66.66667 %) -[index]: [0, 1, 2] -[left]: [-9223372036854775808, -9223372036854775808, 6] -[right]: [40, 50, 6]",failed -13948,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[True-keep-True-dense-group-0-0-NotImplementedError],Failed: DID NOT RAISE ,failed -13950,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[by1-include_groups_False-dropna_True-sort_False-group_keys_True-return_scalar],KeyError: 'index',failed -13952,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[True-keep-True-dense-None--1-0-NotImplementedError],Failed: DID NOT RAISE ,failed -13954,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice_with_unordered_index[-1-1-6],KeyError: 2,failed -13955,tests.integ.modin.frame.test_axis,test_set_columns_index_name['col],"AssertionError: Index are different +DataFrame shape mismatch +[left]: (5, 6) +[right]: (5, 4)",failed +11391,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_1[index1-pow],"ValueError: Unable to coerce to Series, length must be 3: given 4",failed +11393,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col1-row14],AssertionError,failed +11396,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col2-mark i],"AssertionError: Series.index are different -Attribute ""names"" are different -[left]: [None] -[right]: [''col']",failed -13956,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[True-keep-True-dense-group-0-1-NotImplementedError],Failed: DID NOT RAISE ,failed -13957,tests.integ.modin.frame.test_setitem,test_df_setitem_slice_key_df_value[timedelta64[ns]-key2],"AssertionError: DataFrame.iloc[:, 1] (column name=""b"") are different +Series.index levels are different +[left]: 2, MultiIndex([('mark i', 'mark v'), + ('mark i', 'mark vi')], + ) +[right]: 1, Index(['mark v', 'mark vi'], dtype='object')",failed +11397,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_1[index1-rpow],"ValueError: Unable to coerce to Series, length must be 3: given 4",failed +11399,tests.integ.modin.frame.test_set_index,test_set_index_pass_single_array[False-True-frame_of_ints_and_timedelta-Index],"TypeError: The parameter ""keys"" may be a column key, one-dimensional array, or a list containing only valid column keys and one-dimensional arrays. Received column of type ",failed +11400,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col2-row1],"AssertionError: Series.index are different -DataFrame.iloc[:, 1] (column name=""b"") values are different (66.66667 %) -[index]: [0, 1, 2] -[left]: [-9223372036854775808, -9223372036854775808, 6] -[right]: [40, 50, 6]",failed -13961,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[True-keep-True-first-group-0-0-NotImplementedError],Failed: DID NOT RAISE ,failed -13962,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice_with_unordered_index[-1-4-None],"AssertionError: DataFrame are different +Series.index levels are different +[left]: 2, MultiIndex([('mark i', 'mark v'), + ('mark i', 'mark vi')], + ) +[right]: 1, Index(['mark v', 'mark vi'], dtype='object')",failed +11402,tests.integ.modin.frame.test_iloc,test_df_iloc_get_key_scalar[col--9028751],IndexError: index -9028751 is out of bounds for axis 0 with size 7,failed +11407,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_1[index_with_name1-add],"ValueError: Unable to coerce to Series, length must be 3: given 4",failed +11418,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_1[index_with_name1-radd],"ValueError: Unable to coerce to Series, length must be 3: given 4",failed +11419,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[by1-include_groups_True-dropna_True-sort_False-group_keys_False-transform_returns_dataframe],KeyError: 'index',failed +11420,tests.integ.modin.frame.test_loc,test_df_loc_set_with_column_wise_list_like_item[tuple--item2-A],"ValueError: could not broadcast input array from shape (4,) into shape (2, 1)",failed +11422,tests.integ.modin.groupby.test_groupby_dataframe_cumulative,test_groupby_cumulative[False-True-True-True-cummax-LEXLUTHOR],"AssertionError: DataFrame are different DataFrame shape mismatch -[left]: (2, 7) -[right]: (3, 7)",failed -13965,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[by1-include_groups_False-dropna_True-sort_False-group_keys_False-non_transform_returns_dataframe],KeyError: 'index',failed -13966,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col7-row8],KeyError: 'mark vi',failed -13968,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[True-keep-True-first-None--1-0-NotImplementedError],Failed: DID NOT RAISE ,failed -13970,tests.integ.modin.frame.test_axis,"test_set_columns_index_name[""col""]","AssertionError: Index are different - -Attribute ""names"" are different -[left]: [None] -[right]: ['""col""']",failed -13973,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[True-keep-True-first-group-0-1-NotImplementedError],Failed: DID NOT RAISE ,failed -13975,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[True-keep-True-max-group-0-0-NotImplementedError],Failed: DID NOT RAISE ,failed -13976,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice_with_unordered_index[-1-4-4],"AssertionError: DataFrame are different +[left]: (5, 6) +[right]: (5, 4)",failed +11423,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col2-row4],"KeyError: ['viper', 'mark i', 'viper']",failed +11426,tests.integ.modin.frame.test_apply,test_udfs_and_udtfs_with_snowpark_object_error_msg,Failed: DID NOT RAISE ,failed +11428,tests.integ.modin.groupby.test_groupby_dataframe_cumulative,test_groupby_cumulative[False-True-True-True-cummax-by1],"AssertionError: DataFrame are different DataFrame shape mismatch -[left]: (0, 7) -[right]: (1, 7)",failed -13977,tests.integ.modin.frame.test_setitem,test_df_setitem_slice_key_df_value[timedelta64[ns]-key4],"AssertionError: DataFrame.iloc[:, 1] (column name=""b"") are different - -DataFrame.iloc[:, 1] (column name=""b"") values are different (100.0 %) -[index]: [0, 1, 2] -[left]: [-9223372036854775808, -9223372036854775808, -9223372036854775808] -[right]: [40, 50, 60]",failed -13979,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[True-keep-True-max-None--1-0-NotImplementedError],Failed: DID NOT RAISE ,failed -13982,tests.integ.modin.frame.test_axis,"test_set_columns_index_name[""COL""]","AssertionError: Index are different +[left]: (5, 5) +[right]: (5, 3)",failed +11429,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_1[index_with_name1-sub],"ValueError: Unable to coerce to Series, length must be 3: given 4",failed +11430,tests.integ.modin.groupby.test_groupby_dataframe_cumulative,test_groupby_cumulative[False-True-True-True-cummax-DARKSEID],"AssertionError: DataFrame are different -Attribute ""names"" are different -[left]: [None] -[right]: ['""COL""']",failed -13984,tests.integ.modin.frame.test_melt,test_melt_general_path[data5],AttributeError: 'DataFrame' object has no attribute 'ordered_dataframe',failed -13985,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[by1-include_groups_False-dropna_True-sort_False-group_keys_False-transform_returns_dataframe],KeyError: 'index',failed -13986,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[True-keep-True-max-group-0-1-NotImplementedError],Failed: DID NOT RAISE ,failed -13989,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[True-keep-True-average-group-0-0-NotImplementedError],Failed: DID NOT RAISE ,failed -13990,tests.integ.modin.frame.test_setitem,test_df_setitem_slice_key_df_value[timedelta64[ns]-key5],"AssertionError: DataFrame.iloc[:, 1] (column name=""b"") are different - -DataFrame.iloc[:, 1] (column name=""b"") values are different (33.33333 %) -[index]: [0, 1, 2] -[left]: [-9223372036854775808, 5, 6] -[right]: [40, 5, 6]",failed -13993,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[True-keep-True-average-None--1-0-NotImplementedError],Failed: DID NOT RAISE ,failed -13994,tests.integ.modin.frame.test_axis,test_set_columns_index_name['co''l],"AssertionError: Index are different +DataFrame shape mismatch +[left]: (5, 6) +[right]: (5, 4)",failed +11431,tests.integ.modin.frame.test_loc,test_df_loc_set_with_column_wise_list_like_item[tuple--item2-X],"ValueError: could not broadcast input array from shape (4,) into shape (2, 1)",failed +11432,tests.integ.modin.frame.test_iloc,test_df_iloc_get_native_pd_key_raises_type_error_negative[key0-\\ is\\ not\\ supported\\ as\\ 'value'\\ argument\\.\\ Please\\ convert\\ this\\ to\\ Snowpark\\ pandas\\ objects\\ by\\ calling\\ modin\\.pandas\\.Series\\(\\)/DataFrame\\(\\)-TypeError],"ValueError: +Location based indexing can only have [integer, integer slice (START point is +INCLUDED, END point is EXCLUDED), listlike of integers, boolean array] types.",failed +11433,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[by1-include_groups_True-dropna_True-sort_False-group_keys_False-non_transform_returns_series],KeyError: 'index',failed +11435,tests.integ.modin.frame.test_iloc,test_df_iloc_get_native_pd_key_raises_type_error_negative[key1-\\ is\\ not\\ supported\\ as\\ 'value'\\ argument\\.\\ Please\\ convert\\ this\\ to\\ Snowpark\\ pandas\\ objects\\ by\\ calling\\ modin\\.pandas\\.Series\\(\\)/DataFrame\\(\\)-TypeError],"ValueError: +Location based indexing can only have [integer, integer slice (START point is +INCLUDED, END point is EXCLUDED), listlike of integers, boolean array] types.",failed +11437,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_1[index_with_name1-rsub],"ValueError: Unable to coerce to Series, length must be 3: given 4",failed +11438,tests.integ.modin.frame.test_loc,test_df_loc_set_with_column_wise_list_like_item[tuple--item2-col_key2],"ValueError: could not broadcast input array from shape (4,) into shape (2, 1)",failed +11439,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col2-row5],KeyError: 'mark vi',failed +11442,tests.integ.modin.frame.test_iloc,"test_df_iloc_get_native_pd_key_raises_type_error_negative[key2-\\.iloc\\ requires\\ numeric\\ indexers,\\ got\\ \\[Ellipsis,\\ 1\\]-IndexError]","ValueError: +Location based indexing can only have [integer, integer slice (START point is +INCLUDED, END point is EXCLUDED), listlike of integers, boolean array] types.",failed +11443,tests.integ.modin.groupby.test_groupby_dataframe_cumulative,test_groupby_cumulative[False-True-True-False-cummin-LEXLUTHOR],"AssertionError: DataFrame are different -Attribute ""names"" are different -[left]: [None] -[right]: [''co''l']",failed -13995,tests.integ.modin.frame.test_melt,test_melt_general_path[data6],AttributeError: 'DataFrame' object has no attribute 'ordered_dataframe',failed -13996,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[by1-include_groups_False-dropna_True-sort_False-group_keys_False-non_transform_returns_series],KeyError: 'index',failed -13999,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[True-keep-True-average-group-0-1-NotImplementedError],Failed: DID NOT RAISE ,failed -14001,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[True-keep-False-min-group-0-0-NotImplementedError],Failed: DID NOT RAISE ,failed -14002,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col7-row9],KeyError: 'buzz1',failed -14005,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[True-keep-False-min-None--1-0-NotImplementedError],Failed: DID NOT RAISE ,failed -14006,tests.integ.modin.frame.test_setitem,test_df_setitem_slice_key_df_value[timedelta64[ns]-key6],"AssertionError: DataFrame.iloc[:, 1] (column name=""b"") are different +DataFrame shape mismatch +[left]: (5, 6) +[right]: (5, 4)",failed +11444,tests.integ.modin.frame.test_iloc,test_df_iloc_get_key_raises_indexing_error_negative[key0-Too many indexers],Failed: DID NOT RAISE ,failed +11445,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[by1-include_groups_True-dropna_True-sort_False-group_keys_False-transform_returns_series],KeyError: 'index',failed +11448,tests.integ.modin.frame.test_loc,test_df_loc_set_with_column_wise_list_like_item[tuple--item2-col_key3],"ValueError: could not broadcast input array from shape (4,) into shape (2, 1)",failed +11449,tests.integ.modin.groupby.test_groupby_dataframe_cumulative,test_groupby_cumulative[False-True-True-False-cummin-by1],"AssertionError: DataFrame are different -DataFrame.iloc[:, 1] (column name=""b"") values are different (66.66667 %) -[index]: [0, 1, 2] -[left]: [4, -9223372036854775808, -9223372036854775808] -[right]: [4, 50, 60]",failed -14007,tests.integ.modin.frame.test_melt,test_melt_general_path[data7],AttributeError: 'DataFrame' object has no attribute 'ordered_dataframe',failed -14008,tests.integ.modin.frame.test_axis,test_set_columns_index_name[COL],"AssertionError: Index are different +DataFrame shape mismatch +[left]: (5, 5) +[right]: (5, 3)",failed +11450,tests.integ.modin.frame.test_iloc,test_df_iloc_get_key_raises_indexing_error_negative[key2-Too many indexers],Failed: DID NOT RAISE ,failed +11451,tests.integ.modin.groupby.test_groupby_dataframe_cumulative,test_groupby_cumulative[False-True-True-False-cummin-DARKSEID],"AssertionError: DataFrame are different -Attribute ""names"" are different -[left]: [None] -[right]: ['COL']",failed -14009,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[by1-include_groups_False-dropna_True-sort_False-group_keys_False-transform_returns_series],KeyError: 'index',failed -14011,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[True-keep-False-min-group-0-1-NotImplementedError],Failed: DID NOT RAISE ,failed -14013,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice_with_unordered_index[-1-6-None],KeyError: 7,failed -14015,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[True-keep-False-dense-group-0-0-NotImplementedError],Failed: DID NOT RAISE ,failed -14019,tests.integ.modin.frame.test_melt,test_melt_general_path[data8],AttributeError: 'DataFrame' object has no attribute 'ordered_dataframe',failed -14020,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[True-keep-False-dense-None--1-0-NotImplementedError],Failed: DID NOT RAISE ,failed -14021,tests.integ.modin.frame.test_axis,test_set_columns_index_name[\xff\xfes\x00n\x00o\x00w\x00f\x00l\x00a\x00k\x00e\x00],"AssertionError: Index are different +DataFrame shape mismatch +[left]: (5, 6) +[right]: (5, 4)",failed +11453,tests.integ.modin.frame.test_iloc,test_df_iloc_get_key_raises_indexing_error_negative[key3-indexer may only contain one '...' entry],"ValueError: +Location based indexing can only have [integer, integer slice (START point is +INCLUDED, END point is EXCLUDED), listlike of integers, boolean array] types.",failed +11454,tests.integ.modin.frame.test_loc,test_df_loc_set_with_column_wise_list_like_item[tuple--item2-col_key4],"ValueError: could not broadcast input array from shape (4,) into shape (2, 1)",failed +11455,tests.integ.modin.groupby.test_groupby_dataframe_cumulative,test_groupby_cumulative[False-True-True-False-cummax-LEXLUTHOR],"AssertionError: DataFrame are different -Attribute ""names"" are different -[left]: [None] -[right]: [b'\xff\xfes\x00n\x00o\x00w\x00f\x00l\x00a\x00k\x00e\x00']",failed -14024,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[True-keep-False-dense-group-0-1-NotImplementedError],Failed: DID NOT RAISE ,failed -14025,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[by1-include_groups_False-dropna_True-sort_False-group_keys_False-return_scalar],KeyError: 'index',failed -14027,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[True-keep-False-first-group-0-0-NotImplementedError],Failed: DID NOT RAISE ,failed -14028,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[by1-include_groups_False-dropna_False-sort_True-group_keys_True-non_transform_returns_dataframe],reason: SNOW-1229760,xfailed -14029,tests.integ.modin.frame.test_melt,test_melt_general_path[data9],AttributeError: 'DataFrame' object has no attribute 'ordered_dataframe',failed -14030,tests.integ.modin.frame.test_setitem,test_df_setitem_slice_key_df_value[timedelta64[ns]-key8],"AssertionError: DataFrame.iloc[:, 1] (column name=""b"") are different +DataFrame shape mismatch +[left]: (5, 6) +[right]: (5, 4)",failed +11456,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col2-row6],KeyError: 'mark vi',failed +11458,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[by1-include_groups_True-dropna_True-sort_False-group_keys_False-return_scalar],KeyError: 'index',failed +11459,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[by1-include_groups_True-dropna_False-sort_True-group_keys_True-non_transform_returns_dataframe],reason: SNOW-1229760,xfailed +11460,tests.integ.modin.groupby.test_groupby_dataframe_cumulative,test_groupby_cumulative[False-True-True-False-cummax-by1],"AssertionError: DataFrame are different -DataFrame.iloc[:, 1] (column name=""b"") values are different (66.66667 %) -[index]: [0, 1, 2] -[left]: [-9223372036854775808, 5, -9223372036854775808] -[right]: [40, 5, 60]",failed -14032,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[True-keep-False-first-None--1-0-NotImplementedError],Failed: DID NOT RAISE ,failed -14034,tests.integ.modin.frame.test_axis,test_set_columns_index_name[\u30c1\u30ea\u30cc\u30eb],"AssertionError: Index are different +DataFrame shape mismatch +[left]: (5, 5) +[right]: (5, 3)",failed +11461,tests.integ.modin.frame.test_iloc,test_df_iloc_get_invalid_slice_key_negative[row-key0],"ValueError: +Location based indexing can only have [integer, integer slice (START point is +INCLUDED, END point is EXCLUDED), listlike of integers, boolean array] types.",failed +11462,tests.integ.modin.frame.test_loc,test_df_loc_set_with_column_wise_list_like_item[tuple--item2-None],"ValueError: could not broadcast input array from shape (4,) into shape (2, 1)",failed +11463,tests.integ.modin.groupby.test_groupby_dataframe_cumulative,test_groupby_cumulative[False-True-True-False-cummax-DARKSEID],"AssertionError: DataFrame are different -Attribute ""names"" are different -[left]: [None] -[right]: ['チリヌル']",failed -14037,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col7-row10],KeyError: 'buzz1',failed -14038,tests.integ.modin.frame.test_melt,test_melt_general_path[data10],AttributeError: 'DataFrame' object has no attribute 'ordered_dataframe',failed -14039,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice_with_unordered_index[-1-6-1],KeyError: 7,failed -14041,tests.integ.modin.frame.test_setitem,test_df_setitem_slice_key_df_value[timedelta64[ns]-key9],"AssertionError: DataFrame.iloc[:, 1] (column name=""b"") are different +DataFrame shape mismatch +[left]: (5, 6) +[right]: (5, 4)",failed +11464,tests.integ.modin.frame.test_iloc,test_df_iloc_get_invalid_slice_key_negative[row-key1],"ValueError: +Location based indexing can only have [integer, integer slice (START point is +INCLUDED, END point is EXCLUDED), listlike of integers, boolean array] types.",failed +11467,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_1[index_with_name1-mul],"ValueError: Unable to coerce to Series, length must be 3: given 4",failed +11468,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[by1-include_groups_True-dropna_False-sort_True-group_keys_True-transform_returns_dataframe],KeyError: 'index',failed +11470,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[by1-include_groups_True-dropna_False-sort_True-group_keys_True-non_transform_returns_series],reason: SNOW-1229760,xfailed +11471,tests.integ.modin.frame.test_iloc,test_df_iloc_get_invalid_slice_key_negative[row-key2],"ValueError: +Location based indexing can only have [integer, integer slice (START point is +INCLUDED, END point is EXCLUDED), listlike of integers, boolean array] types.",failed +11473,tests.integ.modin.frame.test_iloc,test_df_iloc_get_invalid_slice_key_negative[col-key0],"ValueError: +Location based indexing can only have [integer, integer slice (START point is +INCLUDED, END point is EXCLUDED), listlike of integers, boolean array] types.",failed +11474,tests.integ.modin.groupby.test_groupby_dataframe_cumulative,test_groupby_cumulative[False-True-False-True-cummin-LEXLUTHOR],"AssertionError: DataFrame are different -DataFrame.iloc[:, 1] (column name=""b"") values are different (66.66667 %) -[index]: [0, 1, 2] -[left]: [-9223372036854775808, -9223372036854775808, 6] -[right]: [40, 50, 6]",failed -14043,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[by1-include_groups_False-dropna_False-sort_True-group_keys_True-transform_returns_dataframe],KeyError: 'index',failed -14044,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[by1-include_groups_False-dropna_False-sort_True-group_keys_True-non_transform_returns_series],reason: SNOW-1229760,xfailed -14047,tests.integ.modin.frame.test_axis,test_set_columns_index_name[\u0e1b\u0e47\u0e19\u0e21\u0e19\u0e38],"AssertionError: Index are different +DataFrame shape mismatch +[left]: (5, 6) +[right]: (5, 4)",failed +11475,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_1[index_with_name1-rmul],"ValueError: Unable to coerce to Series, length must be 3: given 4",failed +11476,tests.integ.modin.groupby.test_groupby_dataframe_cumulative,test_groupby_cumulative[False-True-False-True-cummin-by1],"AssertionError: DataFrame are different -Attribute ""names"" are different -[left]: [None] -[right]: ['ป็นมนุ']",failed -14048,tests.integ.modin.frame.test_melt,test_melt_general_path[data11],AttributeError: 'DataFrame' object has no attribute 'ordered_dataframe',failed -14052,tests.integ.modin.frame.test_melt,test_melt_general_path[data12],AttributeError: 'DataFrame' object has no attribute 'ordered_dataframe',failed -14055,tests.integ.modin.frame.test_setitem,test_df_setitem_df_single_value[int-key0-val_columns0-val_index0],pandas.errors.InvalidIndexError: Reindexing only valid with uniquely valued Index objects,failed -14057,tests.integ.modin.frame.test_axis,test_set_columns_index_name[\u718a\u732b],"AssertionError: Index are different +DataFrame shape mismatch +[left]: (5, 5) +[right]: (5, 3)",failed +11477,tests.integ.modin.frame.test_iloc,test_df_iloc_get_invalid_slice_key_negative[col-key1],"ValueError: +Location based indexing can only have [integer, integer slice (START point is +INCLUDED, END point is EXCLUDED), listlike of integers, boolean array] types.",failed +11479,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[by1-include_groups_True-dropna_False-sort_True-group_keys_True-transform_returns_series],KeyError: 'index',failed +11480,tests.integ.modin.groupby.test_groupby_dataframe_cumulative,test_groupby_cumulative[False-True-False-True-cummin-DARKSEID],"AssertionError: DataFrame are different -Attribute ""names"" are different -[left]: [None] -[right]: ['熊猫']",failed -14058,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice_with_unordered_index[-1-6-4],KeyError: 7,failed -14060,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col7-row11],KeyError: 'buzz1',failed -14061,tests.integ.modin.frame.test_melt,test_melt_general_path[data13],AttributeError: 'DataFrame' object has no attribute 'ordered_dataframe',failed -14062,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[by1-include_groups_False-dropna_False-sort_True-group_keys_True-transform_returns_series],KeyError: 'index',failed -14063,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[True-keep-False-first-group-0-1-NotImplementedError],Failed: DID NOT RAISE ,failed -14066,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[True-keep-False-max-group-0-0-NotImplementedError],Failed: DID NOT RAISE ,failed -14069,tests.integ.modin.frame.test_melt,test_melt_general_path[data14],AttributeError: 'DataFrame' object has no attribute 'ordered_dataframe',failed -14070,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[True-keep-False-max-None--1-0-NotImplementedError],Failed: DID NOT RAISE ,failed -14072,tests.integ.modin.frame.test_axis,"test_set_columns_index_name[{""snow"": {""fla"": ""ke""}}]","AssertionError: Index are different +DataFrame shape mismatch +[left]: (5, 6) +[right]: (5, 4)",failed +11481,tests.integ.modin.frame.test_iloc,test_df_iloc_get_invalid_slice_key_negative[col-key2],"ValueError: +Location based indexing can only have [integer, integer slice (START point is +INCLUDED, END point is EXCLUDED), listlike of integers, boolean array] types.",failed +11482,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_1[index_with_name1-truediv],"ValueError: Unable to coerce to Series, length must be 3: given 4",failed +11483,tests.integ.modin.groupby.test_groupby_dataframe_cumulative,test_groupby_cumulative[False-True-False-True-cummax-LEXLUTHOR],"AssertionError: DataFrame are different -Attribute ""names"" are different -[left]: [None] -[right]: ['{""snow"": {""fla"": ""ke""}}']",failed -14074,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[True-keep-False-max-group-0-1-NotImplementedError],Failed: DID NOT RAISE ,failed -14075,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[by1-include_groups_False-dropna_False-sort_True-group_keys_True-return_scalar],KeyError: 'index',failed -14076,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[by1-include_groups_False-dropna_False-sort_True-group_keys_False-non_transform_returns_dataframe],reason: SNOW-1229760,xfailed -14077,tests.integ.modin.frame.test_melt,test_melt_general_path[data15],AttributeError: 'DataFrame' object has no attribute 'ordered_dataframe',failed -14079,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[True-keep-False-average-group-0-0-NotImplementedError],Failed: DID NOT RAISE ,failed -14083,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[True-keep-False-average-None--1-0-NotImplementedError],Failed: DID NOT RAISE ,failed -14084,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice_with_unordered_index[-1-6-6],KeyError: 7,failed -14087,tests.integ.modin.frame.test_melt,test_melt_general_path[data16],AttributeError: 'DataFrame' object has no attribute 'ordered_dataframe',failed -14089,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[True-keep-False-average-group-0-1-NotImplementedError],Failed: DID NOT RAISE ,failed -14092,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[by1-include_groups_False-dropna_False-sort_True-group_keys_False-transform_returns_dataframe],KeyError: 'index',failed -14094,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[by1-include_groups_False-dropna_False-sort_True-group_keys_False-non_transform_returns_series],reason: SNOW-1229760,xfailed -14097,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[True-top-True-min-group-0-0-NotImplementedError],Failed: DID NOT RAISE ,failed -14103,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[True-top-True-min-None--1-0-NotImplementedError],Failed: DID NOT RAISE ,failed -14109,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[True-top-True-min-group-0-1-NotImplementedError],Failed: DID NOT RAISE ,failed -14110,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[by1-include_groups_False-dropna_False-sort_True-group_keys_False-transform_returns_series],KeyError: 'index',failed -14112,tests.integ.modin.frame.test_setitem,test_df_setitem_df_single_value[int-key0-val_columns0-val_index1],pandas.errors.InvalidIndexError: Reindexing only valid with uniquely valued Index objects,failed -14115,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[True-top-True-dense-group-0-0-NotImplementedError],Failed: DID NOT RAISE ,failed -14119,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[True-top-True-dense-None--1-0-NotImplementedError],Failed: DID NOT RAISE ,failed -14121,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[by1-include_groups_False-dropna_False-sort_True-group_keys_False-return_scalar],KeyError: 'index',failed -14123,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col7-row12],KeyError: 'buzz1',failed -14124,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[by1-include_groups_False-dropna_False-sort_False-group_keys_True-non_transform_returns_dataframe],reason: SNOW-1229760,xfailed -14126,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[True-top-True-dense-group-0-1-NotImplementedError],Failed: DID NOT RAISE ,failed -14128,tests.integ.modin.frame.test_melt,test_melt_general_path[data17],AttributeError: 'DataFrame' object has no attribute 'ordered_dataframe',failed -14130,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[True-top-True-first-group-0-0-NotImplementedError],Failed: DID NOT RAISE ,failed -14134,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[True-top-True-first-None--1-0-NotImplementedError],Failed: DID NOT RAISE ,failed -14136,tests.integ.modin.frame.test_melt,test_melt_general_path[data18],AttributeError: 'DataFrame' object has no attribute 'ordered_dataframe',failed -14137,tests.integ.modin.frame.test_setitem,test_df_setitem_df_single_value[int-key0-val_columns1-val_index0],pandas.errors.InvalidIndexError: Reindexing only valid with uniquely valued Index objects,failed -14141,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[True-top-True-first-group-0-1-NotImplementedError],Failed: DID NOT RAISE ,failed -14144,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[True-top-True-max-group-0-0-NotImplementedError],Failed: DID NOT RAISE ,failed -14145,tests.integ.modin.frame.test_melt,test_melt_general_path[data19],AttributeError: 'DataFrame' object has no attribute 'ordered_dataframe',failed -14149,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[True-top-True-max-None--1-0-NotImplementedError],Failed: DID NOT RAISE ,failed -14152,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col7-row13],KeyError: 'buzz1',failed -14155,tests.integ.modin.frame.test_melt,test_melt_simple_path[data0],AttributeError: 'DataFrame' object has no attribute 'ordered_dataframe',failed -14156,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[True-top-True-max-group-0-1-NotImplementedError],Failed: DID NOT RAISE ,failed -14158,tests.integ.modin.frame.test_setitem,test_df_setitem_df_single_value[int-key0-val_columns1-val_index1],pandas.errors.InvalidIndexError: Reindexing only valid with uniquely valued Index objects,failed -14161,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[True-top-True-average-group-0-0-NotImplementedError],Failed: DID NOT RAISE ,failed -14162,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice_with_unordered_index[2-1-None],KeyError: -1,failed -14165,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[True-top-True-average-None--1-0-NotImplementedError],Failed: DID NOT RAISE ,failed -14168,tests.integ.modin.frame.test_melt,test_melt_simple_path[data1],AttributeError: 'DataFrame' object has no attribute 'ordered_dataframe',failed -14170,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[by1-include_groups_False-dropna_False-sort_False-group_keys_True-transform_returns_dataframe],KeyError: 'index',failed -14172,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[True-top-True-average-group-0-1-NotImplementedError],Failed: DID NOT RAISE ,failed -14173,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[by1-include_groups_False-dropna_False-sort_False-group_keys_True-non_transform_returns_series],reason: SNOW-1229760,xfailed -14178,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[True-top-False-min-group-0-0-NotImplementedError],Failed: DID NOT RAISE ,failed -14179,tests.integ.modin.frame.test_melt,test_melt_simple_path[data2],AttributeError: 'DataFrame' object has no attribute 'ordered_dataframe',failed -14182,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[True-top-False-min-None--1-0-NotImplementedError],Failed: DID NOT RAISE ,failed -14186,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col7-row14],KeyError: 'buzz1',failed -14187,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[True-top-False-min-group-0-1-NotImplementedError],Failed: DID NOT RAISE ,failed -14189,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[by1-include_groups_False-dropna_False-sort_False-group_keys_True-transform_returns_series],KeyError: 'index',failed -14190,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice_with_unordered_index[2-1-1],KeyError: -1,failed -14191,tests.integ.modin.frame.test_setitem,test_df_setitem_df_single_value[int-A-val_columns0-val_index0],ValueError: Length of values (1) does not match length of index (4),failed -14192,tests.integ.modin.frame.test_melt,test_melt_simple_path[data3],AttributeError: 'DataFrame' object has no attribute 'ordered_dataframe',failed -14194,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[True-top-False-dense-group-0-0-NotImplementedError],Failed: DID NOT RAISE ,failed -14196,tests.integ.modin.frame.test_axis,test_set_axis_df_raises_type_error_diff_error_msg[native_df0-axis0-labels0-list is not a valid type for axis.],"AssertionError: Regex pattern did not match. - Regex: 'list is not a valid type for axis.' - Input: ""unhashable type: 'list'""",failed -14198,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[True-top-False-dense-None--1-0-NotImplementedError],Failed: DID NOT RAISE ,failed -14199,tests.integ.modin.frame.test_melt,test_melt_simple_path[data4],AttributeError: 'DataFrame' object has no attribute 'ordered_dataframe',failed -14201,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[True-top-False-dense-group-0-1-NotImplementedError],Failed: DID NOT RAISE ,failed -14202,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[by1-include_groups_False-dropna_False-sort_False-group_keys_True-return_scalar],KeyError: 'index',failed -14204,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[by1-include_groups_False-dropna_False-sort_False-group_keys_False-non_transform_returns_dataframe],reason: SNOW-1229760,xfailed -14207,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[True-top-False-first-group-0-0-NotImplementedError],Failed: DID NOT RAISE ,failed -14208,tests.integ.modin.frame.test_axis,test_set_axis_df_raises_type_error_diff_error_msg[native_df1-axis1-labels1-list is not a valid type for axis.],"AssertionError: Regex pattern did not match. - Regex: 'list is not a valid type for axis.' - Input: ""unhashable type: 'list'""",failed -14209,tests.integ.modin.frame.test_melt,test_melt_simple_path[data5],AttributeError: 'DataFrame' object has no attribute 'ordered_dataframe',failed -14212,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[True-top-False-first-None--1-0-NotImplementedError],Failed: DID NOT RAISE ,failed -14213,tests.integ.modin.frame.test_setitem,test_df_setitem_df_single_value[int-A-val_columns0-val_index1],ValueError: Length of values (1) does not match length of index (4),failed -14215,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice_with_unordered_index[2-1-4],KeyError: -1,failed -14217,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[True-top-False-first-group-0-1-NotImplementedError],Failed: DID NOT RAISE ,failed -14218,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[by1-include_groups_False-dropna_False-sort_False-group_keys_False-transform_returns_dataframe],KeyError: 'index',failed -14219,tests.integ.modin.frame.test_melt,test_melt_simple_path[data6],AttributeError: 'DataFrame' object has no attribute 'ordered_dataframe',failed -14220,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[by1-include_groups_False-dropna_False-sort_False-group_keys_False-non_transform_returns_series],reason: SNOW-1229760,xfailed -14221,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col8-mark i],KeyError: 'buzz1',failed -14223,tests.integ.modin.frame.test_axis,test_set_axis_df_raises_type_error_diff_error_msg[native_df2-axis2-labels2-Index is not a valid type for axis.],"AssertionError: Regex pattern did not match. - Regex: 'Index is not a valid type for axis.' - Input: ""unhashable type: 'Index'""",failed -14224,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[True-top-False-max-group-0-0-NotImplementedError],Failed: DID NOT RAISE ,failed -14227,tests.integ.modin.frame.test_melt,test_melt_simple_path[data7],AttributeError: 'DataFrame' object has no attribute 'ordered_dataframe',failed -14228,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[True-top-False-max-None--1-0-NotImplementedError],Failed: DID NOT RAISE ,failed -14233,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[True-top-False-max-group-0-1-NotImplementedError],Failed: DID NOT RAISE ,failed -14235,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[by1-include_groups_False-dropna_False-sort_False-group_keys_False-transform_returns_series],KeyError: 'index',failed -14237,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[True-top-False-average-group-0-0-NotImplementedError],Failed: DID NOT RAISE ,failed -14238,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice_with_unordered_index[2-1-6],KeyError: -1,failed -14241,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[True-top-False-average-None--1-0-NotImplementedError],Failed: DID NOT RAISE ,failed -14243,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[True-top-False-average-group-0-1-NotImplementedError],Failed: DID NOT RAISE ,failed -14246,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[by1-include_groups_False-dropna_False-sort_False-group_keys_False-return_scalar],KeyError: 'index',failed -14247,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[True-bottom-True-min-group-0-0-NotImplementedError],Failed: DID NOT RAISE ,failed -14249,tests.integ.modin.frame.test_axis,test_set_axis_df_raises_type_error_diff_error_msg[native_df3-axis3-labels3-DataFrame is not a valid type for axis.],"AssertionError: Regex pattern did not match. - Regex: 'DataFrame is not a valid type for axis.' - Input: ""unhashable type: 'DataFrame'""",failed -14250,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[True-bottom-True-min-None--1-0-NotImplementedError],Failed: DID NOT RAISE ,failed -14251,tests.integ.modin.frame.test_melt,test_melt_simple_path[data8],AttributeError: 'DataFrame' object has no attribute 'ordered_dataframe',failed -14253,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[True-bottom-True-min-group-0-1-NotImplementedError],Failed: DID NOT RAISE ,failed -14254,tests.integ.modin.frame.test_setitem,test_df_setitem_df_single_value[int-A-val_columns1-val_index0],ValueError: Length of values (1) does not match length of index (4),failed -14256,tests.integ.modin.frame.test_melt,test_melt_simple_path[data9],AttributeError: 'DataFrame' object has no attribute 'ordered_dataframe',failed -14257,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice_with_unordered_index[2-4-None],KeyError: 2,failed -14258,tests.integ.modin.frame.test_axis,test_set_axis_df_raises_type_error_diff_error_msg[native_df4-axis4-labels4-Series is not a valid type for axis.],"AssertionError: Regex pattern did not match. - Regex: 'Series is not a valid type for axis.' - Input: ""unhashable type: 'Series'""",failed -14259,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[True-bottom-True-dense-group-0-0-NotImplementedError],Failed: DID NOT RAISE ,failed -14260,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[index-include_groups_True-dropna_True-sort_True-group_keys_True-non_transform_returns_dataframe],KeyError: 'index',failed -14261,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col8-row1],KeyError: 'buzz1',failed -14263,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[True-bottom-True-dense-None--1-0-NotImplementedError],Failed: DID NOT RAISE ,failed -14264,tests.integ.modin.frame.test_melt,test_melt_simple_path[data10],AttributeError: 'DataFrame' object has no attribute 'ordered_dataframe',failed -14266,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[True-bottom-True-dense-group-0-1-NotImplementedError],Failed: DID NOT RAISE ,failed -14267,tests.integ.modin.frame.test_axis,test_set_axis_df_raises_type_error_diff_error_msg[native_df5-axis5-labels5-MultiIndex is not a valid type for axis.],"AssertionError: Regex pattern did not match. - Regex: 'MultiIndex is not a valid type for axis.' - Input: ""unhashable type: 'MultiIndex'""",failed -14269,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[True-bottom-True-first-group-0-0-NotImplementedError],Failed: DID NOT RAISE ,failed -14271,tests.integ.modin.frame.test_melt,test_melt_simple_path[data11],AttributeError: 'DataFrame' object has no attribute 'ordered_dataframe',failed -14272,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[True-bottom-True-first-None--1-0-NotImplementedError],Failed: DID NOT RAISE ,failed -14273,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[index-include_groups_True-dropna_True-sort_True-group_keys_True-transform_returns_dataframe],KeyError: 'index',failed -14275,tests.integ.modin.frame.test_setitem,test_df_setitem_df_single_value[int-A-val_columns1-val_index1],ValueError: Length of values (1) does not match length of index (4),failed -14278,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[True-bottom-True-first-group-0-1-NotImplementedError],Failed: DID NOT RAISE ,failed -14279,tests.integ.modin.frame.test_axis,test_set_axis_df_raises_type_error_diff_error_msg[native_df6-axis6-labels6-MultiIndex is not a valid type for axis.],"AssertionError: Regex pattern did not match. - Regex: 'MultiIndex is not a valid type for axis.' - Input: ""unhashable type: 'MultiIndex'""",failed -14280,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[True-bottom-True-max-group-0-0-NotImplementedError],Failed: DID NOT RAISE ,failed -14282,tests.integ.modin.frame.test_melt,test_melt_simple_path[data12],AttributeError: 'DataFrame' object has no attribute 'ordered_dataframe',failed -14284,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[True-bottom-True-max-None--1-0-NotImplementedError],Failed: DID NOT RAISE ,failed -14287,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[True-bottom-True-max-group-0-1-NotImplementedError],Failed: DID NOT RAISE ,failed -14288,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col8-row2],KeyError: 'buzz1',failed -14290,tests.integ.modin.frame.test_melt,test_melt_simple_path[data13],AttributeError: 'DataFrame' object has no attribute 'ordered_dataframe',failed -14291,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[index-include_groups_True-dropna_True-sort_True-group_keys_True-non_transform_returns_series],KeyError: 'index',failed -14293,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[True-bottom-True-average-group-0-0-NotImplementedError],Failed: DID NOT RAISE ,failed -14295,tests.integ.modin.frame.test_setitem,test_df_setitem_df_single_value[timedelta64[ns]-key0-val_columns0-val_index0],pandas.errors.InvalidIndexError: Reindexing only valid with uniquely valued Index objects,failed -14297,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[True-bottom-True-average-None--1-0-NotImplementedError],Failed: DID NOT RAISE ,failed -14299,tests.integ.modin.frame.test_melt,test_melt_simple_path[data14],AttributeError: 'DataFrame' object has no attribute 'ordered_dataframe',failed -14301,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[True-bottom-True-average-group-0-1-NotImplementedError],Failed: DID NOT RAISE ,failed -14302,tests.integ.modin.frame.test_axis,test_set_axis_df_raises_type_error_diff_error_msg[native_df7-index-None-None is not a valid value for the parameter 'labels'.],"AssertionError: Regex pattern did not match. - Regex: ""None is not a valid value for the parameter 'labels'."" - Input: 'Index(...) must be called with a collection of some kind, None was passed'",failed -14303,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice_with_unordered_index[2-4-1],KeyError: 2,failed -14306,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[True-bottom-False-min-group-0-0-NotImplementedError],Failed: DID NOT RAISE ,failed -14307,tests.integ.modin.frame.test_melt,test_melt_simple_path[data15],AttributeError: 'DataFrame' object has no attribute 'ordered_dataframe',failed -14310,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[True-bottom-False-min-None--1-0-NotImplementedError],Failed: DID NOT RAISE ,failed -14311,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[index-include_groups_True-dropna_True-sort_True-group_keys_True-transform_returns_series],KeyError: 'index',failed -14314,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[True-bottom-False-min-group-0-1-NotImplementedError],Failed: DID NOT RAISE ,failed -14316,tests.integ.modin.frame.test_setitem,test_df_setitem_df_single_value[timedelta64[ns]-key0-val_columns0-val_index1],pandas.errors.InvalidIndexError: Reindexing only valid with uniquely valued Index objects,failed -14317,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col8-row3],KeyError: 'buzz1',failed -14318,tests.integ.modin.frame.test_melt,test_melt_simple_path[data16],AttributeError: 'DataFrame' object has no attribute 'ordered_dataframe',failed -14320,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[True-bottom-False-dense-group-0-0-NotImplementedError],Failed: DID NOT RAISE ,failed -14324,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[True-bottom-False-dense-None--1-0-NotImplementedError],Failed: DID NOT RAISE ,failed -14325,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice_with_unordered_index[2-4-4],KeyError: 2,failed -14326,tests.integ.modin.frame.test_melt,test_melt_simple_path[data17],AttributeError: 'DataFrame' object has no attribute 'ordered_dataframe',failed -14327,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[True-bottom-False-dense-group-0-1-NotImplementedError],Failed: DID NOT RAISE ,failed -14329,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[index-include_groups_True-dropna_True-sort_True-group_keys_True-return_scalar],KeyError: 'index',failed -14331,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[True-bottom-False-first-group-0-0-NotImplementedError],Failed: DID NOT RAISE ,failed -14332,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col8-row4],"KeyError: ['viper', 'mark i', 'viper']",failed -14335,tests.integ.modin.frame.test_melt,test_melt_simple_path[data18],AttributeError: 'DataFrame' object has no attribute 'ordered_dataframe',failed -14336,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[True-bottom-False-first-None--1-0-NotImplementedError],Failed: DID NOT RAISE ,failed -14337,tests.integ.modin.frame.test_setitem,test_df_setitem_df_single_value[timedelta64[ns]-key0-val_columns1-val_index0],pandas.errors.InvalidIndexError: Reindexing only valid with uniquely valued Index objects,failed -14340,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[True-bottom-False-first-group-0-1-NotImplementedError],Failed: DID NOT RAISE ,failed -14341,tests.integ.modin.frame.test_axis,test_set_axis_df_raises_type_error_diff_error_msg[native_df8-columns-None-None is not a valid value for the parameter 'labels'.],"AssertionError: Regex pattern did not match. - Regex: ""None is not a valid value for the parameter 'labels'."" - Input: 'Index(...) must be called with a collection of some kind, None was passed'",failed -14343,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[True-bottom-False-max-group-0-0-NotImplementedError],Failed: DID NOT RAISE ,failed -14347,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice_with_unordered_index[2-4-6],KeyError: 2,failed -14349,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[True-bottom-False-max-None--1-0-NotImplementedError],Failed: DID NOT RAISE ,failed -14351,tests.integ.modin.frame.test_axis,test_df_set_axis_copy_true,"AssertionError: assert 'keyword is unused and is ignored.' in '' - + where '' = <_pytest.logging.LogCaptureFixture object at 0x33f8315d0>.text",failed -14353,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[True-bottom-False-max-group-0-1-NotImplementedError],Failed: DID NOT RAISE ,failed -14354,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice_with_unordered_index[2-6-None],"AssertionError: DataFrame are different +DataFrame shape mismatch +[left]: (5, 6) +[right]: (5, 4)",failed +11484,tests.integ.modin.frame.test_iloc,test_df_iloc_get_non_numeric_key_negative[row-None],"ValueError: +Location based indexing can only have [integer, integer slice (START point is +INCLUDED, END point is EXCLUDED), listlike of integers, boolean array] types.",failed +11485,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[by1-include_groups_True-dropna_False-sort_True-group_keys_True-return_scalar],KeyError: 'index',failed +11486,tests.integ.modin.groupby.test_groupby_dataframe_cumulative,test_groupby_cumulative[False-True-False-True-cummax-by1],"AssertionError: DataFrame are different DataFrame shape mismatch -[left]: (3, 7) -[right]: (2, 7)",failed -14357,tests.integ.modin.frame.test_axis,test_df_set_axis_copy_false,"AssertionError: assert 'keyword is unused and is ignored.' in '' - + where '' = <_pytest.logging.LogCaptureFixture object at 0x33e025fc0>.text",failed -14358,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[True-bottom-False-average-group-0-0-NotImplementedError],Failed: DID NOT RAISE ,failed -14359,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col8-row5],KeyError: 'mark vi',failed -14362,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[True-bottom-False-average-None--1-0-NotImplementedError],Failed: DID NOT RAISE ,failed -14365,tests.integ.modin.frame.test_melt,test_melt_simple_path[data19],AttributeError: 'DataFrame' object has no attribute 'ordered_dataframe',failed -14366,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice_with_unordered_index[2-6-1],"AssertionError: DataFrame are different +[left]: (5, 5) +[right]: (5, 3)",failed +11487,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[by1-include_groups_True-dropna_False-sort_True-group_keys_False-non_transform_returns_dataframe],reason: SNOW-1229760,xfailed +11488,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_1[index_with_name1-rtruediv],"ValueError: Unable to coerce to Series, length must be 3: given 4",failed +11489,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col2-row7],KeyError: 'mark vi',failed +11490,tests.integ.modin.frame.test_iloc,test_df_iloc_get_non_numeric_key_negative[row-True],"ValueError: +Location based indexing can only have [integer, integer slice (START point is +INCLUDED, END point is EXCLUDED), listlike of integers, boolean array] types.",failed +11491,tests.integ.modin.groupby.test_groupby_dataframe_cumulative,test_groupby_cumulative[False-True-False-True-cummax-DARKSEID],"AssertionError: DataFrame are different DataFrame shape mismatch -[left]: (1, 7) -[right]: (0, 7)",failed -14367,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[True-bottom-False-average-group-0-1-NotImplementedError],Failed: DID NOT RAISE ,failed -14372,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[False-keep-True-min-group-0-0-NotImplementedError],Failed: DID NOT RAISE ,failed -14374,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[index-include_groups_True-dropna_True-sort_True-group_keys_False-non_transform_returns_dataframe],KeyError: 'index',failed -14378,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[False-keep-True-min-None--1-0-NotImplementedError],Failed: DID NOT RAISE ,failed -14379,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice_with_unordered_index[2-6-4],"AssertionError: DataFrame are different +[left]: (5, 6) +[right]: (5, 4)",failed +11492,tests.integ.modin.frame.test_iloc,test_df_iloc_get_non_numeric_key_negative[row-False],"ValueError: +Location based indexing can only have [integer, integer slice (START point is +INCLUDED, END point is EXCLUDED), listlike of integers, boolean array] types.",failed +11494,tests.integ.modin.frame.test_set_index,test_set_index_pass_single_array[False-False-frame_of_ints-Index],"TypeError: The parameter ""keys"" may be a column key, one-dimensional array, or a list containing only valid column keys and one-dimensional arrays. Received column of type ",failed +11496,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_1[index_with_name1-floordiv],"ValueError: Unable to coerce to Series, length must be 3: given 4",failed +11498,tests.integ.modin.frame.test_iloc,test_df_iloc_get_non_numeric_key_negative[row--3.14],"ValueError: +Location based indexing can only have [integer, integer slice (START point is +INCLUDED, END point is EXCLUDED), listlike of integers, boolean array] types.",failed +11499,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[by1-include_groups_True-dropna_False-sort_True-group_keys_False-transform_returns_dataframe],KeyError: 'index',failed +11501,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[by1-include_groups_True-dropna_False-sort_True-group_keys_False-non_transform_returns_series],reason: SNOW-1229760,xfailed +11506,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_1[index_with_name1-rfloordiv],"ValueError: Unable to coerce to Series, length must be 3: given 4",failed +11508,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col2-row8],KeyError: 'mark vi',failed +11509,tests.integ.modin.groupby.test_groupby_dataframe_cumulative,test_groupby_cumulative[False-True-False-False-cummin-LEXLUTHOR],"AssertionError: DataFrame are different DataFrame shape mismatch -[left]: (1, 7) -[right]: (0, 7)",failed -14383,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[False-keep-True-min-group-0-1-NotImplementedError],Failed: DID NOT RAISE ,failed -14386,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[False-keep-True-dense-group-0-0-NotImplementedError],Failed: DID NOT RAISE ,failed -14387,tests.integ.modin.frame.test_setitem,test_df_setitem_df_single_value[timedelta64[ns]-key0-val_columns1-val_index1],pandas.errors.InvalidIndexError: Reindexing only valid with uniquely valued Index objects,failed -14389,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice_with_unordered_index[2-6-6],"AssertionError: DataFrame are different +[left]: (5, 6) +[right]: (5, 4)",failed +11511,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col2-row9],"AssertionError: Series are different + +Series length are different +[left]: 0, MultiIndex([], ) +[right]: 6, MultiIndex([( 'mark i', 'mark v'), + ( 'mark i', 'mark vi'), + ('sidewinder', 'mark i'), + ('sidewinder', 'mark ii'), + ( 'viper', 'mark ii'), + ( 'viper', 'mark iii')], + )",failed +11513,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[by1-include_groups_True-dropna_False-sort_True-group_keys_False-transform_returns_series],KeyError: 'index',failed +11514,tests.integ.modin.groupby.test_groupby_dataframe_cumulative,test_groupby_cumulative[False-True-False-False-cummin-by1],"AssertionError: DataFrame are different DataFrame shape mismatch -[left]: (2, 7) -[right]: (1, 7)",failed -14392,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[False-keep-True-dense-None--1-0-NotImplementedError],Failed: DID NOT RAISE ,failed -14397,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[False-keep-True-dense-group-0-1-NotImplementedError],Failed: DID NOT RAISE ,failed -14400,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[index-include_groups_True-dropna_True-sort_True-group_keys_False-transform_returns_dataframe],KeyError: 'index',failed -14404,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[False-keep-True-first-group-0-0-NotImplementedError],Failed: DID NOT RAISE ,failed -14408,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[False-keep-True-first-None--1-0-NotImplementedError],Failed: DID NOT RAISE ,failed -14411,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[False-keep-True-first-group-0-1-NotImplementedError],Failed: DID NOT RAISE ,failed -14413,tests.integ.modin.frame.test_setitem,test_df_setitem_df_single_value[timedelta64[ns]-A-val_columns0-val_index0],ValueError: Length of values (1) does not match length of index (4),failed -14416,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[False-keep-True-max-group-0-0-NotImplementedError],Failed: DID NOT RAISE ,failed -14417,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col8-row6],KeyError: 'mark vi',failed -14418,tests.integ.modin.frame.test_melt,test_multi_column_melt,ValueError: value_vars must be a list of tuples when columns are a MultiIndex,failed -14420,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[index-include_groups_True-dropna_True-sort_True-group_keys_False-non_transform_returns_series],KeyError: 'index',failed -14421,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[False-keep-True-max-None--1-0-NotImplementedError],Failed: DID NOT RAISE ,failed -14426,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[False-keep-True-max-group-0-1-NotImplementedError],Failed: DID NOT RAISE ,failed -14431,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[False-keep-True-average-group-0-0-NotImplementedError],Failed: DID NOT RAISE ,failed -14433,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice_with_unordered_index[-2-1-None],KeyError: 3,failed -14436,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[False-keep-True-average-None--1-0-NotImplementedError],Failed: DID NOT RAISE ,failed -14441,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[index-include_groups_True-dropna_True-sort_True-group_keys_False-transform_returns_series],KeyError: 'index',failed -14442,tests.integ.modin.frame.test_setitem,test_df_setitem_df_single_value[timedelta64[ns]-A-val_columns0-val_index1],ValueError: Length of values (1) does not match length of index (4),failed -14445,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[False-keep-True-average-group-0-1-NotImplementedError],Failed: DID NOT RAISE ,failed -14449,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[False-keep-False-min-group-0-0-NotImplementedError],Failed: DID NOT RAISE ,failed -14454,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[False-keep-False-min-None--1-0-NotImplementedError],Failed: DID NOT RAISE ,failed -14455,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col8-row7],KeyError: 'mark vi',failed -14459,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[False-keep-False-min-group-0-1-NotImplementedError],Failed: DID NOT RAISE ,failed -14462,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[index-include_groups_True-dropna_True-sort_True-group_keys_False-return_scalar],KeyError: 'index',failed -14464,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[False-keep-False-dense-group-0-0-NotImplementedError],Failed: DID NOT RAISE ,failed -14466,tests.integ.modin.frame.test_setitem,test_df_setitem_df_single_value[timedelta64[ns]-A-val_columns1-val_index0],ValueError: Length of values (1) does not match length of index (4),failed -14468,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[False-keep-False-dense-None--1-0-NotImplementedError],Failed: DID NOT RAISE ,failed -14470,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[False-keep-False-dense-group-0-1-NotImplementedError],Failed: DID NOT RAISE ,failed -14473,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[False-keep-False-first-group-0-0-NotImplementedError],Failed: DID NOT RAISE ,failed -14476,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[False-keep-False-first-None--1-0-NotImplementedError],Failed: DID NOT RAISE ,failed -14477,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[index-include_groups_True-dropna_True-sort_False-group_keys_True-non_transform_returns_dataframe],KeyError: 'index',failed -14478,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col8-row8],KeyError: 'mark vi',failed -14481,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[False-keep-False-first-group-0-1-NotImplementedError],Failed: DID NOT RAISE ,failed -14484,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice_with_unordered_index[-2-1-1],KeyError: 3,failed -14485,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[False-keep-False-max-group-0-0-NotImplementedError],Failed: DID NOT RAISE ,failed -14488,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[False-keep-False-max-None--1-0-NotImplementedError],Failed: DID NOT RAISE ,failed -14491,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[False-keep-False-max-group-0-1-NotImplementedError],Failed: DID NOT RAISE ,failed -14492,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[index-include_groups_True-dropna_True-sort_False-group_keys_True-transform_returns_dataframe],KeyError: 'index',failed -14496,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[False-keep-False-average-group-0-0-NotImplementedError],Failed: DID NOT RAISE ,failed -14499,tests.integ.modin.frame.test_memory_usage,test_memory_usage,assert 8 == 0,failed -14502,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[False-keep-False-average-None--1-0-NotImplementedError],Failed: DID NOT RAISE ,failed -14503,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice_with_unordered_index[-2-1-4],KeyError: 3,failed -14506,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[False-keep-False-average-group-0-1-NotImplementedError],Failed: DID NOT RAISE ,failed -14510,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[False-top-True-min-group-0-0-NotImplementedError],Failed: DID NOT RAISE ,failed -14512,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[index-include_groups_True-dropna_True-sort_False-group_keys_True-non_transform_returns_series],KeyError: 'index',failed -14513,tests.integ.modin.frame.test_setitem,test_df_setitem_df_single_value[timedelta64[ns]-A-val_columns1-val_index1],ValueError: Length of values (1) does not match length of index (4),failed -14514,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[False-top-True-min-None--1-0-NotImplementedError],Failed: DID NOT RAISE ,failed -14519,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[False-top-True-min-group-0-1-NotImplementedError],Failed: DID NOT RAISE ,failed -14524,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[False-top-True-dense-group-0-0-NotImplementedError],Failed: DID NOT RAISE ,failed -14526,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice_with_unordered_index[-2-1-6],KeyError: 3,failed -14528,tests.integ.modin.frame.test_setitem,test_df_setitem_value_df_mismatch_num_col_negative,"AssertionError: Regex pattern did not match. - Regex: 'shape mismatch' - Input: 'Length of values (1) does not match length of index (4)'",failed -14532,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col8-row9],KeyError: 'buzz1',failed -14533,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[index-include_groups_True-dropna_True-sort_False-group_keys_True-transform_returns_series],KeyError: 'index',failed -14535,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[False-top-True-dense-None--1-0-NotImplementedError],Failed: DID NOT RAISE ,failed -14536,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice_with_unordered_index[-2-4-None],"AssertionError: DataFrame are different +[left]: (5, 5) +[right]: (5, 3)",failed +11515,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_1[index_with_name1-mod],"ValueError: Unable to coerce to Series, length must be 3: given 4",failed +11518,tests.integ.modin.groupby.test_groupby_dataframe_cumulative,test_groupby_cumulative[False-True-False-False-cummin-DARKSEID],"AssertionError: DataFrame are different DataFrame shape mismatch -[left]: (3, 7) -[right]: (2, 7)",failed -14541,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[False-top-True-dense-group-0-1-NotImplementedError],Failed: DID NOT RAISE ,failed -14544,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice_with_unordered_index[-2-4-1],"AssertionError: DataFrame are different +[left]: (5, 6) +[right]: (5, 4)",failed +11519,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col2-row12],AssertionError: Got type: ,failed +11520,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_1[index_with_name1-rmod],"ValueError: Unable to coerce to Series, length must be 3: given 4",failed +11521,tests.integ.modin.frame.test_iloc,test_df_iloc_get_non_numeric_key_negative[row-3.142857142857143],"ValueError: +Location based indexing can only have [integer, integer slice (START point is +INCLUDED, END point is EXCLUDED), listlike of integers, boolean array] types.",failed +11522,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[by1-include_groups_True-dropna_False-sort_True-group_keys_False-return_scalar],KeyError: 'index',failed +11523,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col2-row13],AssertionError: Got type: ,failed +11524,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[by1-include_groups_True-dropna_False-sort_False-group_keys_True-non_transform_returns_dataframe],reason: SNOW-1229760,xfailed +11527,tests.integ.modin.groupby.test_groupby_dataframe_cumulative,test_groupby_cumulative[False-True-False-False-cummax-LEXLUTHOR],"AssertionError: DataFrame are different DataFrame shape mismatch -[left]: (1, 7) -[right]: (0, 7)",failed -14546,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[False-top-True-first-group-0-0-NotImplementedError],Failed: DID NOT RAISE ,failed -14549,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[False-top-True-first-None--1-0-NotImplementedError],Failed: DID NOT RAISE ,failed -14550,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[index-include_groups_True-dropna_True-sort_False-group_keys_True-return_scalar],KeyError: 'index',failed -14552,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice_with_unordered_index[-2-4-4],"AssertionError: DataFrame are different +[left]: (5, 6) +[right]: (5, 4)",failed +11528,tests.integ.modin.frame.test_iloc,test_df_iloc_get_non_numeric_key_negative[row-nan],"ValueError: +Location based indexing can only have [integer, integer slice (START point is +INCLUDED, END point is EXCLUDED), listlike of integers, boolean array] types.",failed +11529,tests.integ.modin.groupby.test_groupby_dataframe_cumulative,test_groupby_cumulative[False-True-False-False-cummax-by1],"AssertionError: DataFrame are different DataFrame shape mismatch -[left]: (2, 7) -[right]: (1, 7)",failed -14554,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[False-top-True-first-group-0-1-NotImplementedError],Failed: DID NOT RAISE ,failed -14558,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[False-top-True-max-group-0-0-NotImplementedError],Failed: DID NOT RAISE ,failed -14559,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col8-row10],KeyError: 'buzz1',failed -14560,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice_with_unordered_index[-2-4-6],"AssertionError: DataFrame are different +[left]: (5, 5) +[right]: (5, 3)",failed +11530,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col3-mark i],"AssertionError: DataFrame.columns are different + +DataFrame.columns classes are different +[left]: Index(['buzz1'], dtype='object', name='buzz') +[right]: MultiIndex([('fizz1', 'buzz1')], + names=['fizz', 'buzz'])",failed +11531,tests.integ.modin.frame.test_iloc,test_df_iloc_get_non_numeric_key_negative[row-key6],"ValueError: +Location based indexing can only have [integer, integer slice (START point is +INCLUDED, END point is EXCLUDED), listlike of integers, boolean array] types.",failed +11532,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[by1-include_groups_True-dropna_False-sort_False-group_keys_True-transform_returns_dataframe],KeyError: 'index',failed +11533,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[by1-include_groups_True-dropna_False-sort_False-group_keys_True-non_transform_returns_series],reason: SNOW-1229760,xfailed +11534,tests.integ.modin.groupby.test_groupby_dataframe_cumulative,test_groupby_cumulative[False-True-False-False-cummax-DARKSEID],"AssertionError: DataFrame are different DataFrame shape mismatch -[left]: (1, 7) -[right]: (0, 7)",failed -14561,tests.integ.modin.frame.test_setitem,test_df_setitem_self_df_set_aligned_row_key[native_df0],TypeError: unhashable type: 'Series',failed -14564,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[False-top-True-max-None--1-0-NotImplementedError],Failed: DID NOT RAISE ,failed -14567,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[False-top-True-max-group-0-1-NotImplementedError],Failed: DID NOT RAISE ,failed -14568,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[False-top-True-average-group-0-0-NotImplementedError],Failed: DID NOT RAISE ,failed -14571,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[False-top-True-average-None--1-0-NotImplementedError],Failed: DID NOT RAISE ,failed -14575,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[False-top-True-average-group-0-1-NotImplementedError],Failed: DID NOT RAISE ,failed -14577,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice_with_unordered_index[-2-6-None],KeyError: 8,failed -14580,tests.integ.modin.frame.test_setitem,test_df_setitem_self_df_set_aligned_row_key[native_df1],TypeError: unhashable type: 'Series',failed -14581,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[False-top-False-min-group-0-0-NotImplementedError],Failed: DID NOT RAISE ,failed -14583,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col8-row11],KeyError: 'buzz1',failed -14584,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[False-top-False-min-None--1-0-NotImplementedError],Failed: DID NOT RAISE ,failed -14586,tests.integ.modin.frame.test_cache_result,test_cache_result_empty_dataframe[True-no_col_no_index],"NotImplementedError: Modin supports the method DataFrame.cache_result on the Snowflake backend, but not on the backend Pandas.",failed -14587,tests.integ.modin.frame.test_cache_result,test_cache_result_empty_dataframe[True-only_col],"NotImplementedError: Modin supports the method DataFrame.cache_result on the Snowflake backend, but not on the backend Pandas.",failed -14588,tests.integ.modin.frame.test_cache_result,test_cache_result_empty_dataframe[True-only_index],"NotImplementedError: Modin supports the method DataFrame.cache_result on the Snowflake backend, but not on the backend Pandas.",failed -14589,tests.integ.modin.frame.test_cache_result,test_cache_result_empty_dataframe[True-col_and_index],"NotImplementedError: Modin supports the method DataFrame.cache_result on the Snowflake backend, but not on the backend Pandas.",failed -14591,tests.integ.modin.frame.test_cache_result,test_cache_result_empty_dataframe[False-no_col_no_index],"NotImplementedError: Modin supports the method DataFrame.cache_result on the Snowflake backend, but not on the backend Pandas.",failed -14593,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[False-top-False-min-group-0-1-NotImplementedError],Failed: DID NOT RAISE ,failed -14594,tests.integ.modin.frame.test_cache_result,test_cache_result_empty_dataframe[False-only_col],"NotImplementedError: Modin supports the method DataFrame.cache_result on the Snowflake backend, but not on the backend Pandas.",failed -14595,tests.integ.modin.frame.test_cache_result,test_cache_result_empty_dataframe[False-only_index],"NotImplementedError: Modin supports the method DataFrame.cache_result on the Snowflake backend, but not on the backend Pandas.",failed -14598,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[index-include_groups_True-dropna_True-sort_False-group_keys_False-non_transform_returns_dataframe],KeyError: 'index',failed -14599,tests.integ.modin.frame.test_cache_result,test_cache_result_empty_dataframe[False-col_and_index],"NotImplementedError: Modin supports the method DataFrame.cache_result on the Snowflake backend, but not on the backend Pandas.",failed -14600,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[False-top-False-dense-group-0-0-NotImplementedError],Failed: DID NOT RAISE ,failed -14602,tests.integ.modin.frame.test_setitem,test_df_setitem_self_df_set_aligned_row_key[native_df2],TypeError: unhashable type: 'Series',failed -14604,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[False-top-False-dense-None--1-0-NotImplementedError],Failed: DID NOT RAISE ,failed -14606,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[False-top-False-dense-group-0-1-NotImplementedError],Failed: DID NOT RAISE ,failed -14610,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[False-top-False-first-group-0-0-NotImplementedError],Failed: DID NOT RAISE ,failed -14615,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[False-top-False-first-None--1-0-NotImplementedError],Failed: DID NOT RAISE ,failed -14616,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col8-row12],KeyError: 'buzz1',failed -14618,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[index-include_groups_True-dropna_True-sort_False-group_keys_False-transform_returns_dataframe],KeyError: 'index',failed -14619,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[False-top-False-first-group-0-1-NotImplementedError],Failed: DID NOT RAISE ,failed -14622,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[False-top-False-max-group-0-0-NotImplementedError],Failed: DID NOT RAISE ,failed -14623,tests.integ.modin.frame.test_setitem,test_df_setitem_replace_column_with_single_column[a-column2],"AssertionError: DataFrame.iloc[:, 0] (column name=""a"") are different +[left]: (5, 6) +[right]: (5, 4)",failed +11535,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col3-row1],"AssertionError: DataFrame.columns are different -DataFrame.iloc[:, 0] (column name=""a"") values are different (66.66667 %) -[index]: [0, 1, 2] -[left]: [42, 42, 42] -[right]: [nan, nan, 42.0]",failed -14624,tests.integ.modin.frame.test_cache_result,test_cache_result_dataframe_complex_correctness[True],"NotImplementedError: Modin supports the method DataFrame.cache_result on the Snowflake backend, but not on the backend Pandas.",failed -14627,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[False-top-False-max-None--1-0-NotImplementedError],Failed: DID NOT RAISE ,failed -14631,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[False-top-False-max-group-0-1-NotImplementedError],Failed: DID NOT RAISE ,failed -14633,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice_with_unordered_index[-2-6-1],KeyError: 8,failed -14635,tests.integ.modin.frame.test_cache_result,test_cache_result_dataframe_complex_correctness[False],"NotImplementedError: Modin supports the method DataFrame.cache_result on the Snowflake backend, but not on the backend Pandas.",failed -14636,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[False-top-False-average-group-0-0-NotImplementedError],Failed: DID NOT RAISE ,failed -14640,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[index-include_groups_True-dropna_True-sort_False-group_keys_False-non_transform_returns_series],KeyError: 'index',failed -14641,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[False-top-False-average-None--1-0-NotImplementedError],Failed: DID NOT RAISE ,failed -14645,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[False-top-False-average-group-0-1-NotImplementedError],Failed: DID NOT RAISE ,failed -14647,tests.integ.modin.frame.test_cache_result,test_cache_result_simple[True],"NotImplementedError: Modin supports the method DataFrame.cache_result on the Snowflake backend, but not on the backend Pandas.",failed -14651,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[False-bottom-True-min-group-0-0-NotImplementedError],Failed: DID NOT RAISE ,failed -14652,tests.integ.modin.frame.test_setitem,test_df_setitem_replace_column_with_single_column[a-timedelta_type],Failed: DID NOT RAISE ,failed -14653,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice_with_unordered_index[-2-6-4],KeyError: 8,failed -14655,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[False-bottom-True-min-None--1-0-NotImplementedError],Failed: DID NOT RAISE ,failed -14656,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[index-include_groups_True-dropna_True-sort_False-group_keys_False-transform_returns_series],KeyError: 'index',failed -14659,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[False-bottom-True-min-group-0-1-NotImplementedError],Failed: DID NOT RAISE ,failed -14661,tests.integ.modin.frame.test_cache_result,test_cache_result_simple[False],"NotImplementedError: Modin supports the method DataFrame.cache_result on the Snowflake backend, but not on the backend Pandas.",failed -14663,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[False-bottom-True-dense-group-0-0-NotImplementedError],Failed: DID NOT RAISE ,failed -14664,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col8-row13],KeyError: 'buzz1',failed -14667,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[False-bottom-True-dense-None--1-0-NotImplementedError],Failed: DID NOT RAISE ,failed -14668,tests.integ.modin.frame.test_cache_result,test_cache_result_post_pivot[True],"NotImplementedError: Modin supports the method DataFrame.cache_result on the Snowflake backend, but not on the backend Pandas.",failed -14670,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[False-bottom-True-dense-group-0-1-NotImplementedError],Failed: DID NOT RAISE ,failed -14672,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[index-include_groups_True-dropna_True-sort_False-group_keys_False-return_scalar],KeyError: 'index',failed -14676,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[False-bottom-True-first-group-0-0-NotImplementedError],Failed: DID NOT RAISE ,failed -14678,tests.integ.modin.frame.test_cache_result,test_cache_result_post_pivot[False],"NotImplementedError: Modin supports the method DataFrame.cache_result on the Snowflake backend, but not on the backend Pandas.",failed -14679,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice_with_unordered_index[-2-6-6],KeyError: 8,failed -14681,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[False-bottom-True-first-None--1-0-NotImplementedError],Failed: DID NOT RAISE ,failed -14685,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[False-bottom-True-first-group-0-1-NotImplementedError],Failed: DID NOT RAISE ,failed -14688,tests.integ.modin.frame.test_cache_result,test_cache_result_post_apply[True],"NotImplementedError: Modin supports the method DataFrame.cache_result on the Snowflake backend, but not on the backend Pandas.",failed -14689,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[False-bottom-True-max-group-0-0-NotImplementedError],Failed: DID NOT RAISE ,failed -14695,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[False-bottom-True-max-None--1-0-NotImplementedError],Failed: DID NOT RAISE ,failed -14696,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[index-include_groups_True-dropna_False-sort_True-group_keys_True-non_transform_returns_dataframe],KeyError: 'index',failed -14698,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col8-row14],KeyError: 'buzz1',failed -14699,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[False-bottom-True-max-group-0-1-NotImplementedError],Failed: DID NOT RAISE ,failed -14700,tests.integ.modin.frame.test_cache_result,test_cache_result_post_apply[False],"NotImplementedError: Modin supports the method DataFrame.cache_result on the Snowflake backend, but not on the backend Pandas.",failed -14706,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[False-bottom-True-average-group-0-0-NotImplementedError],Failed: DID NOT RAISE ,failed -14707,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col9-mark i],"AssertionError: DataFrame are different +DataFrame.columns classes are different +[left]: Index(['buzz1'], dtype='object', name='buzz') +[right]: MultiIndex([('fizz1', 'buzz1')], + names=['fizz', 'buzz'])",failed +11540,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col3-row3],"AssertionError: DataFrame.index are different + +DataFrame.index levels are different +[left]: 1, Index(['mark v', 'mark vi'], dtype='object') +[right]: 2, MultiIndex([('mark i', 'mark v'), + ('mark i', 'mark vi')], + )",failed +11542,tests.integ.modin.frame.test_apply_axis_0,test_axis_0_basic_types_without_type_hints[return_timedelta_scalar],[XPASS(strict)] SNOW-1619940,failed +11543,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[by1-include_groups_True-dropna_False-sort_False-group_keys_True-transform_returns_series],KeyError: 'index',failed +11546,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_1[index_with_name1-pow],"ValueError: Unable to coerce to Series, length must be 3: given 4",failed +11548,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col3-row4],"KeyError: ['viper', 'mark i', 'viper']",failed +11549,tests.integ.modin.groupby.test_groupby_dataframe_cumulative,test_groupby_cumulative[False-False-True-True-cummin-LEXLUTHOR],"AssertionError: DataFrame are different DataFrame shape mismatch -[left]: (2, 0) -[right]: (2, 2)",failed -14711,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[False-bottom-True-average-None--1-0-NotImplementedError],Failed: DID NOT RAISE ,failed -14713,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col9-row1],"AssertionError: DataFrame are different +[left]: (5, 6) +[right]: (5, 4)",failed +11553,tests.integ.modin.groupby.test_groupby_dataframe_cumulative,test_groupby_cumulative[False-False-True-True-cummin-by1],"AssertionError: DataFrame are different DataFrame shape mismatch -[left]: (2, 0) -[right]: (2, 2)",failed -14714,tests.integ.modin.frame.test_cache_result,test_cache_result_post_applymap[True],"NotImplementedError: Modin supports the method DataFrame.cache_result on the Snowflake backend, but not on the backend Pandas.",failed -14715,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[index-include_groups_True-dropna_False-sort_True-group_keys_True-transform_returns_dataframe],KeyError: 'index',failed -14717,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[False-bottom-True-average-group-0-1-NotImplementedError],Failed: DID NOT RAISE ,failed -14722,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col9-row2],"AssertionError: Series are different +[left]: (5, 5) +[right]: (5, 3)",failed +11554,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_1[index_with_name1-rpow],"ValueError: Unable to coerce to Series, length must be 3: given 4",failed +11555,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[by1-include_groups_True-dropna_False-sort_False-group_keys_True-return_scalar],KeyError: 'index',failed +11556,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[by1-include_groups_True-dropna_False-sort_False-group_keys_False-non_transform_returns_dataframe],reason: SNOW-1229760,xfailed +11558,tests.integ.modin.groupby.test_groupby_dataframe_cumulative,test_groupby_cumulative[False-False-True-True-cummin-DARKSEID],"AssertionError: DataFrame are different -Series length are different -[left]: 0, MultiIndex([], names=['fizz', 'buzz']) -[right]: 2, MultiIndex([('fizz1', 'buzz1'), - ('fizz2', 'buzz2')], - names=['fizz', 'buzz'])",failed -14723,tests.integ.modin.frame.test_cache_result,test_cache_result_post_applymap[False],"NotImplementedError: Modin supports the method DataFrame.cache_result on the Snowflake backend, but not on the backend Pandas.",failed -14724,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[False-bottom-False-min-group-0-0-NotImplementedError],Failed: DID NOT RAISE ,failed -14727,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice_with_unordered_index[9-1-None],KeyError: -8,failed -14730,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[False-bottom-False-min-None--1-0-NotImplementedError],Failed: DID NOT RAISE ,failed -14731,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col9-row3],"AssertionError: DataFrame are different +DataFrame shape mismatch +[left]: (5, 6) +[right]: (5, 4)",failed +11560,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_0[list0-add],"ValueError: Unable to coerce to Series, length must be 3: given 2",failed +11562,tests.integ.modin.groupby.test_groupby_dataframe_cumulative,test_groupby_cumulative[False-False-True-True-cummax-LEXLUTHOR],"AssertionError: DataFrame are different DataFrame shape mismatch -[left]: (2, 0) -[right]: (2, 2)",failed -14735,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[index-include_groups_True-dropna_False-sort_True-group_keys_True-non_transform_returns_series],KeyError: 'index',failed -14736,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[False-bottom-False-min-group-0-1-NotImplementedError],Failed: DID NOT RAISE ,failed -14742,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[False-bottom-False-dense-group-0-0-NotImplementedError],Failed: DID NOT RAISE ,failed -14745,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[False-bottom-False-dense-None--1-0-NotImplementedError],Failed: DID NOT RAISE ,failed -14747,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col9-row4],"KeyError: ['viper', 'mark i', 'viper']",failed -14750,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[False-bottom-False-dense-group-0-1-NotImplementedError],Failed: DID NOT RAISE ,failed -14752,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[index-include_groups_True-dropna_False-sort_True-group_keys_True-transform_returns_series],KeyError: 'index',failed -14754,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[False-bottom-False-first-group-0-0-NotImplementedError],Failed: DID NOT RAISE ,failed -14758,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[False-bottom-False-first-None--1-0-NotImplementedError],Failed: DID NOT RAISE ,failed -14760,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[False-bottom-False-first-group-0-1-NotImplementedError],Failed: DID NOT RAISE ,failed -14763,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[False-bottom-False-max-group-0-0-NotImplementedError],Failed: DID NOT RAISE ,failed -14765,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[False-bottom-False-max-None--1-0-NotImplementedError],Failed: DID NOT RAISE ,failed -14769,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[False-bottom-False-max-group-0-1-NotImplementedError],Failed: DID NOT RAISE ,failed -14771,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col9-row5],KeyError: 'mark vi',failed -14775,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[False-bottom-False-average-group-0-0-NotImplementedError],Failed: DID NOT RAISE ,failed -14778,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[index-include_groups_True-dropna_False-sort_True-group_keys_True-return_scalar],KeyError: 'index',failed -14780,tests.integ.modin.frame.test_setitem,test_df_setitem_single_column_length_mismatch[a-value0],"AssertionError: Regex pattern did not match. - Regex: 'item to set is empty' - Input: 'Length of values (0) does not match length of index (3)'",failed -14781,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[False-bottom-False-average-None--1-0-NotImplementedError],Failed: DID NOT RAISE ,failed -14785,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice_with_unordered_index[9-1-1],KeyError: -8,failed -14786,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[False-bottom-False-average-group-0-1-NotImplementedError],Failed: DID NOT RAISE ,failed -14804,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice_with_unordered_index[9-1-4],KeyError: -8,failed -14813,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col9-row6],KeyError: 'mark vi',failed -14815,tests.integ.modin.frame.test_compare,test_different_index,"AssertionError: Regex pattern did not match. - Regex: 'Can only compare identically-labeled objects' - Input: 'Can only compare identically-labeled (both index and columns) DataFrame objects'",failed -14817,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[index-include_groups_True-dropna_False-sort_True-group_keys_False-non_transform_returns_dataframe],KeyError: 'index',failed -14818,tests.integ.modin.frame.test_setitem,test_df_setitem_single_column_length_mismatch[a-value1],ValueError: Length of values (2) does not match length of index (3),failed -14821,tests.integ.modin.frame.test_compare,test_different_columns,"AssertionError: Regex pattern did not match. - Regex: 'Can only compare identically-labeled objects' - Input: 'Can only compare identically-labeled (both index and columns) DataFrame objects'",failed -14823,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice_with_unordered_index[9-1-6],KeyError: -8,failed -14827,tests.integ.modin.frame.test_compare,test_align_axis[0],[XPASS(strict)] ,failed -14832,tests.integ.modin.frame.test_compare,test_align_axis[index],[XPASS(strict)] ,failed -14834,tests.integ.modin.frame.test_setitem,test_df_setitem_single_column_length_mismatch[x-value0],"AssertionError: Regex pattern did not match. - Regex: 'item to set is empty' - Input: 'Length of values (0) does not match length of index (3)'",failed -14838,tests.integ.modin.frame.test_compare,test_keep_shape,[XPASS(strict)] ,failed -14839,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[index-include_groups_True-dropna_False-sort_True-group_keys_False-transform_returns_dataframe],KeyError: 'index',failed -14840,tests.integ.modin.frame.test_compare,test_keep_equal,[XPASS(strict)] ,failed -14844,tests.integ.modin.frame.test_compare,test_result_names,[XPASS(strict)] ,failed -14846,tests.integ.modin.frame.test_setitem,test_df_setitem_single_column_length_mismatch[x-value1],ValueError: Length of values (2) does not match length of index (3),failed -14849,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col9-row7],KeyError: 'mark vi',failed -14854,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice_with_unordered_index[9-4-None],KeyError: -5,failed -14856,tests.integ.modin.frame.test_setitem,test_df_setitem_single_column_length_mismatch[x-value2],ValueError: Length of values (4) does not match length of index (3),failed -14858,tests.integ.modin.groupby.test_groupby_head_tail,test_df_groupby_head_tail_non_integer_n_negative[2.5-head],Failed: DID NOT RAISE ,failed -14860,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[index-include_groups_True-dropna_False-sort_True-group_keys_False-non_transform_returns_series],KeyError: 'index',failed -14863,tests.integ.modin.groupby.test_groupby_head_tail,test_df_groupby_head_tail_non_integer_n_negative[2.5-tail],Failed: DID NOT RAISE ,failed -14869,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col9-row8],KeyError: 'mark vi',failed -14871,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice_with_unordered_index[9-4-1],KeyError: -5,failed -14874,tests.integ.modin.groupby.test_groupby_head_tail,test_df_groupby_head_tail_non_integer_n_negative[3-head],"AssertionError: Regex pattern did not match. - Regex: 'n must be an integer value.' - Input: ""'>=' not supported between instances of 'str' and 'int'""",failed -14880,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col9-row9],"AssertionError: DataFrame are different +[left]: (5, 6) +[right]: (5, 4)",failed +11564,tests.integ.modin.groupby.test_groupby_dataframe_cumulative,test_groupby_cumulative[False-False-True-True-cummax-by1],"AssertionError: DataFrame are different DataFrame shape mismatch -[left]: (0, 0) -[right]: (6, 2)",failed -14881,tests.integ.modin.frame.test_setitem,test_df_setitem_with_unique_and_duplicate_index_values[index_values0-other_index_values0-False],"AssertionError: DataFrame.index are different +[left]: (5, 5) +[right]: (5, 3)",failed +11567,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_0[list0-radd],"ValueError: Unable to coerce to Series, length must be 3: given 2",failed +11568,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[by1-include_groups_True-dropna_False-sort_False-group_keys_False-transform_returns_dataframe],KeyError: 'index',failed +11569,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[by1-include_groups_True-dropna_False-sort_False-group_keys_False-non_transform_returns_series],reason: SNOW-1229760,xfailed +11570,tests.integ.modin.frame.test_apply_axis_0,test_axis_0_basic_types_without_type_hints[apply_on_frame_with_timedelta_data_columns_returns_int],[XPASS(strict)] ,failed +11571,tests.integ.modin.groupby.test_groupby_dataframe_cumulative,test_groupby_cumulative[False-False-True-True-cummax-DARKSEID],"AssertionError: DataFrame are different -Attribute ""names"" are different -[left]: [None] -[right]: ['INDEX']",failed -14888,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col9-row10],"AssertionError: DataFrame are different +DataFrame shape mismatch +[left]: (5, 6) +[right]: (5, 4)",failed +11574,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_0[list0-sub],"ValueError: Unable to coerce to Series, length must be 3: given 2",failed +11575,tests.integ.modin.frame.test_apply_axis_0,test_axis_0_basic_types_with_type_hints[return_timedelta_scalar],[XPASS(strict)] SNOW-1619940,failed +11578,tests.integ.modin.frame.test_to_dynamic_table,test_to_dynamic_table_enforce_ordering_raises[function],"NotImplementedError: Modin supports the method DataFrame.to_dynamic_table on the Snowflake backend, but not on the backend Pandas.",failed +11580,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[by1-include_groups_True-dropna_False-sort_False-group_keys_False-transform_returns_series],KeyError: 'index',failed +11583,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_0[list0-rsub],"ValueError: Unable to coerce to Series, length must be 3: given 2",failed +11584,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col3-row5],KeyError: 'mark vi',failed +11586,tests.integ.modin.groupby.test_groupby_dataframe_cumulative,test_groupby_cumulative[False-False-True-False-cummin-LEXLUTHOR],"AssertionError: DataFrame are different DataFrame shape mismatch -[left]: (2, 0) -[right]: (2, 2)",failed -14893,tests.integ.modin.groupby.test_groupby_head_tail,test_df_groupby_head_tail_non_integer_n_negative[3-tail],"AssertionError: Regex pattern did not match. - Regex: 'n must be an integer value.' - Input: ""bad operand type for unary -: 'str'""",failed -14894,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col9-row11],"AssertionError: DataFrame are different +[left]: (5, 6) +[right]: (5, 4)",failed +11588,tests.integ.modin.groupby.test_groupby_dataframe_cumulative,test_groupby_cumulative[False-False-True-False-cummin-by1],"AssertionError: DataFrame are different DataFrame shape mismatch -[left]: (6, 0) -[right]: (6, 2)",failed -14899,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[index-include_groups_True-dropna_False-sort_True-group_keys_False-transform_returns_series],KeyError: 'index',failed -14903,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice_with_unordered_index[9-4-4],KeyError: -5,failed -14910,tests.integ.modin.frame.test_setitem,test_df_setitem_with_unique_and_duplicate_index_values[index_values1-other_index_values1-False],"AssertionError: DataFrame.index are different +[left]: (5, 5) +[right]: (5, 3)",failed +11589,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_0[list0-mul],"ValueError: Unable to coerce to Series, length must be 3: given 2",failed +11592,tests.integ.modin.groupby.test_groupby_dataframe_cumulative,test_groupby_cumulative[False-False-True-False-cummin-DARKSEID],"AssertionError: DataFrame are different -Attribute ""names"" are different -[left]: [None] -[right]: ['INDEX']",failed -14911,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col9-row12],AssertionError,failed -14918,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col9-row13],AssertionError,failed -14919,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[index-include_groups_True-dropna_False-sort_True-group_keys_False-return_scalar],KeyError: 'index',failed -14931,tests.integ.modin.frame.test_setitem,test_df_setitem_with_unique_and_duplicate_index_values[index_values2-other_index_values2-False],"AssertionError: DataFrame.index are different +DataFrame shape mismatch +[left]: (5, 6) +[right]: (5, 4)",failed +11594,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_0[list0-rmul],"ValueError: Unable to coerce to Series, length must be 3: given 2",failed +11595,tests.integ.modin.groupby.test_groupby_dataframe_cumulative,test_groupby_cumulative[False-False-True-False-cummax-LEXLUTHOR],"AssertionError: DataFrame are different -Attribute ""names"" are different -[left]: [None] -[right]: ['INDEX']",failed -14933,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[index-include_groups_True-dropna_False-sort_False-group_keys_True-non_transform_returns_dataframe],KeyError: 'index',failed -14944,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col9-row14],"AssertionError: DataFrame are different +DataFrame shape mismatch +[left]: (5, 6) +[right]: (5, 4)",failed +11597,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col3-row6],KeyError: 'mark vi',failed +11599,tests.integ.modin.groupby.test_groupby_dataframe_cumulative,test_groupby_cumulative[False-False-True-False-cummax-by1],"AssertionError: DataFrame are different DataFrame shape mismatch -[left]: (6, 0) -[right]: (6, 2)",failed -14947,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[index-include_groups_True-dropna_False-sort_False-group_keys_True-transform_returns_dataframe],KeyError: 'index',failed -14948,tests.integ.modin.frame.test_setitem,test_df_setitem_with_unique_and_duplicate_index_values[index_values3-other_index_values3-False],"AssertionError: DataFrame.index are different +[left]: (5, 5) +[right]: (5, 3)",failed +11600,tests.integ.modin.frame.test_apply_axis_0,test_axis_0_basic_types_with_type_hints[apply_on_frame_with_timedelta_data_columns_returns_int],[XPASS(strict)] ,failed +11602,tests.integ.modin.frame.test_set_index,test_set_index_pass_single_array[False-False-frame_of_ints_and_timedelta-Index],"TypeError: The parameter ""keys"" may be a column key, one-dimensional array, or a list containing only valid column keys and one-dimensional arrays. Received column of type ",failed +11603,tests.integ.modin.groupby.test_groupby_dataframe_cumulative,test_groupby_cumulative[False-False-True-False-cummax-DARKSEID],"AssertionError: DataFrame are different -Attribute ""names"" are different -[left]: [None] -[right]: ['INDEX']",failed -14950,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col10-mark i],AssertionError,failed -14951,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice_with_unordered_index[9-4-6],KeyError: -5,failed -14956,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col10-row1],AssertionError,failed -14960,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col10-row2],AssertionError: Got type: ,failed -14962,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[index-include_groups_True-dropna_False-sort_False-group_keys_True-non_transform_returns_series],KeyError: 'index',failed -14967,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col10-row3],AssertionError,failed -14971,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice_with_unordered_index[9-6-None],KeyError: -3,failed -14977,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[index-include_groups_True-dropna_False-sort_False-group_keys_True-transform_returns_series],KeyError: 'index',failed -14980,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col10-row4],"KeyError: ['viper', 'mark i', 'viper']",failed -14986,tests.integ.modin.frame.test_setitem,test_df_setitem_with_unique_and_duplicate_index_values[index_values4-other_index_values4-True],ValueError: cannot reindex on an axis with duplicate labels,failed -14993,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice_with_unordered_index[9-6-1],KeyError: -3,failed -14998,tests.integ.modin.groupby.test_groupby_idxmax_idxmin,test_df_groupby_idxmax_idxmin_with_multiindex_df[False-0-idxmax],Failed: DID NOT RAISE ,failed -15001,tests.integ.modin.groupby.test_groupby_idxmax_idxmin,test_df_groupby_idxmax_idxmin_with_multiindex_df[False-0-idxmin],Failed: DID NOT RAISE ,failed -15003,tests.integ.modin.frame.test_setitem,test_df_setitem_with_unique_and_duplicate_index_values[index_values5-other_index_values5-False],"AssertionError: DataFrame.index are different +DataFrame shape mismatch +[left]: (5, 6) +[right]: (5, 4)",failed +11605,tests.integ.modin.frame.test_apply_axis_0,test_frame_with_timedelta_index,[XPASS(strict)] ,failed +11611,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[by1-include_groups_True-dropna_False-sort_False-group_keys_False-return_scalar],KeyError: 'index',failed +11614,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col3-row7],KeyError: 'mark vi',failed +11619,tests.integ.modin.frame.test_iloc,test_df_iloc_get_non_numeric_key_negative[row-key7],"ValueError: +Location based indexing can only have [integer, integer slice (START point is +INCLUDED, END point is EXCLUDED), listlike of integers, boolean array] types.",failed +11620,tests.integ.modin.groupby.test_groupby_dataframe_cumulative,test_groupby_cumulative[False-False-False-True-cummin-LEXLUTHOR],"AssertionError: DataFrame are different -Attribute ""names"" are different -[left]: [None] -[right]: ['INDEX']",failed -15005,tests.integ.modin.groupby.test_groupby_idxmax_idxmin,test_df_groupby_idxmax_idxmin_with_multiindex_df[False-1-idxmax],Failed: DID NOT RAISE ,failed -15006,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col10-row5],KeyError: 'mark vi',failed -15009,tests.integ.modin.groupby.test_groupby_idxmax_idxmin,test_df_groupby_idxmax_idxmin_with_multiindex_df[False-1-idxmin],Failed: DID NOT RAISE ,failed -15013,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice_with_unordered_index[9-6-4],KeyError: -3,failed -15015,tests.integ.modin.groupby.test_groupby_idxmax_idxmin,test_df_groupby_idxmax_idxmin_with_multiindex_df[True-0-idxmax],Failed: DID NOT RAISE ,failed -15018,tests.integ.modin.groupby.test_groupby_idxmax_idxmin,test_df_groupby_idxmax_idxmin_with_multiindex_df[True-0-idxmin],Failed: DID NOT RAISE ,failed -15020,tests.integ.modin.groupby.test_groupby_idxmax_idxmin,test_df_groupby_idxmax_idxmin_with_multiindex_df[True-1-idxmax],Failed: DID NOT RAISE ,failed -15022,tests.integ.modin.frame.test_setitem,test_df_setitem_with_unique_and_duplicate_index_values[index_values6-other_index_values6-False],"AssertionError: DataFrame.index are different +DataFrame shape mismatch +[left]: (5, 6) +[right]: (5, 4)",failed +11622,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_0[list0-truediv],"ValueError: Unable to coerce to Series, length must be 3: given 2",failed +11624,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[by1-include_groups_False-dropna_True-sort_True-group_keys_True-non_transform_returns_dataframe],KeyError: 'index',failed +11625,tests.integ.modin.groupby.test_groupby_dataframe_cumulative,test_groupby_cumulative[False-False-False-True-cummin-by1],"AssertionError: DataFrame are different -Attribute ""names"" are different -[left]: [None] -[right]: ['INDEX']",failed -15024,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[index-include_groups_True-dropna_False-sort_False-group_keys_True-return_scalar],KeyError: 'index',failed -15025,tests.integ.modin.groupby.test_groupby_idxmax_idxmin,test_df_groupby_idxmax_idxmin_with_multiindex_df[True-1-idxmin],Failed: DID NOT RAISE ,failed -15029,tests.integ.modin.groupby.test_groupby_idxmax_idxmin,test_df_groupby_idxmax_idxmin_on_axis_1_negative[idxmax],Failed: DID NOT RAISE ,failed -15032,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice_with_unordered_index[9-6-6],KeyError: -3,failed -15035,tests.integ.modin.groupby.test_groupby_idxmax_idxmin,test_df_groupby_idxmax_idxmin_on_axis_1_negative[idxmin],Failed: DID NOT RAISE ,failed -15040,tests.integ.modin.frame.test_setitem,test_df_setitem_with_unique_and_duplicate_index_values[index_values7-other_index_values7-False],"AssertionError: DataFrame.index are different +DataFrame shape mismatch +[left]: (5, 5) +[right]: (5, 3)",failed +11626,tests.integ.modin.groupby.test_groupby_dataframe_cumulative,test_groupby_cumulative[False-False-False-True-cummin-DARKSEID],"AssertionError: DataFrame are different -Attribute ""names"" are different -[left]: [None] -[right]: ['INDEX']",failed -15042,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[index-include_groups_True-dropna_False-sort_False-group_keys_False-non_transform_returns_dataframe],KeyError: 'index',failed -15053,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col10-row6],KeyError: 'mark vi',failed -15060,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[index-include_groups_True-dropna_False-sort_False-group_keys_False-transform_returns_dataframe],KeyError: 'index',failed -15067,tests.integ.modin.groupby.test_groupby_idxmax_idxmin,test_df_groupby_idxmax_idxmin_on_groupby_axis_1_unimplemented[idxmax],AttributeError: 'int' object has no attribute 'startswith',failed -15073,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[index-include_groups_True-dropna_False-sort_False-group_keys_False-non_transform_returns_series],KeyError: 'index',failed -15074,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col10-row7],KeyError: 'mark vi',failed -15075,tests.integ.modin.groupby.test_groupby_idxmax_idxmin,test_df_groupby_idxmax_idxmin_on_groupby_axis_1_unimplemented[idxmin],AttributeError: 'int' object has no attribute 'startswith',failed -15087,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[index-include_groups_True-dropna_False-sort_False-group_keys_False-transform_returns_series],KeyError: 'index',failed -15090,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice_with_unordered_index[-9-1-None],KeyError: 10,failed -15094,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col10-row8],KeyError: 'mark vi',failed -15096,tests.integ.modin.frame.test_setitem,test_df_setitem_with_unique_and_duplicate_index_values[index_values8-other_index_values8-True],ValueError: cannot reindex on an axis with duplicate labels,failed -15100,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col10-row9],AssertionError,failed -15102,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[index-include_groups_True-dropna_False-sort_False-group_keys_False-return_scalar],KeyError: 'index',failed -15106,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col10-row10],AssertionError,failed -15107,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice_with_unordered_index[-9-1-1],KeyError: 10,failed -15113,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col10-row11],AssertionError,failed -15115,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[index-include_groups_False-dropna_True-sort_True-group_keys_True-non_transform_returns_dataframe],KeyError: 'index',failed -15117,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col10-row12],AssertionError: Got type: ,failed -15121,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col10-row13],AssertionError: Got type: ,failed -15123,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[index-include_groups_False-dropna_True-sort_True-group_keys_True-transform_returns_dataframe],KeyError: 'index',failed -15126,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice_with_unordered_index[-9-1-4],KeyError: 10,failed -15128,tests.integ.modin.frame.test_setitem,test_df_setitem_with_unique_and_duplicate_index_values[index_values9-other_index_values9-True],ValueError: cannot reindex on an axis with duplicate labels,failed -15131,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col10-row14],AssertionError,failed -15132,tests.integ.modin.groupby.test_groupby_named_agg,test_invalid_func_with_named_agg_errors,AssertionError: exception type does not match with expected type ,failed -15136,tests.integ.modin.frame.test_create_or_replace_dynamic_table,test_create_or_replace_dynamic_table_enforce_ordering_raises,UnboundLocalError: local variable 'dynamic_table_name' referenced before assignment,failed -15137,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col11-mark i],"AssertionError: DataFrame.index are different +DataFrame shape mismatch +[left]: (5, 6) +[right]: (5, 4)",failed +11627,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_0[list0-rtruediv],"ValueError: Unable to coerce to Series, length must be 3: given 2",failed +11628,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col3-row8],KeyError: 'mark vi',failed +11629,tests.integ.modin.groupby.test_groupby_dataframe_cumulative,test_groupby_cumulative[False-False-False-True-cummax-LEXLUTHOR],"AssertionError: DataFrame are different -DataFrame.index levels are different -[left]: 2, MultiIndex([('mark i', 'mark v'), - ('mark i', 'mark vi')], - ) -[right]: 1, Index(['mark v', 'mark vi'], dtype='object')",failed -15141,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[index-include_groups_False-dropna_True-sort_True-group_keys_True-non_transform_returns_series],KeyError: 'index',failed -15145,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice_with_unordered_index[-9-1-6],KeyError: 10,failed -15152,tests.integ.modin.groupby.test_groupby_named_agg,test_named_agg_output_column_order_with_dup_columns,AttributeError: 'DataFrame' object has no attribute 'name',failed -15153,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[index-include_groups_False-dropna_True-sort_True-group_keys_True-transform_returns_series],KeyError: 'index',failed -15159,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice_with_unordered_index[-9-4-None],KeyError: 13,failed -15162,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col11-row1],"AssertionError: DataFrame.index are different +DataFrame shape mismatch +[left]: (5, 6) +[right]: (5, 4)",failed +11630,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[by1-include_groups_False-dropna_True-sort_True-group_keys_True-transform_returns_dataframe],KeyError: 'index',failed +11631,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col3-row9],"AssertionError: DataFrame are different -DataFrame.index levels are different -[left]: 2, MultiIndex([('mark i', 'mark v'), - ('mark i', 'mark vi')], - ) -[right]: 1, Index(['mark v', 'mark vi'], dtype='object')",failed -15163,tests.integ.modin.frame.test_setitem,test_df_setitem_with_unique_and_duplicate_index_values[index_values10-other_index_values10-True],ValueError: cannot reindex on an axis with duplicate labels,failed -15168,tests.integ.modin.frame.test_merge,test_merge_on_index_columns[left-True-left_i],KeyError: 'left_i',failed -15179,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col11-row4],"KeyError: ['viper', 'mark i', 'viper']",failed -15183,tests.integ.modin.groupby.test_groupby_named_agg,test_named_groupby_agg_with_incorrect_func[True-True],"AssertionError: Got Snowpark pandas Exception type , but pandas Exception type was expected. - Snowpark pandas exception: -pandas exception: ",failed -15185,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[index-include_groups_False-dropna_True-sort_True-group_keys_True-return_scalar],KeyError: 'index',failed -15186,tests.integ.modin.frame.test_merge,test_merge_on_index_columns[left-True-right_i],KeyError: 'right_i',failed -15190,tests.integ.modin.frame.test_create_or_replace_dynamic_table,test_create_or_replace_dynamic_table_no_enforce_ordering,"NotImplementedError: Modin supports the method DataFrame.create_or_replace_dynamic_table on the Snowflake backend, but not on the backend Pandas.",failed -15191,tests.integ.modin.groupby.test_groupby_named_agg,test_named_groupby_agg_with_incorrect_func[True-False],"AssertionError: Got Snowpark pandas Exception type , but pandas Exception type was expected. - Snowpark pandas exception: -pandas exception: ",failed -15196,tests.integ.modin.groupby.test_groupby_named_agg,test_named_groupby_agg_with_incorrect_func[False-True],"AssertionError: Got Snowpark pandas Exception type , but pandas Exception type was expected. - Snowpark pandas exception: -pandas exception: ",failed -15197,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice_with_unordered_index[-9-4-1],KeyError: 13,failed -15198,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col11-row5],KeyError: 'mark vi',failed -15201,tests.integ.modin.groupby.test_groupby_named_agg,test_named_groupby_agg_with_incorrect_func[False-False],"AssertionError: Got Snowpark pandas Exception type , but pandas Exception type was expected. - Snowpark pandas exception: -pandas exception: ",failed -15203,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[index-include_groups_False-dropna_True-sort_True-group_keys_False-non_transform_returns_dataframe],KeyError: 'index',failed -15206,tests.integ.modin.frame.test_merge,test_merge_on_index_columns[left-False-left_i],KeyError: 'left_i',failed -15212,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice_with_unordered_index[-9-4-4],KeyError: 13,failed -15214,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[index-include_groups_False-dropna_True-sort_True-group_keys_False-transform_returns_dataframe],KeyError: 'index',failed -15215,tests.integ.modin.frame.test_setitem,test_df_setitem_with_unique_and_duplicate_index_values[index_values11-other_index_values11-True],ValueError: cannot reindex on an axis with duplicate labels,failed -15217,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col11-row6],KeyError: 'mark vi',failed -15222,tests.integ.modin.frame.test_setitem,test_df_setitem_full_columns[key0-value0],"AssertionError: DataFrame are different +DataFrame shape mismatch +[left]: (0, 1) +[right]: (6, 1)",failed +11632,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_0[list0-floordiv],"ValueError: Unable to coerce to Series, length must be 3: given 2",failed +11634,tests.integ.modin.groupby.test_groupby_dataframe_cumulative,test_groupby_cumulative[False-False-False-True-cummax-by1],"AssertionError: DataFrame are different DataFrame shape mismatch -[left]: (3, 4) -[right]: (3, 3)",failed -15226,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[index-include_groups_False-dropna_True-sort_True-group_keys_False-non_transform_returns_series],KeyError: 'index',failed -15228,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice_with_unordered_index[-9-4-6],KeyError: 13,failed -15230,tests.integ.modin.frame.test_create_or_replace_dynamic_table,test_create_or_replace_dynamic_table_multiple_sessions_no_enforce_ordering,"NotImplementedError: Modin supports the method DataFrame.create_or_replace_dynamic_table on the Snowflake backend, but not on the backend Pandas.",failed -15233,tests.integ.modin.groupby.test_groupby_negative,test_invalid_by[invalid_by0],Failed: DID NOT RAISE ,failed -15234,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col11-row7],KeyError: 'mark vi',failed -15238,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[index-include_groups_False-dropna_True-sort_True-group_keys_False-transform_returns_series],KeyError: 'index',failed -15241,tests.integ.modin.frame.test_merge,test_merge_on_index_columns[left-False-right_i],KeyError: 'right_i',failed -15242,tests.integ.modin.frame.test_setitem,test_df_setitem_full_columns[key3-value3],"AssertionError: DataFrame are different +[left]: (5, 5) +[right]: (5, 3)",failed +11637,tests.integ.modin.groupby.test_groupby_dataframe_cumulative,test_groupby_cumulative[False-False-False-True-cummax-DARKSEID],"AssertionError: DataFrame are different DataFrame shape mismatch -[left]: (3, 4) -[right]: (3, 3)",failed -15245,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice_with_unordered_index[-9-6-None],KeyError: 15,failed -15250,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[index-include_groups_False-dropna_True-sort_True-group_keys_False-return_scalar],KeyError: 'index',failed -15252,tests.integ.modin.frame.test_setitem,test_df_setitem_lambda_dataframe[data0-2-8],"AssertionError: DataFrame are different +[left]: (5, 6) +[right]: (5, 4)",failed +11638,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[by1-include_groups_False-dropna_True-sort_True-group_keys_True-non_transform_returns_series],KeyError: 'index',failed +11639,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_0[list0-rfloordiv],"ValueError: Unable to coerce to Series, length must be 3: given 2",failed +11640,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col3-row12],AssertionError,failed +11644,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_0[list0-mod],"ValueError: Unable to coerce to Series, length must be 3: given 2",failed +11645,tests.integ.modin.frame.test_apply_axis_0,test_axis_0_return_dataframe_not_supported,"ValueError: If using all scalar values, you must pass an index",failed +11646,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[by1-include_groups_False-dropna_True-sort_True-group_keys_True-transform_returns_series],KeyError: 'index',failed +11647,tests.integ.modin.groupby.test_groupby_dataframe_cumulative,test_groupby_cumulative[False-False-False-False-cummin-LEXLUTHOR],"AssertionError: DataFrame are different DataFrame shape mismatch -[left]: (3, 3) -[right]: (3, 2)",failed -15254,tests.integ.modin.frame.test_setitem,test_df_setitem_lambda_dataframe[data1-comparison_value1-set_value1],"AssertionError: DataFrame are different +[left]: (5, 6) +[right]: (5, 4)",failed +11649,tests.integ.modin.frame.test_apply_axis_0,test_result_type[reduce],Failed: DID NOT RAISE ,failed +11650,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_0[list0-rmod],"ValueError: Unable to coerce to Series, length must be 3: given 2",failed +11651,tests.integ.modin.frame.test_apply_axis_0,test_result_type[expand],Failed: DID NOT RAISE ,failed +11652,tests.integ.modin.groupby.test_groupby_dataframe_cumulative,test_groupby_cumulative[False-False-False-False-cummin-by1],"AssertionError: DataFrame are different DataFrame shape mismatch -[left]: (3, 3) -[right]: (3, 2)",failed -15257,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice_with_unordered_index[-9-6-1],KeyError: 15,failed -15258,tests.integ.modin.groupby.test_groupby_negative,test_invalid_by[None],"AssertionError: Got Snowpark pandas Exception type , but pandas Exception type was expected. - Snowpark pandas exception: -pandas exception: ",failed -15259,tests.integ.modin.frame.test_merge,test_merge_on_index_columns[inner-True-left_i],KeyError: 'left_i',failed -15261,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[index-include_groups_False-dropna_True-sort_False-group_keys_True-non_transform_returns_dataframe],KeyError: 'index',failed -15262,tests.integ.modin.groupby.test_groupby_negative,test_invalid_by[invalid_by2],Failed: DID NOT RAISE ,failed -15268,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col11-row8],KeyError: 'mark vi',failed -15271,tests.integ.modin.groupby.test_groupby_negative,test_invalid_by[invalid_by5],"AssertionError: Snowpark pandas Exception ""('col2', 'col3')"" doesn't match pandas Exception ('col2', 'col3')",failed -15273,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col11-row9],"AssertionError: DataFrame are different +[left]: (5, 5) +[right]: (5, 3)",failed +11653,tests.integ.modin.frame.test_apply_axis_0,test_result_type[broadcast],Failed: DID NOT RAISE ,failed +11654,tests.integ.modin.groupby.test_groupby_dataframe_cumulative,test_groupby_cumulative[False-False-False-False-cummin-DARKSEID],"AssertionError: DataFrame are different DataFrame shape mismatch -[left]: (0, 2) -[right]: (6, 2)",failed -15276,tests.integ.modin.groupby.test_groupby_negative,test_invalid_none_label,"AssertionError: Got Snowpark pandas Exception type , but pandas Exception type was expected. - Snowpark pandas exception: -pandas exception: ",failed -15278,tests.integ.modin.groupby.test_groupby_default2pandas,test_groupby_axis_1[x],Failed: DID NOT RAISE ,failed -15280,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[index-include_groups_False-dropna_True-sort_False-group_keys_True-transform_returns_dataframe],KeyError: 'index',failed -15282,tests.integ.modin.groupby.test_groupby_default2pandas,test_groupby_axis_1[group_name1],Failed: DID NOT RAISE ,failed -15283,tests.integ.modin.frame.test_merge,test_merge_on_index_columns[inner-True-right_i],KeyError: 'right_i',failed -15284,tests.integ.modin.frame.test_create_or_replace_dynamic_table,test_create_or_replace_dynamic_table_index[None-True],"NotImplementedError: Modin supports the method DataFrame.create_or_replace_dynamic_table on the Snowflake backend, but not on the backend Pandas.",failed -15285,tests.integ.modin.groupby.test_groupby_negative,test_pandas_series_by,KeyError: 0,failed -15286,tests.integ.modin.groupby.test_groupby_default2pandas,test_groupby_axis_1_mi[x],Failed: DID NOT RAISE ,failed -15288,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col11-row12],AssertionError,failed -15289,tests.integ.modin.groupby.test_groupby_default2pandas,test_groupby_axis_1_mi[group_name1],Failed: DID NOT RAISE ,failed -15291,tests.integ.modin.groupby.test_groupby_default2pandas,test_groupby_with_callable_and_array[],Failed: DID NOT RAISE ,failed -15292,tests.integ.modin.frame.test_setitem,test_df_setitem_optimized,TypeError: unhashable type: 'Series',failed -15293,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col11-row13],AssertionError,failed -15294,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[index-include_groups_False-dropna_True-sort_False-group_keys_True-non_transform_returns_series],KeyError: 'index',failed -15297,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice_with_unordered_index[-9-6-4],KeyError: 15,failed -15298,tests.integ.modin.groupby.test_groupby_default2pandas,test_groupby_with_callable_and_array[by1],KeyError: at 0x329919750>,failed -15300,tests.integ.modin.groupby.test_groupby_negative,test_groupby_numeric_only_func_invalid_non_numeric_column[data0-Timestamp--sum],TypeError: datetime64 type does not support sum operations,failed -15302,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col12-mark i],AssertionError,failed -15303,tests.integ.modin.groupby.test_groupby_negative,test_groupby_numeric_only_func_invalid_non_numeric_column[data0-Timestamp--mean],Failed: DID NOT RAISE ,failed -15304,tests.integ.modin.groupby.test_groupby_default2pandas,test_groupby_with_callable_and_array[by2],KeyError: at 0x3299197e0>,failed -15305,tests.integ.modin.frame.test_merge,test_merge_on_index_columns[inner-False-left_i],KeyError: 'left_i',failed -15308,tests.integ.modin.groupby.test_groupby_negative,test_groupby_numeric_only_func_invalid_non_numeric_column[data0-Timestamp--median],Failed: DID NOT RAISE ,failed -15309,tests.integ.modin.groupby.test_groupby_default2pandas,test_timeseries_groupby_with_callable,Failed: DID NOT RAISE ,failed -15310,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col12-row1],AssertionError,failed -15311,tests.integ.modin.groupby.test_groupby_negative,test_groupby_numeric_only_func_invalid_non_numeric_column[data0-Timestamp--stddev],Failed: DID NOT RAISE ,failed -15313,tests.integ.modin.groupby.test_groupby_default2pandas,test_groupby_with_numpy_array,Failed: DID NOT RAISE ,failed -15314,tests.integ.modin.frame.test_setitem,test_df_setitem_bool_2d_key_array_value[df_key-key_has_less_cols],"AssertionError: DataFrame.iloc[:, 2] (column name=""c"") are different +[left]: (5, 6) +[right]: (5, 4)",failed +11655,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col3-row13],AssertionError,failed +11656,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[by1-include_groups_False-dropna_True-sort_True-group_keys_True-return_scalar],KeyError: 'index',failed +11657,tests.integ.modin.frame.test_apply_axis_0,test_axis_1_apply_args_kwargs_with_snowpandas_object,Failed: DID NOT RAISE ,failed +11658,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_0[list0-pow],"ValueError: Unable to coerce to Series, length must be 3: given 2",failed +11659,tests.integ.modin.groupby.test_groupby_dataframe_cumulative,test_groupby_cumulative[False-False-False-False-cummax-LEXLUTHOR],"AssertionError: DataFrame are different -DataFrame.iloc[:, 2] (column name=""c"") values are different (100.0 %) -[index]: [0, 1, 2] -[left]: [-7, -8, -8] -[right]: [7, 8, 8]",failed -15315,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col12-row2],AssertionError: Got type: ,failed -15317,tests.integ.modin.groupby.test_groupby_default2pandas,test_groupby_series_with_numpy_array[by_list0],Failed: DID NOT RAISE ,failed -15318,tests.integ.modin.frame.test_loc,test_df_loc_get_key_slice_with_unordered_index[-9-6-6],KeyError: 15,failed -15320,tests.integ.modin.groupby.test_groupby_default2pandas,test_groupby_series_with_numpy_array[by_list1],Failed: DID NOT RAISE ,failed -15323,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col12-row3],AssertionError,failed -15326,tests.integ.modin.groupby.test_groupby_default2pandas,test_groupby_with_external_series,Failed: DID NOT RAISE ,failed -15328,tests.integ.modin.frame.test_setitem,test_df_setitem_bool_2d_key_array_value[df_key-key_has_less_rows],"AssertionError: DataFrame.iloc[:, 0] (column name=""a"") are different +DataFrame shape mismatch +[left]: (5, 6) +[right]: (5, 4)",failed +11660,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col3-row14],"AssertionError: DataFrame.columns are different -DataFrame.iloc[:, 0] (column name=""a"") values are different (33.33333 %) -[index]: [0, 1, 2] -[left]: [1, -2, -3] -[right]: [1, -2, 3]",failed -15330,tests.integ.modin.groupby.test_groupby_negative,test_groupby_numeric_only_func_invalid_non_numeric_column[data0-Timestamp--variance],TypeError: datetime64 type does not support var operations,failed -15332,tests.integ.modin.groupby.test_groupby_default2pandas,test_groupby_agg_unsupported_function_SNOW_1305464[numpy_aggregation_function],Failed: DID NOT RAISE ,failed -15334,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[index-include_groups_False-dropna_True-sort_False-group_keys_True-transform_returns_series],KeyError: 'index',failed -15335,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col12-row4],"KeyError: ['viper', 'mark i', 'viper']",failed -15337,tests.integ.modin.groupby.test_groupby_negative,test_groupby_numeric_only_func_invalid_non_numeric_column[data0-Timestamp--stddev_pop],Failed: DID NOT RAISE ,failed -15338,tests.integ.modin.groupby.test_groupby_default2pandas,test_groupby_agg_unsupported_function_SNOW_1305464[user_defined_function],Failed: DID NOT RAISE ,failed -15340,tests.integ.modin.frame.test_setitem,test_df_setitem_bool_2d_key_array_value[array_key-key_has_more_cols],ValueError: Array must be same shape as DataFrame,failed -15341,tests.integ.modin.groupby.test_groupby_default2pandas,test_groupby_agg_unsupported_function_SNOW_1305464[list_with_user_defined_function_and_string],Failed: DID NOT RAISE ,failed -15342,tests.integ.modin.frame.test_create_or_replace_dynamic_table,test_create_or_replace_dynamic_table_index[None-False],"NotImplementedError: Modin supports the method DataFrame.create_or_replace_dynamic_table on the Snowflake backend, but not on the backend Pandas.",failed -15344,tests.integ.modin.groupby.test_groupby_default2pandas,test_groupby_agg_unsupported_function_SNOW_1305464[tuple_with_user_defined_function_and_string],Failed: DID NOT RAISE ,failed -15345,tests.integ.modin.frame.test_setitem,test_df_setitem_bool_2d_key_array_value[array_key-key_has_less_cols],ValueError: Array must be same shape as DataFrame,failed -15347,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[index-include_groups_False-dropna_True-sort_False-group_keys_True-return_scalar],KeyError: 'index',failed -15348,tests.integ.modin.frame.test_merge,test_merge_on_index_columns[inner-False-right_i],KeyError: 'right_i',failed -15349,tests.integ.modin.groupby.test_groupby_default2pandas,test_groupby_agg_unsupported_function_SNOW_1305464[set_with_user_defined_function_and_string],Failed: DID NOT RAISE ,failed -15351,tests.integ.modin.frame.test_loc,test_df_loc_get_reversed_key_slice_with_unordered_nullable_index[last--1-1-None],KeyError: 2,failed -15352,tests.integ.modin.groupby.test_groupby_negative,test_groupby_numeric_only_func_invalid_non_numeric_column[data0-Timestamp--var_pop],TypeError: datetime64 type does not support var operations,failed -15353,tests.integ.modin.frame.test_setitem,test_df_setitem_bool_2d_key_array_value[array_key-key_has_more_rows],ValueError: Array must be same shape as DataFrame,failed -15355,tests.integ.modin.groupby.test_groupby_default2pandas,test_groupby_agg_unsupported_function_SNOW_1305464[tuple_with_builtins_and_native_pandas_function],Failed: DID NOT RAISE ,failed -15356,tests.integ.modin.groupby.test_groupby_negative,test_groupby_numeric_only_func_invalid_non_numeric_column[data1-Array--sum],Failed: DID NOT RAISE ,failed -15358,tests.integ.modin.groupby.test_groupby_default2pandas,test_groupby_agg_unsupported_function_SNOW_1305464[dict],Failed: DID NOT RAISE ,failed -15359,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[index-include_groups_False-dropna_True-sort_False-group_keys_False-non_transform_returns_dataframe],KeyError: 'index',failed -15360,tests.integ.modin.groupby.test_groupby_default2pandas,test_groupby_agg_unsupported_function_SNOW_1305464[named_agg],Failed: DID NOT RAISE ,failed -15361,tests.integ.modin.frame.test_merge,test_merge_on_index_columns[right-True-left_i],KeyError: 'left_i',failed -15362,tests.integ.modin.frame.test_loc,test_df_loc_get_reversed_key_slice_with_unordered_nullable_index[last--1-1-1],KeyError: 2,failed -15363,tests.integ.modin.groupby.test_groupby_default2pandas,test_groupby_level_mapper[mapper0-0],KeyError: 'foo',failed -15364,tests.integ.modin.groupby.test_groupby_default2pandas,test_groupby_level_mapper[mapper1-1],KeyError: 'one',failed -15365,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[index-include_groups_False-dropna_True-sort_False-group_keys_False-transform_returns_dataframe],KeyError: 'index',failed -15366,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col12-row5],KeyError: 'mark vi',failed -15367,tests.integ.modin.groupby.test_groupby_default2pandas,test_std_var_ddof_unsupported[col1--std],Failed: DID NOT RAISE ,failed -15368,tests.integ.modin.groupby.test_groupby_default2pandas,test_std_var_ddof_unsupported[col1--var],Failed: DID NOT RAISE ,failed -15369,tests.integ.modin.frame.test_setitem,test_df_setitem_bool_2d_key_array_value[array_key-key_has_less_rows],ValueError: Array must be same shape as DataFrame,failed -15370,tests.integ.modin.groupby.test_groupby_default2pandas,test_std_var_ddof_unsupported[by1--std],Failed: DID NOT RAISE ,failed -15371,tests.integ.modin.frame.test_loc,test_df_loc_get_reversed_key_slice_with_unordered_nullable_index[last--1-1-4],KeyError: 2,failed -15372,tests.integ.modin.groupby.test_groupby_default2pandas,test_std_var_ddof_unsupported[by1--var],Failed: DID NOT RAISE ,failed -15374,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[index-include_groups_False-dropna_True-sort_False-group_keys_False-non_transform_returns_series],KeyError: 'index',failed -15375,tests.integ.modin.groupby.test_groupby_default2pandas,test_groupby_ngroups_axis_1,Failed: DID NOT RAISE ,failed -15376,tests.integ.modin.frame.test_merge,test_merge_on_index_columns[right-True-right_i],KeyError: 'right_i',failed -15377,tests.integ.modin.groupby.test_groupby_default2pandas,test_groupby_ngroups_axis_1_mi,Failed: DID NOT RAISE ,failed -15379,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col12-row6],KeyError: 'mark vi',failed -15380,tests.integ.modin.frame.test_create_or_replace_dynamic_table,test_create_or_replace_dynamic_table_index[index_labels1-True],"NotImplementedError: Modin supports the method DataFrame.create_or_replace_dynamic_table on the Snowflake backend, but not on the backend Pandas.",failed -15381,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[index-include_groups_False-dropna_True-sort_False-group_keys_False-transform_returns_series],KeyError: 'index',failed -15382,tests.integ.modin.groupby.test_groupby_negative,test_groupby_numeric_only_func_invalid_non_numeric_column[data1-Array--mean],"TypeError: agg function failed [how->mean,dtype->object]",failed -15383,tests.integ.modin.groupby.test_groupby_default2pandas,test_non_callable_func,TypeError: 'int' object is not callable,failed -15384,tests.integ.modin.frame.test_merge,test_merge_on_index_columns[right-False-left_i],KeyError: 'left_i',failed -15385,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col12-row7],KeyError: 'mark vi',failed -15386,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[index-include_groups_False-dropna_True-sort_False-group_keys_False-return_scalar],KeyError: 'index',failed -15387,tests.integ.modin.frame.test_loc,test_df_loc_get_reversed_key_slice_with_unordered_nullable_index[last--1-1-6],KeyError: 2,failed -15389,tests.integ.modin.frame.test_loc,test_df_loc_get_reversed_key_slice_with_unordered_nullable_index[last--1-4-None],"AssertionError: DataFrame are different +DataFrame.columns classes are different +[left]: Index(['buzz1'], dtype='object', name='buzz') +[right]: MultiIndex([('fizz1', 'buzz1')], + names=['fizz', 'buzz'])",failed +11661,tests.integ.modin.groupby.test_groupby_dataframe_cumulative,test_groupby_cumulative[False-False-False-False-cummax-by1],"AssertionError: DataFrame are different DataFrame shape mismatch -[left]: (1, 8) -[right]: (4, 8)",failed -15390,tests.integ.modin.groupby.test_groupby_negative,test_groupby_numeric_only_func_invalid_non_numeric_column[data1-Array--median],"TypeError: agg function failed [how->median,dtype->object]",failed -15392,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[index-include_groups_False-dropna_False-sort_True-group_keys_True-non_transform_returns_dataframe],KeyError: 'index',failed -15393,tests.integ.modin.groupby.test_groupby_negative,test_groupby_agg_invalid_min_count[min-5.8],TypeError: 'float' object cannot be interpreted as an integer,failed -15394,tests.integ.modin.frame.test_merge,test_merge_on_index_columns[right-False-right_i],KeyError: 'right_i',failed -15396,tests.integ.modin.frame.test_loc,test_df_loc_get_reversed_key_slice_with_unordered_nullable_index[last--1-4-1],"AssertionError: DataFrame are different +[left]: (5, 5) +[right]: (5, 3)",failed +11662,tests.integ.modin.groupby.test_groupby_dataframe_cumulative,test_groupby_cumulative[False-False-False-False-cummax-DARKSEID],"AssertionError: DataFrame are different DataFrame shape mismatch -[left]: (0, 8) -[right]: (3, 8)",failed -15398,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col12-row8],KeyError: 'mark vi',failed -15402,tests.integ.modin.frame.test_loc,test_df_loc_get_reversed_key_slice_with_unordered_nullable_index[last--1-4-4],"AssertionError: DataFrame are different +[left]: (5, 6) +[right]: (5, 4)",failed +11663,tests.integ.modin.frame.test_loc,test_df_loc_set_with_column_wise_list_like_item[index--item2-A],"ValueError: could not broadcast input array from shape (4,) into shape (2, 1)",failed +11665,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[by1-include_groups_False-dropna_True-sort_True-group_keys_False-non_transform_returns_dataframe],KeyError: 'index',failed +11667,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col4-mark i],KeyError: 'fizz2',failed +11672,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_0[list0-rpow],"ValueError: Unable to coerce to Series, length must be 3: given 2",failed +11673,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[by1-include_groups_False-dropna_True-sort_True-group_keys_False-transform_returns_dataframe],KeyError: 'index',failed +11675,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col4-row1],KeyError: 'fizz2',failed +11678,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_0[ndarray0-add],"ValueError: Unable to coerce to Series, length must be 3: given 2",failed +11681,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[by1-include_groups_False-dropna_True-sort_True-group_keys_False-non_transform_returns_series],KeyError: 'index',failed +11684,tests.integ.modin.frame.test_loc,test_df_loc_set_with_column_wise_list_like_item[index--item2-X],"ValueError: could not broadcast input array from shape (4,) into shape (2, 1)",failed +11685,tests.integ.modin.frame.test_set_index,test_set_index_pass_arrays[True-True-frame_of_ints-Index],"TypeError: The parameter ""keys"" may be a column key, one-dimensional array, or a list containing only valid column keys and one-dimensional arrays. Received column of type ",failed +11688,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_0[ndarray0-radd],"ValueError: Unable to coerce to Series, length must be 3: given 2",failed +11690,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col4-row2],KeyError: 'fizz2',failed +11697,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[by1-include_groups_False-dropna_True-sort_True-group_keys_False-transform_returns_series],KeyError: 'index',failed +11698,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_0[ndarray0-sub],"ValueError: Unable to coerce to Series, length must be 3: given 2",failed +11705,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_0[ndarray0-rsub],"ValueError: Unable to coerce to Series, length must be 3: given 2",failed +11707,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[by1-include_groups_False-dropna_True-sort_True-group_keys_False-return_scalar],KeyError: 'index',failed +11710,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_0[ndarray0-mul],"ValueError: Unable to coerce to Series, length must be 3: given 2",failed +11711,tests.integ.modin.frame.test_iloc,test_df_iloc_get_non_numeric_key_negative[row-key8],Failed: DID NOT RAISE ,failed +11714,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[by1-include_groups_False-dropna_True-sort_False-group_keys_True-non_transform_returns_dataframe],KeyError: 'index',failed +11715,tests.integ.modin.frame.test_apply_axis_0,test_axis_0_date_time_timestamp_type[data0--expected_result0],AttributeError: Can only use .dt accessor with datetimelike values,failed +11716,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_0[ndarray0-rmul],"ValueError: Unable to coerce to Series, length must be 3: given 2",failed +11718,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col4-row3],KeyError: 'fizz2',failed +11721,tests.integ.modin.frame.test_loc,test_df_loc_set_with_column_wise_list_like_item[index--item2-col_key2],"ValueError: could not broadcast input array from shape (4,) into shape (2, 1)",failed +11722,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[by1-include_groups_False-dropna_True-sort_False-group_keys_True-transform_returns_dataframe],KeyError: 'index',failed +11723,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col4-row4],"KeyError: ['viper', 'mark i', 'viper']",failed +11726,tests.integ.modin.frame.test_apply_axis_0,test_axis_0_date_time_timestamp_type[data1--expected_result1],AttributeError: Can only use .dt accessor with datetimelike values,failed +11731,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[by1-include_groups_False-dropna_True-sort_False-group_keys_True-non_transform_returns_series],KeyError: 'index',failed +11736,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_0[ndarray0-truediv],"ValueError: Unable to coerce to Series, length must be 3: given 2",failed +11737,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col4-row5],KeyError: 'mark vi',failed +11739,tests.integ.modin.frame.test_apply_axis_0,test_axis_0_apply_args_kwargs,AssertionError: exception type does not match with expected type ,failed +11741,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[by1-include_groups_False-dropna_True-sort_False-group_keys_True-transform_returns_series],KeyError: 'index',failed +11743,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_0[ndarray0-rtruediv],"ValueError: Unable to coerce to Series, length must be 3: given 2",failed +11745,tests.integ.modin.frame.test_loc,test_df_loc_set_with_column_wise_list_like_item[index--item2-col_key3],"ValueError: could not broadcast input array from shape (4,) into shape (2, 1)",failed +11750,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_0[ndarray0-floordiv],"ValueError: Unable to coerce to Series, length must be 3: given 2",failed +11752,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[by1-include_groups_False-dropna_True-sort_False-group_keys_True-return_scalar],KeyError: 'index',failed +11756,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col4-row6],KeyError: 'mark vi',failed +11757,tests.integ.modin.frame.test_apply_axis_0,test_apply_axis_0_bug_1650918[data0-],[XPASS(strict)] SNOW-1650918: Apply on dataframe data columns containing NULL fails with invalid arguments to udtf function,failed +11759,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_0[ndarray0-rfloordiv],"ValueError: Unable to coerce to Series, length must be 3: given 2",failed +11760,tests.integ.modin.frame.test_apply_axis_0,test_apply_axis_0_bug_1650918[data1-],[XPASS(strict)] SNOW-1650918: Apply on dataframe data columns containing NULL fails with invalid arguments to udtf function,failed +11762,tests.integ.modin.frame.test_apply_axis_0,test_apply_nested_series_negative,Failed: DID NOT RAISE ,failed +11763,tests.integ.modin.frame.test_loc,test_df_loc_set_with_column_wise_list_like_item[index--item2-col_key4],"ValueError: could not broadcast input array from shape (4,) into shape (2, 1)",failed +11765,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_0[ndarray0-mod],"ValueError: Unable to coerce to Series, length must be 3: given 2",failed +11768,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_0[ndarray0-rmod],"ValueError: Unable to coerce to Series, length must be 3: given 2",failed +11769,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col4-row7],KeyError: 'mark vi',failed +11772,tests.integ.modin.frame.test_set_index,test_set_index_pass_arrays[True-True-frame_of_ints_and_timedelta-Index],"TypeError: The parameter ""keys"" may be a column key, one-dimensional array, or a list containing only valid column keys and one-dimensional arrays. Received column of type ",failed +11774,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_0[ndarray0-pow],"ValueError: Unable to coerce to Series, length must be 3: given 2",failed +11780,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_0[ndarray0-rpow],"ValueError: Unable to coerce to Series, length must be 3: given 2",failed +11781,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[by1-include_groups_False-dropna_True-sort_False-group_keys_False-non_transform_returns_dataframe],KeyError: 'index',failed +11782,tests.integ.modin.frame.test_loc,test_df_loc_set_with_column_wise_list_like_item[index--item2-None],"ValueError: could not broadcast input array from shape (4,) into shape (2, 1)",failed +11789,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[by1-include_groups_False-dropna_True-sort_False-group_keys_False-transform_returns_dataframe],KeyError: 'index',failed +11791,tests.integ.modin.frame.test_loc,test_df_loc_set_with_row_wise_list_like_item[list--item0-col_key2],ValueError: Must have equal len keys and value when setting with an iterable,failed +11793,tests.integ.modin.frame.test_iloc,test_df_iloc_get_non_numeric_key_negative[row-key9],Failed: DID NOT RAISE ,failed +11795,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col4-row8],KeyError: 'mark vi',failed +11796,tests.integ.modin.frame.test_loc,test_df_loc_set_with_row_wise_list_like_item[list--item0-col_key3],ValueError: Must have equal len keys and value when setting with an iterable,failed +11798,tests.integ.modin.frame.test_iloc,test_df_iloc_get_non_numeric_key_negative[row-string],"ValueError: +Location based indexing can only have [integer, integer slice (START point is +INCLUDED, END point is EXCLUDED), listlike of integers, boolean array] types.",failed +11800,tests.integ.modin.frame.test_loc,test_df_loc_set_with_row_wise_list_like_item[list--item0-col_key4],ValueError: Must have equal len keys and value when setting with an iterable,failed +11801,tests.integ.modin.frame.test_iloc,test_df_iloc_get_non_numeric_key_negative[row-test],"ValueError: +Location based indexing can only have [integer, integer slice (START point is +INCLUDED, END point is EXCLUDED), listlike of integers, boolean array] types.",failed +11802,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[by1-include_groups_False-dropna_True-sort_False-group_keys_False-non_transform_returns_series],KeyError: 'index',failed +11804,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_0[index0-add],"ValueError: Unable to coerce to Series, length must be 3: given 2",failed +11805,tests.integ.modin.frame.test_iloc,test_df_iloc_get_non_numeric_key_negative[row-key12],"ValueError: +Location based indexing can only have [integer, integer slice (START point is +INCLUDED, END point is EXCLUDED), listlike of integers, boolean array] types.",failed +11807,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col4-row9],KeyError: 'fizz2',failed +11808,tests.integ.modin.frame.test_loc,test_df_loc_set_with_row_wise_list_like_item[list--item0-col_key5],ValueError: Must have equal len keys and value when setting with an iterable,failed +11811,tests.integ.modin.frame.test_iloc,test_df_iloc_get_non_numeric_key_negative[row-key13],"ValueError: +Location based indexing can only have [integer, integer slice (START point is +INCLUDED, END point is EXCLUDED), listlike of integers, boolean array] types.",failed +11812,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_0[index0-radd],"ValueError: Unable to coerce to Series, length must be 3: given 2",failed +11813,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[by1-include_groups_False-dropna_True-sort_False-group_keys_False-transform_returns_series],KeyError: 'index',failed +11815,tests.integ.modin.frame.test_iloc,test_df_iloc_get_non_numeric_key_negative[col-None],"ValueError: +Location based indexing can only have [integer, integer slice (START point is +INCLUDED, END point is EXCLUDED), listlike of integers, boolean array] types.",failed +11817,tests.integ.modin.frame.test_loc,test_df_loc_set_with_row_wise_list_like_item[list--item1-col_key1],"AssertionError: Regex pattern did not match. + Regex: 'Must have equal len keys and value when setting with an iterable' + Input: 'could not broadcast input array from shape (2,) into shape (2, 3)'",failed +11818,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_0[index0-sub],"ValueError: Unable to coerce to Series, length must be 3: given 2",failed +11820,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col4-row10],KeyError: 'fizz2',failed +11821,tests.integ.modin.frame.test_iloc,test_df_iloc_get_non_numeric_key_negative[col-True],"ValueError: +Location based indexing can only have [integer, integer slice (START point is +INCLUDED, END point is EXCLUDED), listlike of integers, boolean array] types.",failed +11822,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[by1-include_groups_False-dropna_True-sort_False-group_keys_False-return_scalar],KeyError: 'index',failed +11824,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[by1-include_groups_False-dropna_False-sort_True-group_keys_True-non_transform_returns_dataframe],reason: SNOW-1229760,xfailed +11825,tests.integ.modin.frame.test_iloc,test_df_iloc_get_non_numeric_key_negative[col-False],"ValueError: +Location based indexing can only have [integer, integer slice (START point is +INCLUDED, END point is EXCLUDED), listlike of integers, boolean array] types.",failed +11827,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_0[index0-rsub],"ValueError: Unable to coerce to Series, length must be 3: given 2",failed +11829,tests.integ.modin.frame.test_iloc,test_df_iloc_get_non_numeric_key_negative[col--3.14],"ValueError: +Location based indexing can only have [integer, integer slice (START point is +INCLUDED, END point is EXCLUDED), listlike of integers, boolean array] types.",failed +11831,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col4-row11],KeyError: 'fizz2',failed +11832,tests.integ.modin.frame.test_iloc,test_df_iloc_get_non_numeric_key_negative[col-3.142857142857143],"ValueError: +Location based indexing can only have [integer, integer slice (START point is +INCLUDED, END point is EXCLUDED), listlike of integers, boolean array] types.",failed +11833,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[by1-include_groups_False-dropna_False-sort_True-group_keys_True-transform_returns_dataframe],KeyError: 'index',failed +11834,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_0[index0-mul],"ValueError: Unable to coerce to Series, length must be 3: given 2",failed +11835,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[by1-include_groups_False-dropna_False-sort_True-group_keys_True-non_transform_returns_series],reason: SNOW-1229760,xfailed +11838,tests.integ.modin.frame.test_iloc,test_df_iloc_get_non_numeric_key_negative[col-nan],"ValueError: +Location based indexing can only have [integer, integer slice (START point is +INCLUDED, END point is EXCLUDED), listlike of integers, boolean array] types.",failed +11839,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_0[index0-rmul],"ValueError: Unable to coerce to Series, length must be 3: given 2",failed +11842,tests.integ.modin.frame.test_loc,test_df_loc_set_with_row_wise_list_like_item[list--item1-col_key2],ValueError: Must have equal len keys and value when setting with an iterable,failed +11843,tests.integ.modin.frame.test_iloc,test_df_iloc_get_non_numeric_key_negative[col-key6],"ValueError: +Location based indexing can only have [integer, integer slice (START point is +INCLUDED, END point is EXCLUDED), listlike of integers, boolean array] types.",failed +11844,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[by1-include_groups_False-dropna_False-sort_True-group_keys_True-transform_returns_series],KeyError: 'index',failed +11846,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_0[index0-truediv],"ValueError: Unable to coerce to Series, length must be 3: given 2",failed +11848,tests.integ.modin.frame.test_loc,test_df_loc_set_with_row_wise_list_like_item[list--item1-col_key3],ValueError: Must have equal len keys and value when setting with an iterable,failed +11850,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[by1-include_groups_False-dropna_False-sort_True-group_keys_True-return_scalar],KeyError: 'index',failed +11852,tests.integ.modin.frame.test_loc,test_df_loc_set_with_row_wise_list_like_item[list--item1-col_key4],ValueError: Must have equal len keys and value when setting with an iterable,failed +11853,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[by1-include_groups_False-dropna_False-sort_True-group_keys_False-non_transform_returns_dataframe],reason: SNOW-1229760,xfailed +11857,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col4-row12],KeyError: 'fizz2',failed +11858,tests.integ.modin.frame.test_loc,test_df_loc_set_with_row_wise_list_like_item[list--item2-col_key0],Failed: DID NOT RAISE ,failed +11861,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[by1-include_groups_False-dropna_False-sort_True-group_keys_False-transform_returns_dataframe],KeyError: 'index',failed +11862,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[by1-include_groups_False-dropna_False-sort_True-group_keys_False-non_transform_returns_series],reason: SNOW-1229760,xfailed +11864,tests.integ.modin.frame.test_loc,test_df_loc_set_with_row_wise_list_like_item[list--item2-col_key1],"AssertionError: Regex pattern did not match. + Regex: 'Must have equal len keys and value when setting with an iterable' + Input: 'could not broadcast input array from shape (4,) into shape (2, 3)'",failed +11865,tests.integ.modin.frame.test_set_index,test_set_index_pass_arrays[True-False-frame_of_ints-Index],"TypeError: The parameter ""keys"" may be a column key, one-dimensional array, or a list containing only valid column keys and one-dimensional arrays. Received column of type ",failed +11869,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_0[index0-rtruediv],"ValueError: Unable to coerce to Series, length must be 3: given 2",failed +11870,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col4-row13],KeyError: 'fizz2',failed +11874,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[by1-include_groups_False-dropna_False-sort_True-group_keys_False-transform_returns_series],KeyError: 'index',failed +11879,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_0[index0-floordiv],"ValueError: Unable to coerce to Series, length must be 3: given 2",failed +11880,tests.integ.modin.frame.test_loc,test_df_loc_set_with_row_wise_list_like_item[list--item2-col_key5],ValueError: Must have equal len keys and value when setting with an iterable,failed +11885,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col4-row14],KeyError: 'fizz2',failed +11887,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_0[index0-rfloordiv],"ValueError: Unable to coerce to Series, length must be 3: given 2",failed +11890,tests.integ.modin.frame.test_loc,test_df_loc_set_with_row_wise_list_like_item[array--item0-col_key2],ValueError: Must have equal len keys and value when setting with an iterable,failed +11891,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[by1-include_groups_False-dropna_False-sort_True-group_keys_False-return_scalar],KeyError: 'index',failed +11892,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[by1-include_groups_False-dropna_False-sort_False-group_keys_True-non_transform_returns_dataframe],reason: SNOW-1229760,xfailed +11894,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_0[index0-mod],"ValueError: Unable to coerce to Series, length must be 3: given 2",failed +11896,tests.integ.modin.frame.test_loc,test_df_loc_set_with_row_wise_list_like_item[array--item0-col_key3],ValueError: Must have equal len keys and value when setting with an iterable,failed +11898,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col5-mark i],KeyError: 'buzz1',failed +11899,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_0[index0-rmod],"ValueError: Unable to coerce to Series, length must be 3: given 2",failed +11901,tests.integ.modin.frame.test_loc,test_df_loc_set_with_row_wise_list_like_item[array--item0-col_key4],ValueError: Must have equal len keys and value when setting with an iterable,failed +11902,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[by1-include_groups_False-dropna_False-sort_False-group_keys_True-transform_returns_dataframe],KeyError: 'index',failed +11903,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[by1-include_groups_False-dropna_False-sort_False-group_keys_True-non_transform_returns_series],reason: SNOW-1229760,xfailed +11906,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_0[index0-pow],"ValueError: Unable to coerce to Series, length must be 3: given 2",failed +11907,tests.integ.modin.frame.test_loc,test_df_loc_set_with_row_wise_list_like_item[array--item0-col_key5],ValueError: Must have equal len keys and value when setting with an iterable,failed +11910,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[by1-include_groups_False-dropna_False-sort_False-group_keys_True-transform_returns_series],KeyError: 'index',failed +11912,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_0[index0-rpow],"ValueError: Unable to coerce to Series, length must be 3: given 2",failed +11914,tests.integ.modin.frame.test_loc,test_df_loc_set_with_row_wise_list_like_item[array--item1-col_key1],"AssertionError: Regex pattern did not match. + Regex: 'Must have equal len keys and value when setting with an iterable' + Input: 'could not broadcast input array from shape (2,) into shape (2, 3)'",failed +11916,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_0[index_with_name0-add],"ValueError: Unable to coerce to Series, length must be 3: given 2",failed +11917,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[by1-include_groups_False-dropna_False-sort_False-group_keys_True-return_scalar],KeyError: 'index',failed +11919,tests.integ.modin.frame.test_loc,test_df_loc_set_with_row_wise_list_like_item[array--item1-col_key2],ValueError: Must have equal len keys and value when setting with an iterable,failed +11920,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[by1-include_groups_False-dropna_False-sort_False-group_keys_False-non_transform_returns_dataframe],reason: SNOW-1229760,xfailed +11923,tests.integ.modin.frame.test_iloc,test_df_iloc_get_non_numeric_key_negative[col-key7],"ValueError: +Location based indexing can only have [integer, integer slice (START point is +INCLUDED, END point is EXCLUDED), listlike of integers, boolean array] types.",failed +11925,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[by1-include_groups_False-dropna_False-sort_False-group_keys_False-transform_returns_dataframe],KeyError: 'index',failed +11926,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col5-row1],KeyError: 'buzz1',failed +11927,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[by1-include_groups_False-dropna_False-sort_False-group_keys_False-non_transform_returns_series],reason: SNOW-1229760,xfailed +11932,tests.integ.modin.frame.test_applymap,test_applymap_basic_without_type_hints[applymap-return_timedelta_scalar],[XPASS(strict)] SNOW-1619940,failed +11937,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_0[index_with_name0-radd],"ValueError: Unable to coerce to Series, length must be 3: given 2",failed +11938,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col5-row2],KeyError: 'buzz1',failed +11940,tests.integ.modin.frame.test_loc,test_df_loc_set_with_row_wise_list_like_item[array--item1-col_key3],ValueError: Must have equal len keys and value when setting with an iterable,failed +11944,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_0[index_with_name0-sub],"ValueError: Unable to coerce to Series, length must be 3: given 2",failed +11945,tests.integ.modin.frame.test_loc,test_df_loc_set_with_row_wise_list_like_item[array--item1-col_key4],ValueError: Must have equal len keys and value when setting with an iterable,failed +11950,tests.integ.modin.frame.test_loc,test_df_loc_set_with_row_wise_list_like_item[array--item2-col_key0],Failed: DID NOT RAISE ,failed +11951,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_0[index_with_name0-rsub],"ValueError: Unable to coerce to Series, length must be 3: given 2",failed +11954,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[by1-include_groups_False-dropna_False-sort_False-group_keys_False-transform_returns_series],KeyError: 'index',failed +11955,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col5-row3],KeyError: 'buzz1',failed +11959,tests.integ.modin.frame.test_set_index,test_set_index_pass_arrays[True-False-frame_of_ints_and_timedelta-Index],"TypeError: The parameter ""keys"" may be a column key, one-dimensional array, or a list containing only valid column keys and one-dimensional arrays. Received column of type ",failed +11960,tests.integ.modin.frame.test_loc,test_df_loc_set_with_row_wise_list_like_item[array--item2-col_key1],"AssertionError: Regex pattern did not match. + Regex: 'Must have equal len keys and value when setting with an iterable' + Input: 'could not broadcast input array from shape (4,) into shape (2, 3)'",failed +11961,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_0[index_with_name0-mul],"ValueError: Unable to coerce to Series, length must be 3: given 2",failed +11966,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col5-row4],"KeyError: ['viper', 'mark i', 'viper']",failed +11967,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[by1-include_groups_False-dropna_False-sort_False-group_keys_False-return_scalar],KeyError: 'index',failed +11975,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_0[index_with_name0-rmul],"ValueError: Unable to coerce to Series, length must be 3: given 2",failed +11977,tests.integ.modin.frame.test_applymap,test_applymap_basic_without_type_hints[applymap-apply_on_frame_with_timedelta_data_columns_returns_int],[XPASS(strict)] ,failed +11978,tests.integ.modin.frame.test_loc,test_df_loc_set_with_row_wise_list_like_item[array--item2-col_key5],ValueError: Must have equal len keys and value when setting with an iterable,failed +11981,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_0[index_with_name0-truediv],"ValueError: Unable to coerce to Series, length must be 3: given 2",failed +11983,tests.integ.modin.frame.test_set_index,test_set_index_pass_arrays[False-True-frame_of_ints-Series],"KeyError: ""None of ['a'] are in the columns""",failed +11986,tests.integ.modin.frame.test_applymap,test_applymap_basic_without_type_hints[map-return_timedelta_scalar],[XPASS(strict)] SNOW-1619940,failed +11989,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[index-include_groups_True-dropna_True-sort_True-group_keys_True-non_transform_returns_dataframe],KeyError: 'index',failed +11990,tests.integ.modin.frame.test_loc,test_df_loc_set_with_row_wise_list_like_item[tuple--item0-col_key2],ValueError: Must have equal len keys and value when setting with an iterable,failed +11992,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_0[index_with_name0-rtruediv],"ValueError: Unable to coerce to Series, length must be 3: given 2",failed +11996,tests.integ.modin.frame.test_loc,test_df_loc_set_with_row_wise_list_like_item[tuple--item0-col_key3],ValueError: Must have equal len keys and value when setting with an iterable,failed +11998,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_0[index_with_name0-floordiv],"ValueError: Unable to coerce to Series, length must be 3: given 2",failed +12002,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[index-include_groups_True-dropna_True-sort_True-group_keys_True-transform_returns_dataframe],KeyError: 'index',failed +12005,tests.integ.modin.frame.test_loc,test_df_loc_set_with_row_wise_list_like_item[tuple--item0-col_key4],ValueError: Must have equal len keys and value when setting with an iterable,failed +12007,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col5-row5],KeyError: 'mark vi',failed +12011,tests.integ.modin.frame.test_loc,test_df_loc_set_with_row_wise_list_like_item[tuple--item0-col_key5],ValueError: Must have equal len keys and value when setting with an iterable,failed +12013,tests.integ.modin.frame.test_applymap,test_applymap_basic_without_type_hints[map-apply_on_frame_with_timedelta_data_columns_returns_int],[XPASS(strict)] ,failed +12014,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[index-include_groups_True-dropna_True-sort_True-group_keys_True-non_transform_returns_series],KeyError: 'index',failed +12018,tests.integ.modin.frame.test_loc,test_df_loc_set_with_row_wise_list_like_item[tuple--item1-col_key1],"AssertionError: Regex pattern did not match. + Regex: 'Must have equal len keys and value when setting with an iterable' + Input: 'could not broadcast input array from shape (2,) into shape (2, 3)'",failed +12019,tests.integ.modin.frame.test_applymap,test_applymap_basic_with_type_hints[applymap-return_timedelta_scalar],[XPASS(strict)] SNOW-1619940,failed +12020,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col5-row6],KeyError: 'mark vi',failed +12021,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_0[index_with_name0-rfloordiv],"ValueError: Unable to coerce to Series, length must be 3: given 2",failed +12025,tests.integ.modin.frame.test_loc,test_df_loc_set_with_row_wise_list_like_item[tuple--item1-col_key2],ValueError: Must have equal len keys and value when setting with an iterable,failed +12026,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[index-include_groups_True-dropna_True-sort_True-group_keys_True-transform_returns_series],KeyError: 'index',failed +12030,tests.integ.modin.frame.test_loc,test_df_loc_set_with_row_wise_list_like_item[tuple--item1-col_key3],ValueError: Must have equal len keys and value when setting with an iterable,failed +12031,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_0[index_with_name0-mod],"ValueError: Unable to coerce to Series, length must be 3: given 2",failed +12033,tests.integ.modin.frame.test_iloc,test_df_iloc_get_non_numeric_key_negative[col-key8],Failed: DID NOT RAISE ,failed +12035,tests.integ.modin.frame.test_loc,test_df_loc_set_with_row_wise_list_like_item[tuple--item1-col_key4],ValueError: Must have equal len keys and value when setting with an iterable,failed +12037,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_0[index_with_name0-rmod],"ValueError: Unable to coerce to Series, length must be 3: given 2",failed +12039,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[index-include_groups_True-dropna_True-sort_True-group_keys_True-return_scalar],KeyError: 'index',failed +12041,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col5-row7],KeyError: 'mark vi',failed +12045,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_0[index_with_name0-pow],"ValueError: Unable to coerce to Series, length must be 3: given 2",failed +12050,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[index-include_groups_True-dropna_True-sort_True-group_keys_False-non_transform_returns_dataframe],KeyError: 'index',failed +12052,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_0[index_with_name0-rpow],"ValueError: Unable to coerce to Series, length must be 3: given 2",failed +12054,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col5-row8],KeyError: 'mark vi',failed +12057,tests.integ.modin.frame.test_set_index,test_set_index_pass_arrays[False-True-frame_of_ints-Index],"TypeError: The parameter ""keys"" may be a column key, one-dimensional array, or a list containing only valid column keys and one-dimensional arrays. Received column of type ",failed +12058,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_0[list1-add],"ValueError: Unable to coerce to Series, length must be 3: given 4",failed +12060,tests.integ.modin.frame.test_applymap,test_applymap_basic_with_type_hints[applymap-apply_on_frame_with_timedelta_data_columns_returns_int],[XPASS(strict)] ,failed +12061,tests.integ.modin.frame.test_loc,test_df_loc_set_with_row_wise_list_like_item[tuple--item2-col_key0],Failed: DID NOT RAISE ,failed +12062,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[index-include_groups_True-dropna_True-sort_True-group_keys_False-transform_returns_dataframe],KeyError: 'index',failed +12065,tests.integ.modin.frame.test_set_index,test_set_index_pass_arrays[False-True-frame_of_ints-array],"KeyError: ""None of ['a'] are in the columns""",failed +12067,tests.integ.modin.frame.test_applymap,test_applymap_basic_with_type_hints[map-return_timedelta_scalar],[XPASS(strict)] SNOW-1619940,failed +12068,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_0[list1-radd],"ValueError: Unable to coerce to Series, length must be 3: given 4",failed +12070,tests.integ.modin.frame.test_loc,test_df_loc_set_with_row_wise_list_like_item[tuple--item2-col_key1],"AssertionError: Regex pattern did not match. + Regex: 'Must have equal len keys and value when setting with an iterable' + Input: 'could not broadcast input array from shape (4,) into shape (2, 3)'",failed +12072,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col5-row9],KeyError: 'buzz1',failed +12080,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[index-include_groups_True-dropna_True-sort_True-group_keys_False-non_transform_returns_series],KeyError: 'index',failed +12084,tests.integ.modin.frame.test_loc,test_df_loc_set_with_row_wise_list_like_item[tuple--item2-col_key5],ValueError: Must have equal len keys and value when setting with an iterable,failed +12090,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[index-include_groups_True-dropna_True-sort_True-group_keys_False-transform_returns_series],KeyError: 'index',failed +12093,tests.integ.modin.frame.test_applymap,test_applymap_basic_with_type_hints[map-apply_on_frame_with_timedelta_data_columns_returns_int],[XPASS(strict)] ,failed +12095,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_0[list1-sub],"ValueError: Unable to coerce to Series, length must be 3: given 4",failed +12096,tests.integ.modin.frame.test_set_index,test_set_index_pass_arrays[False-True-frame_of_ints-list],"KeyError: ""None of ['a'] are in the columns""",failed +12098,tests.integ.modin.frame.test_to_dynamic_table,test_to_dynamic_table_no_enforce_ordering[method],"NotImplementedError: Modin supports the method DataFrame.to_dynamic_table on the Snowflake backend, but not on the backend Pandas.",failed +12100,tests.integ.modin.frame.test_applymap,test_applymap_date_time_timestamp[data0-str-str-expected_result0],"AssertionError: DataFrame.iloc[:, 0] (column name=""0"") are different -DataFrame shape mismatch -[left]: (0, 8) -[right]: (1, 8)",failed -15405,tests.integ.modin.groupby.test_groupby_negative,test_groupby_numeric_only_func_invalid_non_numeric_column[data1-Array--stddev],ValueError: setting an array element with a sequence.,failed -15406,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[index-include_groups_False-dropna_False-sort_True-group_keys_True-transform_returns_dataframe],KeyError: 'index',failed -15409,tests.integ.modin.groupby.test_groupby_negative,test_groupby_agg_invalid_min_count[min-3.0],TypeError: 'float' object cannot be interpreted as an integer,failed -15410,tests.integ.modin.frame.test_loc,test_df_loc_get_reversed_key_slice_with_unordered_nullable_index[last--1-4-6],"AssertionError: DataFrame are different +DataFrame.iloc[:, 0] (column name=""0"") values are different (100.0 %) +[index]: [0, 1] +[left]: [2023-01-01, None] +[right]: [2023-01-01 00:00:00, NaT] +At positional index 0, first diff: 2023-01-01 != 2023-01-01 00:00:00",failed +12101,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_0[list1-rsub],"ValueError: Unable to coerce to Series, length must be 3: given 4",failed +12103,tests.integ.modin.frame.test_set_index,test_set_index_pass_arrays[False-True-frame_of_ints-],"KeyError: ""None of ['a'] are in the columns""",failed +12104,tests.integ.modin.frame.test_applymap,test_applymap_date_time_timestamp[data1-type-str-expected_result1],"AssertionError: DataFrame.iloc[:, 0] (column name=""0"") are different -DataFrame shape mismatch -[left]: (0, 8) -[right]: (2, 8)",failed -15413,tests.integ.modin.frame.test_create_or_replace_dynamic_table,test_create_or_replace_dynamic_table_index[index_labels1-False],"NotImplementedError: Modin supports the method DataFrame.create_or_replace_dynamic_table on the Snowflake backend, but not on the backend Pandas.",failed -15418,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[index-include_groups_False-dropna_False-sort_True-group_keys_True-non_transform_returns_series],KeyError: 'index',failed -15419,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col12-row9],AssertionError,failed -15423,tests.integ.modin.groupby.test_groupby_negative,test_groupby_agg_invalid_min_count[max-TEST],TypeError: 'str' object cannot be interpreted as an integer,failed -15425,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col12-row10],AssertionError,failed -15426,tests.integ.modin.frame.test_loc,test_df_loc_get_reversed_key_slice_with_unordered_nullable_index[last--1-6-None],KeyError: 7,failed -15431,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col12-row11],AssertionError,failed -15433,tests.integ.modin.frame.test_merge,test_merge_on_index_columns[outer-True-left_i],KeyError: 'left_i',failed -15436,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col12-row12],AssertionError: Got type: ,failed -15439,tests.integ.modin.groupby.test_groupby_negative,test_groupby_agg_invalid_min_count[max-5.8],TypeError: 'float' object cannot be interpreted as an integer,failed -15442,tests.integ.modin.frame.test_loc,test_df_loc_get_reversed_key_slice_with_unordered_nullable_index[last--1-6-1],KeyError: 7,failed -15443,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col12-row13],AssertionError: Got type: ,failed -15448,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col12-row14],AssertionError,failed -15449,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[index-include_groups_False-dropna_False-sort_True-group_keys_True-transform_returns_series],KeyError: 'index',failed -15452,tests.integ.modin.groupby.test_groupby_negative,test_groupby_numeric_only_func_invalid_non_numeric_column[data1-Array--variance],"TypeError: agg function failed [how->var,dtype->object]",failed -15453,tests.integ.modin.frame.test_merge,test_merge_on_index_columns[outer-True-right_i],KeyError: 'right_i',failed -15455,tests.integ.modin.groupby.test_groupby_negative,test_groupby_agg_invalid_min_count[max-3.0],TypeError: 'float' object cannot be interpreted as an integer,failed -15456,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col13-mark i],AssertionError,failed -15461,tests.integ.modin.frame.test_loc,test_df_loc_get_reversed_key_slice_with_unordered_nullable_index[last--1-6-4],KeyError: 7,failed -15462,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col13-row1],AssertionError,failed -15464,tests.integ.modin.frame.test_create_or_replace_dynamic_table,test_create_or_replace_dynamic_table_multiindex,"NotImplementedError: Modin supports the method DataFrame.create_or_replace_dynamic_table on the Snowflake backend, but not on the backend Pandas.",failed -15466,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[index-include_groups_False-dropna_False-sort_True-group_keys_True-return_scalar],KeyError: 'index',failed -15468,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col13-row2],AssertionError: Got type: ,failed -15470,tests.integ.modin.groupby.test_groupby_negative,test_groupby_numeric_only_func_invalid_non_numeric_column[data1-Array--stddev_pop],ValueError: setting an array element with a sequence.,failed -15473,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col13-row3],AssertionError,failed -15476,tests.integ.modin.frame.test_merge,test_merge_on_index_columns[outer-False-left_i],KeyError: 'left_i',failed -15477,tests.integ.modin.frame.test_create_or_replace_view,test_create_or_replace_view_basic,"NotImplementedError: Modin supports the method DataFrame.create_or_replace_view on the Snowflake backend, but not on the backend Pandas.",failed -15478,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[index-include_groups_False-dropna_False-sort_True-group_keys_False-non_transform_returns_dataframe],KeyError: 'index',failed -15485,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col13-row4],"KeyError: ['viper', 'mark i', 'viper']",failed -15488,tests.integ.modin.groupby.test_groupby_negative,test_groupby_agg_invalid_min_count[sum-TEST],TypeError: 'str' object cannot be interpreted as an integer,failed -15490,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[index-include_groups_False-dropna_False-sort_True-group_keys_False-transform_returns_dataframe],KeyError: 'index',failed -15493,tests.integ.modin.groupby.test_groupby_negative,test_groupby_numeric_only_func_invalid_non_numeric_column[data1-Array--var_pop],"TypeError: agg function failed [how->var,dtype->object]",failed -15498,tests.integ.modin.frame.test_loc,test_df_loc_get_reversed_key_slice_with_unordered_nullable_index[last--1-6-6],KeyError: 7,failed -15500,tests.integ.modin.frame.test_merge,test_merge_on_index_columns[outer-False-right_i],KeyError: 'right_i',failed -15503,tests.integ.modin.groupby.test_groupby_negative,test_groupby_agg_invalid_min_count[sum-5.8],TypeError: 'float' object cannot be interpreted as an integer,failed -15507,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[index-include_groups_False-dropna_False-sort_True-group_keys_False-non_transform_returns_series],KeyError: 'index',failed -15509,tests.integ.modin.groupby.test_groupby_negative,test_groupby_numeric_only_func_invalid_non_numeric_column[data2-Object--sum],TypeError: unsupported operand type(s) for +: 'dict' and 'dict',failed -15516,tests.integ.modin.frame.test_merge,test_join_type_mismatch[index20-index11],"AssertionError: DataFrame.index are different +DataFrame.iloc[:, 0] (column name=""0"") values are different (100.0 %) +[index]: [0, 1] +[left]: [, ] +[right]: [, ] +At positional index 0, first diff: != ",failed +12106,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col5-row10],KeyError: 'buzz1',failed +12109,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_0[list1-mul],"ValueError: Unable to coerce to Series, length must be 3: given 4",failed +12110,tests.integ.modin.frame.test_applymap,test_applymap_date_time_timestamp[data2-str-str-expected_result2],"AssertionError: DataFrame.iloc[:, 0] (column name=""0"") are different -DataFrame.index values are different (66.66667 %) -[left]: Index([1.5, 8.0, 7.0], dtype='float64') -[right]: Index([1.5, 7.0, 8.0], dtype='float64') -At positional index 1, first diff: 8.0 != 7.0",failed -15519,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[index-include_groups_False-dropna_False-sort_True-group_keys_False-transform_returns_series],KeyError: 'index',failed -15522,tests.integ.modin.groupby.test_groupby_negative,test_groupby_agg_invalid_min_count[sum-3.0],TypeError: 'float' object cannot be interpreted as an integer,failed -15523,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col13-row5],KeyError: 'mark vi',failed -15530,tests.integ.modin.frame.test_loc,test_df_loc_get_reversed_key_slice_with_unordered_nullable_index[last--2-1-None],KeyError: 3,failed -15532,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[index-include_groups_False-dropna_False-sort_True-group_keys_False-return_scalar],KeyError: 'index',failed -15540,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col13-row6],KeyError: 'mark vi',failed -15543,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[index-include_groups_False-dropna_False-sort_False-group_keys_True-non_transform_returns_dataframe],KeyError: 'index',failed -15546,tests.integ.modin.frame.test_loc,test_df_loc_get_reversed_key_slice_with_unordered_nullable_index[last--2-1-1],KeyError: 3,failed -15547,tests.integ.modin.frame.test_merge,test_join_type_mismatch[index20-index12],pandas.errors.InvalidIndexError: Reindexing only valid with uniquely valued Index objects,failed -15553,tests.integ.modin.frame.test_merge,test_join_type_mismatch[index21-index10],"AssertionError: DataFrame.index are different +DataFrame.iloc[:, 0] (column name=""0"") values are different (100.0 %) +[index]: [0, 1] +[left]: [01:02:03, None] +[right]: [0 days 01:02:03, NaT] +At positional index 0, first diff: 01:02:03 != 0 days 01:02:03",failed +12112,tests.integ.modin.frame.test_set_index,test_set_index_pass_arrays[False-True-frame_of_ints_and_timedelta-Series],"KeyError: ""None of ['a'] are in the columns""",failed +12113,tests.integ.modin.frame.test_applymap,test_applymap_date_time_timestamp[data3-type-str-expected_result3],"AssertionError: DataFrame.iloc[:, 0] (column name=""0"") are different -DataFrame.index values are different (100.0 %) -[left]: Index([3.0, 4.0, 1.5], dtype='float64') -[right]: Index([1.5, 3.0, 4.0], dtype='float64') -At positional index 0, first diff: 3.0 != 1.5",failed -15554,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[index-include_groups_False-dropna_False-sort_False-group_keys_True-transform_returns_dataframe],KeyError: 'index',failed -15557,tests.integ.modin.groupby.test_groupby_negative,test_groupby_numeric_only_func_invalid_non_numeric_column[data2-Object--mean],"TypeError: agg function failed [how->mean,dtype->object]",failed -15560,tests.integ.modin.frame.test_merge,test_join_type_mismatch[index21-index11],"AssertionError: DataFrame.index are different +DataFrame.iloc[:, 0] (column name=""0"") values are different (100.0 %) +[index]: [0, 1] +[left]: [, ] +[right]: [, ] +At positional index 0, first diff: != ",failed +12115,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_0[list1-rmul],"ValueError: Unable to coerce to Series, length must be 3: given 4",failed +12119,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col5-row11],KeyError: 'buzz1',failed +12120,tests.integ.modin.frame.test_applymap,test_applymap_date_time_timestamp[data5-type-str-expected_result5],"AssertionError: DataFrame.iloc[:, 0] (column name=""0"") are different -DataFrame.index values are different (66.66667 %) -[left]: Index([1.5, 8.0, 3.0], dtype='float64') -[right]: Index([1.5, 3.0, 8.0], dtype='float64') -At positional index 1, first diff: 8.0 != 3.0",failed -15561,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col13-row7],KeyError: 'mark vi',failed -15564,tests.integ.modin.frame.test_loc,test_df_loc_get_reversed_key_slice_with_unordered_nullable_index[last--2-1-4],KeyError: 3,failed -15565,tests.integ.modin.groupby.test_groupby_ngroups,test_groupby_sort_multiindex_series[a],TypeError: Categorical input must be list-like,failed -15572,tests.integ.modin.frame.test_merge,test_join_type_mismatch[index21-index12],pandas.errors.InvalidIndexError: Reindexing only valid with uniquely valued Index objects,failed -15575,tests.integ.modin.groupby.test_groupby_ngroups,test_groupby_sort_multiindex_series[b],TypeError: Categorical input must be list-like,failed -15576,tests.integ.modin.groupby.test_groupby_negative,test_groupby_numeric_only_func_invalid_non_numeric_column[data2-Object--median],"TypeError: agg function failed [how->median,dtype->object]",failed -15579,tests.integ.modin.frame.test_loc,test_df_loc_get_reversed_key_slice_with_unordered_nullable_index[last--2-1-6],KeyError: 3,failed -15580,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col13-row8],KeyError: 'mark vi',failed -15587,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col13-row9],AssertionError,failed -15588,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[index-include_groups_False-dropna_False-sort_False-group_keys_True-non_transform_returns_series],KeyError: 'index',failed -15589,tests.integ.modin.frame.test_merge,test_join_type_mismatch[index22-index10],pandas.errors.InvalidIndexError: Reindexing only valid with uniquely valued Index objects,failed -15592,tests.integ.modin.frame.test_loc,test_df_loc_get_reversed_key_slice_with_unordered_nullable_index[last--2-4-1],"AssertionError: DataFrame are different +DataFrame.iloc[:, 0] (column name=""0"") values are different (100.0 %) +[index]: [0, 1] +[left]: [, ] +[right]: [, ] +At positional index 0, first diff: != ",failed +12121,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_0[list1-truediv],"ValueError: Unable to coerce to Series, length must be 3: given 4",failed +12123,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[index-include_groups_True-dropna_True-sort_True-group_keys_False-return_scalar],KeyError: 'index',failed +12125,tests.integ.modin.frame.test_loc,test_df_loc_set_with_row_wise_list_like_item[index--item0-col_key2],ValueError: Must have equal len keys and value when setting with an iterable,failed +12126,tests.integ.modin.frame.test_applymap,test_applymap_date_time_timestamp[data6-str-str-expected_result6],"AssertionError: DataFrame.iloc[:, 0] (column name=""0"") are different -DataFrame shape mismatch -[left]: (1, 8) -[right]: (2, 8)",failed -15595,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col13-row10],AssertionError,failed -15596,tests.integ.modin.groupby.test_groupby_ngroups,test_groupby_ngroups_series_nan,TypeError: Categorical input must be list-like,failed -15598,tests.integ.modin.frame.test_loc,test_df_loc_get_reversed_key_slice_with_unordered_nullable_index[last--2-4-4],"AssertionError: DataFrame are different +DataFrame.iloc[:, 0] (column name=""0"") values are different (33.33333 %) +[index]: [0, 1, 2] +[left]: [2023-01-01 01:02:03+00:00, 2023-01-01 01:02:03, None] +[right]: [2023-01-01 01:02:03+00:00, 2023-01-01 01:02:03-08:00, None] +At positional index 1, first diff: 2023-01-01 01:02:03 != 2023-01-01 01:02:03-08:00",failed +12128,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_0[list1-rtruediv],"ValueError: Unable to coerce to Series, length must be 3: given 4",failed +12130,tests.integ.modin.frame.test_applymap,test_applymap_date_time_timestamp[data7-type-str-expected_result7],"AssertionError: DataFrame.iloc[:, 0] (column name=""0"") are different -DataFrame shape mismatch -[left]: (0, 8) -[right]: (1, 8)",failed -15599,tests.integ.modin.groupby.test_groupby_negative,test_groupby_numeric_only_func_invalid_non_numeric_column[data2-Object--stddev],"TypeError: float() argument must be a string or a real number, not 'dict'",failed -15603,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col13-row11],AssertionError,failed -15604,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[index-include_groups_False-dropna_False-sort_False-group_keys_True-transform_returns_series],KeyError: 'index',failed -15607,tests.integ.modin.frame.test_merge,test_join_type_mismatch[index22-index11],pandas.errors.InvalidIndexError: Reindexing only valid with uniquely valued Index objects,failed -15612,tests.integ.modin.frame.test_merge,test_join_type_mismatch[index22-index12],"AssertionError: DataFrame are different +DataFrame.iloc[:, 0] (column name=""0"") values are different (100.0 %) +[index]: [0, 1] +[left]: [, ] +[right]: [, ] +At positional index 0, first diff: != ",failed +12132,tests.integ.modin.frame.test_iloc,test_df_iloc_get_non_numeric_key_negative[col-key9],Failed: DID NOT RAISE ,failed +12133,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[index-include_groups_True-dropna_True-sort_False-group_keys_True-non_transform_returns_dataframe],KeyError: 'index',failed +12134,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col5-row12],KeyError: 'buzz1',failed +12136,tests.integ.modin.frame.test_applymap,test_frame_with_timedelta_index,[XPASS(strict)] ,failed +12138,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_0[list1-floordiv],"ValueError: Unable to coerce to Series, length must be 3: given 4",failed +12139,tests.integ.modin.frame.test_iloc,test_df_iloc_get_non_numeric_key_negative[col-string],"ValueError: +Location based indexing can only have [integer, integer slice (START point is +INCLUDED, END point is EXCLUDED), listlike of integers, boolean array] types.",failed +12143,tests.integ.modin.frame.test_iloc,test_df_iloc_get_non_numeric_key_negative[col-test],"ValueError: +Location based indexing can only have [integer, integer slice (START point is +INCLUDED, END point is EXCLUDED), listlike of integers, boolean array] types.",failed +12144,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_0[list1-rfloordiv],"ValueError: Unable to coerce to Series, length must be 3: given 4",failed +12147,tests.integ.modin.frame.test_iloc,test_df_iloc_get_non_numeric_key_negative[col-key12],"ValueError: +Location based indexing can only have [integer, integer slice (START point is +INCLUDED, END point is EXCLUDED), listlike of integers, boolean array] types.",failed +12149,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[index-include_groups_True-dropna_True-sort_False-group_keys_True-transform_returns_dataframe],KeyError: 'index',failed +12152,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col5-row13],KeyError: 'buzz1',failed +12153,tests.integ.modin.frame.test_iloc,test_df_iloc_get_non_numeric_key_negative[col-key13],"ValueError: +Location based indexing can only have [integer, integer slice (START point is +INCLUDED, END point is EXCLUDED), listlike of integers, boolean array] types.",failed +12154,tests.integ.modin.frame.test_loc,test_df_loc_set_with_row_wise_list_like_item[index--item0-col_key3],ValueError: Must have equal len keys and value when setting with an iterable,failed +12160,tests.integ.modin.frame.test_iloc,test_df_iloc_get_non_numeric_key_categorical_negative,"AssertionError: Regex pattern did not match. + Regex: '\\.iloc\\ requires\\ numeric\\ indexers,\\ got\\ \\[1,\\ 3,\\ 5\\]\\\nCategories\\ \\(3,\\ int64\\):\\ \\[1,\\ 3,\\ 5\\]' + Input: 'positional indexers are out-of-bounds'",failed +12162,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[index-include_groups_True-dropna_True-sort_False-group_keys_True-non_transform_returns_series],KeyError: 'index',failed +12167,tests.integ.modin.binary.test_binary_op,test_binary_op_between_df_and_list_like_of_different_lengths_axis_0[list1-mod],"ValueError: Unable to coerce to Series, length must be 3: given 4",failed +12169,tests.integ.modin.frame.test_applymap,test_applymap_na_action_ignore[applymap],Failed: DID NOT RAISE ,failed +12171,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[index-include_groups_True-dropna_True-sort_False-group_keys_True-transform_returns_series],KeyError: 'index',failed +12172,tests.integ.modin.frame.test_applymap,test_applymap_na_action_ignore[map],Failed: DID NOT RAISE ,failed +12173,tests.integ.modin.frame.test_loc,test_df_loc_set_with_row_wise_list_like_item[index--item0-col_key4],ValueError: Must have equal len keys and value when setting with an iterable,failed +12175,tests.integ.modin.frame.test_iloc,test_df_iloc_get_key_snowpark_df_input_negative[row],"ValueError: Buffer has wrong number of dimensions (expected 1, got 2)",failed +12178,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col5-row14],KeyError: 'buzz1',failed +12182,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[index-include_groups_True-dropna_True-sort_False-group_keys_True-return_scalar],KeyError: 'index',failed +12190,tests.integ.modin.frame.test_loc,test_df_loc_set_with_row_wise_list_like_item[index--item0-col_key5],ValueError: Must have equal len keys and value when setting with an iterable,failed +12191,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col6-mark i],KeyError: 'buzz1',failed +12194,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[index-include_groups_True-dropna_True-sort_False-group_keys_False-non_transform_returns_dataframe],KeyError: 'index',failed +12197,tests.integ.modin.frame.test_set_index,test_set_index_pass_arrays[False-True-frame_of_ints_and_timedelta-Index],"TypeError: The parameter ""keys"" may be a column key, one-dimensional array, or a list containing only valid column keys and one-dimensional arrays. Received column of type ",failed +12203,tests.integ.modin.frame.test_set_index,test_set_index_pass_arrays[False-True-frame_of_ints_and_timedelta-array],"KeyError: ""None of ['a'] are in the columns""",failed +12204,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[index-include_groups_True-dropna_True-sort_False-group_keys_False-transform_returns_dataframe],KeyError: 'index',failed +12206,tests.integ.modin.frame.test_iloc,test_df_iloc_get_key_snowpark_df_input_negative[col],"ValueError: Buffer has wrong number of dimensions (expected 1, got 2)",failed +12207,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col6-row1],KeyError: 'buzz1',failed +12211,tests.integ.modin.frame.test_set_index,test_set_index_pass_arrays[False-True-frame_of_ints_and_timedelta-list],"KeyError: ""None of ['a'] are in the columns""",failed +12212,tests.integ.modin.frame.test_iloc,test_df_iloc_get_key_snowpark_empty_str_series_input_negative[row],"ValueError: +Location based indexing can only have [integer, integer slice (START point is +INCLUDED, END point is EXCLUDED), listlike of integers, boolean array] types.",failed +12215,tests.integ.modin.frame.test_set_index,test_set_index_pass_arrays[False-True-frame_of_ints_and_timedelta-],"KeyError: ""None of ['a'] are in the columns""",failed +12216,tests.integ.modin.frame.test_iloc,test_df_iloc_get_key_snowpark_empty_str_series_input_negative[col],"ValueError: +Location based indexing can only have [integer, integer slice (START point is +INCLUDED, END point is EXCLUDED), listlike of integers, boolean array] types.",failed +12217,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[index-include_groups_True-dropna_True-sort_False-group_keys_False-non_transform_returns_series],KeyError: 'index',failed +12219,tests.integ.modin.frame.test_loc,test_df_loc_set_with_row_wise_list_like_item[index--item1-col_key1],"AssertionError: Regex pattern did not match. + Regex: 'Must have equal len keys and value when setting with an iterable' + Input: 'could not broadcast input array from shape (2,) into shape (2, 3)'",failed +12220,tests.integ.modin.frame.test_iloc,test_df_iloc_get_key_raises_not_implemented_error_negative[key0],Failed: DID NOT RAISE ,failed +12222,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col6-row2],KeyError: 'buzz1',failed +12224,tests.integ.modin.frame.test_iloc,test_df_iloc_get_key_raises_not_implemented_error_negative[key1],Failed: DID NOT RAISE ,failed +12234,tests.integ.modin.frame.test_loc,test_df_loc_set_with_row_wise_list_like_item[index--item1-col_key2],ValueError: Must have equal len keys and value when setting with an iterable,failed +12237,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[index-include_groups_True-dropna_True-sort_False-group_keys_False-transform_returns_series],KeyError: 'index',failed +12239,tests.integ.modin.frame.test_set_index,test_set_index_pass_arrays[False-False-frame_of_ints-Series],"KeyError: ""None of ['a'] are in the columns""",failed +12243,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col6-row3],KeyError: 'buzz1',failed +12250,tests.integ.modin.frame.test_loc,test_df_loc_set_with_row_wise_list_like_item[index--item1-col_key3],ValueError: Must have equal len keys and value when setting with an iterable,failed +12254,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col6-row4],"KeyError: ['viper', 'mark i', 'viper']",failed +12271,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col6-row5],KeyError: 'mark vi',failed +12274,tests.integ.modin.frame.test_loc,test_df_loc_set_with_row_wise_list_like_item[index--item1-col_key4],ValueError: Must have equal len keys and value when setting with an iterable,failed +12279,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[index-include_groups_True-dropna_True-sort_False-group_keys_False-return_scalar],KeyError: 'index',failed +12290,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col6-row6],KeyError: 'mark vi',failed +12293,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[index-include_groups_True-dropna_False-sort_True-group_keys_True-non_transform_returns_dataframe],KeyError: 'index',failed +12300,tests.integ.modin.frame.test_assign,test_assign_basic_series,"AssertionError: DataFrame.index are different -DataFrame shape mismatch -[left]: (2, 2) -[right]: (4, 2)",failed -15616,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[index-include_groups_False-dropna_False-sort_False-group_keys_True-return_scalar],KeyError: 'index',failed -15618,tests.integ.modin.frame.test_merge,test_join_type_mismatch_negative[index10-index20],Failed: DID NOT RAISE ,failed -15619,tests.integ.modin.groupby.test_groupby_negative,test_groupby_numeric_only_func_invalid_non_numeric_column[data2-Object--variance],"TypeError: agg function failed [how->var,dtype->object]",failed -15623,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col13-row12],AssertionError: Got type: ,failed -15624,tests.integ.modin.frame.test_create_or_replace_view,test_create_or_replace_view_multiple_sessions_enforce_ordering_raises,UnboundLocalError: local variable 'view_name' referenced before assignment,failed -15625,tests.integ.modin.frame.test_merge,test_join_type_mismatch_negative[index11-index21],Failed: DID NOT RAISE ,failed -15628,tests.integ.modin.groupby.test_groupby_ngroups,test_groupby_ngroups_series_nan_all,TypeError: Categorical input must be list-like,failed -15631,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col13-row13],AssertionError: Got type: ,failed -15632,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[index-include_groups_False-dropna_False-sort_False-group_keys_False-non_transform_returns_dataframe],KeyError: 'index',failed -15633,tests.integ.modin.frame.test_merge,test_join_type_mismatch_negative[index12-index22],Failed: DID NOT RAISE ,failed -15637,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col13-row14],AssertionError,failed -15639,tests.integ.modin.frame.test_merge,test_join_type_mismatch_diff_with_native_pandas[index10-index20-expected_res0],"AssertionError: DataFrame are different +Attribute ""names"" are different +[left]: [None] +[right]: ['index']",failed +12308,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[index-include_groups_True-dropna_False-sort_True-group_keys_True-transform_returns_dataframe],KeyError: 'index',failed +12311,tests.integ.modin.frame.test_loc,test_df_loc_set_with_row_wise_list_like_item[index--item2-col_key0],Failed: DID NOT RAISE ,failed +12313,tests.integ.modin.frame.test_assign,test_assign_basic_series_mismatched_index[reversed_index],"AssertionError: DataFrame.index are different -DataFrame shape mismatch -[left]: (4, 2) -[right]: (3, 2)",failed -15640,tests.integ.modin.frame.test_loc,test_df_loc_get_reversed_key_slice_with_unordered_nullable_index[last--2-6-None],KeyError: 8,failed -15643,tests.integ.modin.groupby.test_groupby_ngroups,test_groupby_ngroups_series,TypeError: Categorical input must be list-like,failed -15645,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[index-include_groups_False-dropna_False-sort_False-group_keys_False-transform_returns_dataframe],KeyError: 'index',failed -15647,tests.integ.modin.frame.test_merge,test_join_type_mismatch_diff_with_native_pandas[index11-index21-expected_res1],"AssertionError: DataFrame.index are different +Attribute ""names"" are different +[left]: [None] +[right]: ['index']",failed +12316,tests.integ.modin.frame.test_tz_convert,test_tz_convert_negative[1-None-None-UTC-NotImplementedError],AttributeError: 'RangeIndex' object has no attribute 'tz_convert',failed +12318,tests.integ.modin.frame.test_tz_convert,test_tz_convert_negative[columns-None-None-UTC-NotImplementedError],AttributeError: 'RangeIndex' object has no attribute 'tz_convert',failed +12320,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[index-include_groups_True-dropna_False-sort_True-group_keys_True-non_transform_returns_series],KeyError: 'index',failed +12322,tests.integ.modin.frame.test_assign,test_assign_basic_series_mismatched_index[different_index],"AssertionError: DataFrame.index are different -Attribute ""inferred_type"" are different -[left]: mixed -[right]: string",failed -15652,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_boolean_series_row_key,KeyError: False,failed -15660,tests.integ.modin.frame.test_loc,test_df_loc_get_reversed_key_slice_with_unordered_nullable_index[last--2-6-1],KeyError: 8,failed -15665,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[index-include_groups_False-dropna_False-sort_False-group_keys_False-non_transform_returns_series],KeyError: 'index',failed -15666,tests.integ.modin.groupby.test_groupby_negative,test_groupby_numeric_only_func_invalid_non_numeric_column[data2-Object--stddev_pop],"TypeError: float() argument must be a string or a real number, not 'dict'",failed -15669,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_boolean_series_col_key,KeyError: False,failed -15676,tests.integ.modin.groupby.test_groupby_ngroups,test_groupby_ngroups_nan[by2],ValueError: Grouper for 'c1' not 1-dimensional,failed -15680,tests.integ.modin.frame.test_loc,test_df_loc_get_reversed_key_slice_with_unordered_nullable_index[last--2-6-4],KeyError: 8,failed -15681,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[index-include_groups_False-dropna_False-sort_False-group_keys_False-transform_returns_series],KeyError: 'index',failed -15695,tests.integ.modin.groupby.test_groupby_negative,test_groupby_numeric_only_func_invalid_non_numeric_column[data2-Object--var_pop],"TypeError: agg function failed [how->var,dtype->object]",failed -15697,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[index-include_groups_False-dropna_False-sort_False-group_keys_False-return_scalar],KeyError: 'index',failed -15703,tests.integ.modin.frame.test_create_or_replace_view,test_create_or_replace_view_multiple_sessions_no_enforce_ordering,"NotImplementedError: Modin supports the method DataFrame.create_or_replace_view on the Snowflake backend, but not on the backend Pandas.",failed -15708,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_self[include_groups_True-dropna_True-sort_True-group_keys_True-non_transform_returns_dataframe],AssertionError,failed -15713,tests.integ.modin.frame.test_loc,test_df_loc_get_reversed_key_slice_with_unordered_nullable_index[last--2-6-6],KeyError: 8,failed -15719,tests.integ.modin.groupby.test_groupby_negative,test_groupby_numeric_only_func_invalid_non_numeric_column[data3-Variant--sum],TypeError: unsupported operand type(s) for +: 'int' and 'str',failed -15730,tests.integ.modin.groupby.test_groupby_ngroups,test_groupby_ngroups_multiindex[level6],"assert 2 == 6 - + where 2 = .ngroups - + and 6 = .ngroups",failed -15739,tests.integ.modin.groupby.test_groupby_fillna,test_groupby_fillna_multiindex_ffill_bfill_negative[by_list0-None-method_or_value0],AssertionError: Snowpark pandas Exception 'I' doesn't match pandas Exception 'A',failed -15741,tests.integ.modin.frame.test_loc,test_df_loc_set_series_row_key[row_key0],"AssertionError: DataFrame.iloc[:, 0] (column name=""A"") are different +Attribute ""names"" are different +[left]: [None] +[right]: ['index']",failed +12325,tests.integ.modin.frame.test_tz_convert,test_tz_convert_negative[0-1-None-UTC-NotImplementedError],ValueError: The level 1 is not valid,failed +12327,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col6-row7],KeyError: 'mark vi',failed +12328,tests.integ.modin.frame.test_tz_convert,test_tz_convert_negative[0-None-False-UTC-NotImplementedError],Failed: DID NOT RAISE ,failed +12330,tests.integ.modin.frame.test_set_index,test_set_index_pass_arrays[False-False-frame_of_ints-Index],"TypeError: The parameter ""keys"" may be a column key, one-dimensional array, or a list containing only valid column keys and one-dimensional arrays. Received column of type ",failed +12331,tests.integ.modin.frame.test_tz_convert,test_tz_convert_negative[0-None-None-UTC+09:00-NotImplementedError],Failed: DID NOT RAISE ,failed +12332,tests.integ.modin.frame.test_assign,test_assign_basic_non_pandas_object[2],"AssertionError: DataFrame.index are different -DataFrame.iloc[:, 0] (column name=""A"") values are different (33.33333 %) -[index]: [0, 1, 2] -[left]: [nan, 4.0, 50.0] -[right]: [nan, 4.0, 40.0] -At positional index 2, first diff: 50.0 != 40.0",failed -15743,tests.integ.modin.groupby.test_groupby_fillna,test_groupby_fillna_multiindex_ffill_bfill_negative[by_list0-None-method_or_value1],AssertionError: Snowpark pandas Exception 'I' doesn't match pandas Exception 'A',failed -15745,tests.integ.modin.groupby.test_groupby_fillna,test_groupby_fillna_multiindex_ffill_bfill_negative[by_list0-None-method_or_value2],AssertionError: Snowpark pandas Exception 'I' doesn't match pandas Exception 'A',failed -15747,tests.integ.modin.groupby.test_groupby_fillna,test_groupby_fillna_multiindex_ffill_bfill_negative[by_list0-1-method_or_value0],AssertionError: Snowpark pandas Exception 'I' doesn't match pandas Exception 'A',failed -15750,tests.integ.modin.frame.test_loc,test_df_loc_get_reversed_key_slice_with_unordered_nullable_index[last--9-1-None],KeyError: 10,failed -15751,tests.integ.modin.groupby.test_groupby_fillna,test_groupby_fillna_multiindex_ffill_bfill_negative[by_list0-1-method_or_value1],AssertionError: Snowpark pandas Exception 'I' doesn't match pandas Exception 'A',failed -15753,tests.integ.modin.groupby.test_groupby_fillna,test_groupby_fillna_multiindex_ffill_bfill_negative[by_list0-1-method_or_value2],AssertionError: Snowpark pandas Exception 'I' doesn't match pandas Exception 'A',failed -15756,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_self[include_groups_True-dropna_True-sort_True-group_keys_True-transform_returns_dataframe],TypeError: must pass an index to rename,failed -15759,tests.integ.modin.frame.test_create_or_replace_view,test_create_or_replace_view_index[None-True],"NotImplementedError: Modin supports the method DataFrame.create_or_replace_view on the Snowflake backend, but not on the backend Pandas.",failed -15762,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_self[include_groups_True-dropna_True-sort_True-group_keys_True-non_transform_returns_series],"AssertionError: Series are different +Attribute ""names"" are different +[left]: [None] +[right]: ['index']",failed +12334,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[index-include_groups_True-dropna_False-sort_True-group_keys_True-transform_returns_series],KeyError: 'index',failed +12337,tests.integ.modin.frame.test_set_index,test_set_index_pass_arrays[False-False-frame_of_ints-array],"KeyError: ""None of ['a'] are in the columns""",failed +12339,tests.integ.modin.frame.test_assign,test_assign_basic_non_pandas_object[new_col_value1],"AssertionError: DataFrame.index are different -Series length are different -[left]: 3, Index(['sum', 'mean', 'name'], dtype='object', name='custom_metrics') -[right]: 9, MultiIndex([(0, 'sum'), - (0, 'mean'), - (0, 'name'), - (1, 'sum'), - (1, 'mean'), - (1, 'name'), - (2, 'sum'), - (2, 'mean'), - (2, 'name')], - )",failed -15768,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_self[include_groups_True-dropna_True-sort_True-group_keys_True-transform_returns_series],"AssertionError: MultiIndex level [0] are different +Attribute ""names"" are different +[left]: [None] +[right]: ['index']",failed +12341,tests.integ.modin.frame.test_set_index,test_set_index_pass_arrays[False-False-frame_of_ints-list],"KeyError: ""None of ['a'] are in the columns""",failed +12343,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[index-include_groups_True-dropna_False-sort_True-group_keys_True-return_scalar],KeyError: 'index',failed +12344,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col6-row8],KeyError: 'mark vi',failed +12346,tests.integ.modin.frame.test_assign,test_assign_basic_non_pandas_object[x],"AssertionError: DataFrame.index are different Attribute ""names"" are different -[left]: ['__reduced__'] -[right]: [None]",failed -15772,tests.integ.modin.groupby.test_groupby_negative,test_groupby_numeric_only_func_invalid_non_numeric_column[data3-Variant--mean],"TypeError: agg function failed [how->mean,dtype->object]",failed -15774,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_self[include_groups_True-dropna_True-sort_True-group_keys_True-return_scalar],"AssertionError: Series are different +[left]: [None] +[right]: ['index']",failed +12348,tests.integ.modin.frame.test_set_index,test_set_index_pass_arrays[False-False-frame_of_ints-],"KeyError: ""None of ['a'] are in the columns""",failed +12351,tests.integ.modin.frame.test_loc,test_df_loc_set_with_row_wise_list_like_item[index--item2-col_key1],"AssertionError: Regex pattern did not match. + Regex: 'Must have equal len keys and value when setting with an iterable' + Input: 'could not broadcast input array from shape (4,) into shape (2, 3)'",failed +12353,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[index-include_groups_True-dropna_False-sort_True-group_keys_False-non_transform_returns_dataframe],KeyError: 'index',failed +12356,tests.integ.modin.frame.test_set_index,test_set_index_pass_arrays[False-False-frame_of_ints_and_timedelta-Series],"KeyError: ""None of ['a'] are in the columns""",failed +12357,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col6-row9],KeyError: 'buzz1',failed +12363,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[index-include_groups_True-dropna_False-sort_True-group_keys_False-transform_returns_dataframe],KeyError: 'index',failed +12366,tests.integ.modin.frame.test_assign,test_assign_invalid_long_column_length_negative,ValueError: Length of values (5) does not match length of index (3),failed +12368,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col6-row10],KeyError: 'buzz1',failed +12373,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[index-include_groups_True-dropna_False-sort_True-group_keys_False-non_transform_returns_series],KeyError: 'index',failed +12374,tests.integ.modin.frame.test_assign,test_assign_invalid_short_column_length_negative,ValueError: Length of values (2) does not match length of index (3),failed +12381,tests.integ.modin.frame.test_to_dynamic_table,test_to_dynamic_table_no_enforce_ordering[function],"NotImplementedError: Modin supports the method DataFrame.to_dynamic_table on the Snowflake backend, but not on the backend Pandas.",failed +12382,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[index-include_groups_True-dropna_False-sort_True-group_keys_False-transform_returns_series],KeyError: 'index',failed +12383,tests.integ.modin.frame.test_assign,test_assign_short_series,"AssertionError: DataFrame.index are different -Series values are different (100.0 %) -[index]: [0, 1, 2] -[left]: [__reduced__ 0 +Attribute ""names"" are different +[left]: [None] +[right]: ['index']",failed +12391,tests.integ.modin.frame.test_assign,test_assign_short_series_mismatched_index[reversed_index],"AssertionError: DataFrame.index are different + +Attribute ""names"" are different +[left]: [None] +[right]: ['index']",failed +12398,tests.integ.modin.frame.test_loc,test_df_loc_set_with_row_wise_list_like_item[index--item2-col_key5],ValueError: Must have equal len keys and value when setting with an iterable,failed +12404,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col6-row11],KeyError: 'buzz1',failed +12407,tests.integ.modin.frame.test_assign,test_assign_short_series_mismatched_index[different_index],"AssertionError: DataFrame.index are different + +Attribute ""names"" are different +[left]: [None] +[right]: ['index']",failed +12418,tests.integ.modin.frame.test_assign,test_assign_basic_callable[identity_fn],"AssertionError: DataFrame.index are different + +Attribute ""names"" are different +[left]: [None] +[right]: ['index']",failed +12426,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col6-row12],KeyError: 'buzz1',failed +12431,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[index-include_groups_True-dropna_False-sort_True-group_keys_False-return_scalar],KeyError: 'index',failed +12438,tests.integ.modin.frame.test_assign,test_assign_basic_callable[add_two_cols_fn],"AssertionError: DataFrame.index are different + +Attribute ""names"" are different +[left]: [None] +[right]: ['index']",failed +12445,tests.integ.modin.frame.test_set_index,test_set_index_pass_arrays[False-False-frame_of_ints_and_timedelta-Index],"TypeError: The parameter ""keys"" may be a column key, one-dimensional array, or a list containing only valid column keys and one-dimensional arrays. Received column of type ",failed +12450,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col6-row13],KeyError: 'buzz1',failed +12452,tests.integ.modin.frame.test_assign,test_assign_chained_callable,"AssertionError: DataFrame.index are different + +Attribute ""names"" are different +[left]: [None] +[right]: ['index']",failed +12455,tests.integ.modin.frame.test_set_index,test_set_index_pass_arrays[False-False-frame_of_ints_and_timedelta-array],"KeyError: ""None of ['a'] are in the columns""",failed +12457,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[index-include_groups_True-dropna_False-sort_False-group_keys_True-non_transform_returns_dataframe],KeyError: 'index',failed +12462,tests.integ.modin.frame.test_loc,test_df_loc_set_duplicate_index[duplicate-self_index_val1-index0-x-item0],ValueError: Length of values (2) does not match length of index (4),failed +12464,tests.integ.modin.frame.test_set_index,test_set_index_pass_arrays[False-False-frame_of_ints_and_timedelta-list],"KeyError: ""None of ['a'] are in the columns""",failed +12472,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[index-include_groups_True-dropna_False-sort_False-group_keys_True-transform_returns_dataframe],KeyError: 'index',failed +12474,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col6-row14],KeyError: 'buzz1',failed +12479,tests.integ.modin.frame.test_assign,test_assign_self_columns,"AssertionError: DataFrame.index are different + +Attribute ""names"" are different +[left]: [None] +[right]: ['index']",failed +12481,tests.integ.modin.frame.test_loc,test_df_loc_set_duplicate_index[duplicate-self_index_val1-index1-y-item1],ValueError: Length of values (2) does not match length of index (4),failed +12488,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[index-include_groups_True-dropna_False-sort_False-group_keys_True-non_transform_returns_series],KeyError: 'index',failed +12489,tests.integ.modin.frame.test_assign,test_overwrite_columns_via_assign,"AssertionError: DataFrame.index are different + +Attribute ""names"" are different +[left]: [None] +[right]: ['index']",failed +12495,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col7-mark i],KeyError: 'buzz1',failed +12500,tests.integ.modin.frame.test_assign,test_assign_basic_timedelta_series,"AssertionError: DataFrame.index are different + +Attribute ""names"" are different +[left]: [None] +[right]: ['index']",failed +12502,tests.integ.modin.frame.test_set_index,test_set_index_pass_arrays[False-False-frame_of_ints_and_timedelta-],"KeyError: ""None of ['a'] are in the columns""",failed +12505,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[index-include_groups_True-dropna_False-sort_False-group_keys_True-transform_returns_series],KeyError: 'index',failed +12511,tests.integ.modin.frame.test_tz_localize,test_tz_localize_negative[UTC-1-None-None-raise-raise-NotImplementedError],ValueError: No axis named 1 for object type Series,failed +12514,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[index-include_groups_True-dropna_False-sort_False-group_keys_True-return_scalar],KeyError: 'index',failed +12517,tests.integ.modin.frame.test_tz_localize,test_tz_localize_negative[UTC-columns-None-None-raise-raise-NotImplementedError],ValueError: No axis named 1 for object type Series,failed +12523,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col7-row1],KeyError: 'buzz1',failed +12525,tests.integ.modin.groupby.test_groupby_dataframe_cumulative,test_groupby_cumcount_negative[LEXLUTHOR-0-0-NotImplementedError],Failed: DID NOT RAISE ,failed +12526,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[index-include_groups_True-dropna_False-sort_False-group_keys_False-non_transform_returns_dataframe],KeyError: 'index',failed +12528,tests.integ.modin.groupby.test_groupby_dataframe_cumulative,test_groupby_cumcount_negative[None--1-0-NotImplementedError],Failed: DID NOT RAISE ,failed +12529,tests.integ.modin.frame.test_loc,test_df_loc_set_duplicate_index[duplicate-self_index_val1-index2-x-item2],ValueError: cannot reindex on an axis with duplicate labels,failed +12531,tests.integ.modin.groupby.test_groupby_dataframe_cumulative,test_groupby_cumcount_negative[LEXLUTHOR-0-1-NotImplementedError],Failed: DID NOT RAISE ,failed +12534,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col7-row2],KeyError: 'buzz1',failed +12535,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[index-include_groups_True-dropna_False-sort_False-group_keys_False-transform_returns_dataframe],KeyError: 'index',failed +12538,tests.integ.modin.frame.test_tz_localize,test_tz_localize_negative[UTC-0-1-None-raise-raise-NotImplementedError],ValueError: The level 1 is not valid,failed +12539,tests.integ.modin.frame.test_tz_localize,test_tz_localize_negative[UTC-0-None-False-raise-raise-NotImplementedError],Failed: DID NOT RAISE ,failed +12541,tests.integ.modin.groupby.test_groupby_dataframe_cumulative,test_groupby_cumlative_non_numeric[cumsum-0],"NotImplementedError: function is not implemented for this dtype: [how->cumsum,dtype->object]",failed +12542,tests.integ.modin.frame.test_tz_localize,test_tz_localize_negative[UTC-0-None-True-infer-raise-NotImplementedError],Failed: DID NOT RAISE ,failed +12543,tests.integ.modin.frame.test_tz_localize,test_tz_localize_negative[UTC-0-None-True-NaT-raise-NotImplementedError],Failed: DID NOT RAISE ,failed +12545,tests.integ.modin.frame.test_tz_localize,test_tz_localize_negative[UTC-0-None-True-ambiguous6-raise-NotImplementedError],Failed: DID NOT RAISE ,failed +12546,tests.integ.modin.frame.test_tz_localize,test_tz_localize_negative[UTC-0-None-True-raise-shift_forward-NotImplementedError],Failed: DID NOT RAISE ,failed +12547,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[index-include_groups_True-dropna_False-sort_False-group_keys_False-non_transform_returns_series],KeyError: 'index',failed +12549,tests.integ.modin.frame.test_loc,test_df_loc_set_duplicate_index[duplicate-self_index_val1-index3-y-item3],ValueError: cannot reindex on an axis with duplicate labels,failed +12550,tests.integ.modin.frame.test_tz_localize,test_tz_localize_negative[UTC-0-None-True-raise-shift_backward-NotImplementedError],Failed: DID NOT RAISE ,failed +12551,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col7-row3],KeyError: 'buzz1',failed +12553,tests.integ.modin.frame.test_tz_localize,test_tz_localize_negative[UTC-0-None-True-raise-NaT-NotImplementedError],Failed: DID NOT RAISE ,failed +12554,tests.integ.modin.frame.test_tz_localize,test_tz_localize_negative[UTC-0-None-True-raise-nonexistent10-NotImplementedError],Failed: DID NOT RAISE ,failed +12555,tests.integ.modin.frame.test_astype,test_input_negative,"AssertionError: Regex pattern did not match. + Regex: 'not found in columns' + Input: ""'Only a column name can be used for the key in a dtype mappings argument.'""",failed +12556,tests.integ.modin.frame.test_tz_localize,test_tz_localize_negative[UTC-0-None-True-infer-shift_forward-NotImplementedError],Failed: DID NOT RAISE ,failed +12558,tests.integ.modin.frame.test_tz_localize,test_tz_localize_negative[UTC+09:00-0-None-None-raise-raise-NotImplementedError],Failed: DID NOT RAISE ,failed +12559,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col7-row4],"KeyError: ['viper', 'mark i', 'viper']",failed +12560,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[index-include_groups_True-dropna_False-sort_False-group_keys_False-transform_returns_series],KeyError: 'index',failed +12562,tests.integ.modin.frame.test_loc,test_df_loc_set_duplicate_index[duplicate-self_index_val1-index4-columns4-item4],ValueError: Length of values (2) does not match length of index (4),failed +12564,tests.integ.modin.groupby.test_groupby_dataframe_cumulative,test_groupby_cumlative_non_numeric[cummin-1],"NotImplementedError: function is not implemented for this dtype: [how->cummin,dtype->object]",failed +12566,tests.integ.modin.frame.test_loc,test_df_loc_set_duplicate_index[duplicate-self_index_val1-index5-columns5-item5],ValueError: Length of values (2) does not match length of index (4),failed +12568,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col7-row5],KeyError: 'mark vi',failed +12569,tests.integ.modin.groupby.test_groupby_dataframe_cumulative,test_groupby_cumlative_non_numeric[cummax-1],"NotImplementedError: function is not implemented for this dtype: [how->cummax,dtype->object]",failed +12570,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[index-include_groups_True-dropna_False-sort_False-group_keys_False-return_scalar],KeyError: 'index',failed +12573,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[index-include_groups_False-dropna_True-sort_True-group_keys_True-non_transform_returns_dataframe],KeyError: 'index',failed +12575,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col7-row6],KeyError: 'mark vi',failed +12579,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[index-include_groups_False-dropna_True-sort_True-group_keys_True-transform_returns_dataframe],KeyError: 'index',failed +12580,tests.integ.modin.frame.test_loc,test_df_loc_set_duplicate_index_negative[index0-columns0-item0],ValueError: Length of values (2) does not match length of index (4),failed +12583,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col7-row7],KeyError: 'mark vi',failed +12585,tests.integ.modin.frame.test_unary_op,test_df_unary_all_pos[timedelta64[ns]-abs],TypeError: timedelta64[ns] is not a numeric data type,failed +12589,tests.integ.modin.frame.test_unary_op,test_df_unary_all_pos[timedelta64[ns]-neg],TypeError: timedelta64[ns] is not a numeric data type,failed +12592,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[index-include_groups_False-dropna_True-sort_True-group_keys_True-non_transform_returns_series],KeyError: 'index',failed +12600,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col7-row8],KeyError: 'mark vi',failed +12606,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[index-include_groups_False-dropna_True-sort_True-group_keys_True-transform_returns_series],KeyError: 'index',failed +12614,tests.integ.modin.frame.test_unary_op,test_df_unary_np_none_bool[True-abs],TypeError: object is not a numeric data type,failed +12618,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[index-include_groups_False-dropna_True-sort_True-group_keys_True-return_scalar],KeyError: 'index',failed +12619,tests.integ.modin.frame.test_unary_op,test_df_unary_np_none_bool[True-neg],TypeError: object is not a numeric data type,failed +12623,tests.integ.modin.frame.test_set_index,test_set_index_pass_arrays_duplicate[True-True-frame_of_ints-Index-Index],"TypeError: The parameter ""keys"" may be a column key, one-dimensional array, or a list containing only valid column keys and one-dimensional arrays. Received column of type ",failed +12625,tests.integ.modin.frame.test_unary_op,test_df_unary_np_none_bool[False-abs],TypeError: object is not a numeric data type,failed +12629,tests.integ.modin.frame.test_unary_op,test_df_unary_np_none_bool[False-neg],TypeError: object is not a numeric data type,failed +12632,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[index-include_groups_False-dropna_True-sort_True-group_keys_False-non_transform_returns_dataframe],KeyError: 'index',failed +12635,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col7-row9],KeyError: 'buzz1',failed +12638,tests.integ.modin.frame.test_loc,test_df_loc_set_scalar_indexer_2d_array_negative,Failed: DID NOT RAISE ,failed +12640,tests.integ.modin.frame.test_unary_op,test_df_unary_invalid_in_native_negative[data0-abs],TypeError: object is not a numeric data type,failed +12642,tests.integ.modin.frame.test_loc,test_df_loc_set_item_2d_array_scalar_row_loc_negative,Failed: DID NOT RAISE ,failed +12646,tests.integ.modin.frame.test_unary_op,test_df_unary_invalid_in_native_negative[data0-neg],TypeError: object is not a numeric data type,failed +12647,tests.integ.modin.frame.test_unary_op,test_df_unary_invalid_in_sf_negative[data0-abs],Failed: DID NOT RAISE ,failed +12649,tests.integ.modin.frame.test_unary_op,test_df_unary_invalid_in_sf_negative[data0-neg],Failed: DID NOT RAISE ,failed +12650,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[index-include_groups_False-dropna_True-sort_True-group_keys_False-transform_returns_dataframe],KeyError: 'index',failed +12651,tests.integ.modin.frame.test_loc,test_df_loc_set_item_2d_array_row_length_no_match,"ValueError: could not broadcast input array from shape (3, 4) into shape (2, 4)",failed +12653,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col7-row10],KeyError: 'buzz1',failed +12655,tests.integ.modin.frame.test_unary_op,test_df_unary_invalid_in_sf_negative[data1-abs],Failed: DID NOT RAISE ,failed +12657,tests.integ.modin.frame.test_unary_op,test_df_unary_invalid_in_sf_negative[data1-neg],Failed: DID NOT RAISE ,failed +12659,tests.integ.modin.frame.test_loc,test_df_loc_set_item_2d_array_col_length_no_match,"AssertionError: Regex pattern did not match. + Regex: 'shape mismatch: the number of columns 3 from the item does not match with the number of columns 4 to set' + Input: 'could not broadcast input array from shape (3, 3) into shape (2, 4)'",failed +12660,tests.integ.modin.frame.test_unary_op,test_df_unary_invalid_in_sf_negative[data2-abs],Failed: DID NOT RAISE ,failed +12663,tests.integ.modin.frame.test_unary_op,test_df_unary_invalid_in_sf_negative[data2-neg],Failed: DID NOT RAISE ,failed +12668,tests.integ.modin.frame.test_unary_op,test_ser_unary_invalid_in_both_native_and_sf_negative[invalid_value0-Invalid argument types for function-abs],TypeError: object is not a numeric data type,failed +12669,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[index-include_groups_False-dropna_True-sort_True-group_keys_False-non_transform_returns_series],KeyError: 'index',failed +12670,tests.integ.modin.frame.test_loc,test_df_loc_set_2d_array_with_ffill_na_values_negative,"ValueError: could not broadcast input array from shape (2, 4) into shape (4, 4)",failed +12671,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col7-row11],KeyError: 'buzz1',failed +12679,tests.integ.modin.frame.test_loc,test_df_loc_set_with_empty_key_and_empty_item_negative[item0-key1],Failed: DID NOT RAISE ,failed +12681,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[index-include_groups_False-dropna_True-sort_True-group_keys_False-transform_returns_series],KeyError: 'index',failed +12683,tests.integ.modin.frame.test_loc,test_df_loc_set_with_empty_key_and_empty_item_negative[item0-key2],Failed: DID NOT RAISE ,failed +12685,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col7-row12],KeyError: 'buzz1',failed +12691,tests.integ.modin.frame.test_loc,test_df_loc_set_with_empty_key_and_empty_item_negative[item0-key3],Failed: DID NOT RAISE ,failed +12692,tests.integ.modin.frame.test_unary_op,test_ser_unary_invalid_in_both_native_and_sf_negative[invalid_value0-Invalid argument types for function-neg],TypeError: object is not a numeric data type,failed +12700,tests.integ.modin.frame.test_unary_op,test_ser_unary_invalid_in_both_native_and_sf_negative[invalid_value1-Invalid argument types for function-abs],TypeError: object is not a numeric data type,failed +12701,tests.integ.modin.frame.test_loc,test_df_loc_set_with_empty_key_and_empty_item_negative[item1-key1],Failed: DID NOT RAISE ,failed +12704,tests.integ.modin.frame.test_unary_op,test_ser_unary_invalid_in_both_native_and_sf_negative[invalid_value1-Invalid argument types for function-neg],TypeError: object is not a numeric data type,failed +12706,tests.integ.modin.frame.test_loc,test_df_loc_set_with_empty_key_and_empty_item_negative[item1-key2],Failed: DID NOT RAISE ,failed +12709,tests.integ.modin.frame.test_unary_op,test_ser_unary_invalid_in_both_native_and_sf_negative[invalid_value2-is not recognized-abs],TypeError: object is not a numeric data type,failed +12712,tests.integ.modin.frame.test_loc,test_df_loc_set_with_empty_key_and_empty_item_negative[item1-key3],Failed: DID NOT RAISE ,failed +12715,tests.integ.modin.frame.test_unary_op,test_ser_unary_invalid_in_both_native_and_sf_negative[invalid_value2-is not recognized-neg],TypeError: object is not a numeric data type,failed +12719,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[index-include_groups_False-dropna_True-sort_True-group_keys_False-return_scalar],KeyError: 'index',failed +12722,tests.integ.modin.frame.test_unary_op,test_ser_unary_invalid_in_both_native_and_sf_negative[invalid_value3- Numeric value 'bad_str' is not recognized-abs],TypeError: object is not a numeric data type,failed +12723,tests.integ.modin.frame.test_loc,test_df_loc_set_with_empty_key_and_empty_item_negative[item2-key1],Failed: DID NOT RAISE ,failed +12726,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col7-row13],KeyError: 'buzz1',failed +12729,tests.integ.modin.frame.test_unary_op,test_ser_unary_invalid_in_both_native_and_sf_negative[invalid_value3- Numeric value 'bad_str' is not recognized-neg],TypeError: object is not a numeric data type,failed +12731,tests.integ.modin.frame.test_loc,test_df_loc_set_with_empty_key_and_empty_item_negative[item2-key2],Failed: DID NOT RAISE ,failed +12732,tests.integ.modin.frame.test_to_dynamic_table,test_to_dynamic_table_multiple_sessions_no_enforce_ordering[method],"NotImplementedError: Modin supports the method DataFrame.to_dynamic_table on the Snowflake backend, but not on the backend Pandas.",failed +12734,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[index-include_groups_False-dropna_True-sort_False-group_keys_True-non_transform_returns_dataframe],KeyError: 'index',failed +12739,tests.integ.modin.frame.test_loc,test_df_loc_set_with_empty_key_and_empty_item_negative[item2-key3],Failed: DID NOT RAISE ,failed +12746,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col7-row14],KeyError: 'buzz1',failed +12750,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[index-include_groups_False-dropna_True-sort_False-group_keys_True-transform_returns_dataframe],KeyError: 'index',failed +12757,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col8-mark i],KeyError: 'buzz1',failed +12762,tests.integ.modin.frame.test_loc,test_df_loc_set_with_empty_key_and_empty_item_negative[item3-key1],Failed: DID NOT RAISE ,failed +12764,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[index-include_groups_False-dropna_True-sort_False-group_keys_True-non_transform_returns_series],KeyError: 'index',failed +12771,tests.integ.modin.frame.test_loc,test_df_loc_set_with_empty_key_and_empty_item_negative[item3-key2],Failed: DID NOT RAISE ,failed +12773,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col8-row1],KeyError: 'buzz1',failed +12777,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[index-include_groups_False-dropna_True-sort_False-group_keys_True-transform_returns_series],KeyError: 'index',failed +12781,tests.integ.modin.frame.test_loc,test_df_loc_set_with_empty_key_and_empty_item_negative[item3-key3],Failed: DID NOT RAISE ,failed +12785,tests.integ.modin.frame.test_unstack,test_unstack_input_no_multiindex[timedelta64[ns]-index_names0],[XPASS(strict)] ,failed +12788,tests.integ.modin.frame.test_unstack,test_unstack_input_no_multiindex[timedelta64[ns]-index_names1],[XPASS(strict)] ,failed +12790,tests.integ.modin.frame.test_unstack,test_unstack_input_no_multiindex[timedelta64[ns]-index_names2],[XPASS(strict)] ,failed +12792,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[index-include_groups_False-dropna_True-sort_False-group_keys_True-return_scalar],KeyError: 'index',failed +12793,tests.integ.modin.frame.test_loc,test_series_loc_set_with_empty_key_and_scalar_item[key0],"KeyError: ""None of [[]] are in the [Index([0, 1, 2], dtype='int64')]""",failed +12794,tests.integ.modin.frame.test_unstack,test_unstack_input_no_multiindex[timedelta64[ns]-index_names3],[XPASS(strict)] ,failed +12795,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col8-row2],KeyError: 'buzz1',failed +12802,tests.integ.modin.frame.test_loc,test_series_loc_set_with_empty_key_and_scalar_item[key1],Failed: DID NOT RAISE ,failed +12808,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[index-include_groups_False-dropna_True-sort_False-group_keys_False-non_transform_returns_dataframe],KeyError: 'index',failed +12812,tests.integ.modin.frame.test_unstack,test_unstack_sort_notimplemented,Failed: DID NOT RAISE ,failed +12813,tests.integ.modin.frame.test_loc,test_series_loc_set_with_empty_key_and_scalar_item[key2],Failed: DID NOT RAISE ,failed +12814,tests.integ.modin.frame.test_unstack,test_unstack_non_integer_level_notimplemented,Failed: DID NOT RAISE ,failed +12820,tests.integ.modin.frame.test_loc,test_series_loc_set_with_empty_key_and_scalar_item[key3],Failed: DID NOT RAISE ,failed +12823,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[index-include_groups_False-dropna_True-sort_False-group_keys_False-transform_returns_dataframe],KeyError: 'index',failed +12826,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col8-row3],KeyError: 'buzz1',failed +12828,tests.integ.modin.frame.test_loc,test_df_loc_set_with_empty_key_and_list_like_item[key0],"KeyError: ""None of [[]] are in the [Index([0, 1, 2], dtype='int64')]""",failed +12830,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[index-include_groups_False-dropna_True-sort_False-group_keys_False-non_transform_returns_series],KeyError: 'index',failed +12832,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col8-row4],"KeyError: ['viper', 'mark i', 'viper']",failed +12837,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[index-include_groups_False-dropna_True-sort_False-group_keys_False-transform_returns_series],KeyError: 'index',failed +12840,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col8-row5],KeyError: 'mark vi',failed +12849,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col8-row6],KeyError: 'mark vi',failed +12860,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[index-include_groups_False-dropna_True-sort_False-group_keys_False-return_scalar],KeyError: 'index',failed +12863,tests.integ.modin.frame.test_loc,test_df_setitem_boolean_key[index3-False],ValueError: cannot reindex on an axis with duplicate labels,failed +12877,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[index-include_groups_False-dropna_False-sort_True-group_keys_True-non_transform_returns_dataframe],KeyError: 'index',failed +12893,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col8-row7],KeyError: 'mark vi',failed +12895,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[index-include_groups_False-dropna_False-sort_True-group_keys_True-transform_returns_dataframe],KeyError: 'index',failed +12896,tests.integ.modin.frame.test_loc,test_df_setitem_boolean_key[index1-False],"AssertionError: DataFrame are different + +DataFrame shape mismatch +[left]: (4, 3) +[right]: (5, 3)",failed +12909,tests.integ.modin.frame.test_loc,test_df_setitem_boolean_key[index3-0],ValueError: cannot reindex on an axis with duplicate labels,failed +12914,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[index-include_groups_False-dropna_False-sort_True-group_keys_True-non_transform_returns_series],KeyError: 'index',failed +12915,tests.integ.modin.frame.test_loc,test_df_setitem_boolean_key[index2-0],"AssertionError: DataFrame are different + +DataFrame shape mismatch +[left]: (4, 3) +[right]: (5, 3)",failed +12918,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col8-row8],KeyError: 'mark vi',failed +12921,tests.integ.modin.frame.test_loc,test_df_setitem_boolean_key[index4-True],"AssertionError: DataFrame are different + +DataFrame shape mismatch +[left]: (4, 3) +[right]: (5, 3)",failed +12933,tests.integ.modin.frame.test_set_index,test_set_index_pass_arrays_duplicate[True-True-frame_of_ints_and_timedelta-Index-Index],"TypeError: The parameter ""keys"" may be a column key, one-dimensional array, or a list containing only valid column keys and one-dimensional arrays. Received column of type ",failed +12938,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[index-include_groups_False-dropna_False-sort_True-group_keys_True-transform_returns_series],KeyError: 'index',failed +12941,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col8-row9],KeyError: 'buzz1',failed +12945,tests.integ.modin.frame.test_loc,test_df_setitem_boolean_key[index5-True],ValueError: cannot reindex on an axis with duplicate labels,failed +12954,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[index-include_groups_False-dropna_False-sort_True-group_keys_True-return_scalar],KeyError: 'index',failed +12960,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col8-row10],KeyError: 'buzz1',failed +12966,tests.integ.modin.frame.test_loc,test_df_setitem_boolean_key[index5-1],ValueError: cannot reindex on an axis with duplicate labels,failed +12968,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[index-include_groups_False-dropna_False-sort_True-group_keys_False-non_transform_returns_dataframe],KeyError: 'index',failed +12972,tests.integ.modin.frame.test_loc,test_df_setitem_boolean_key[index6-True],"AssertionError: DataFrame.iloc[:, 0] (column name=""a"") are different + +DataFrame.iloc[:, 0] (column name=""a"") values are different (66.66667 %) +[index]: [2, x, True] +[left]: [99, 1, 0] +[right]: [0, 1, 99]",failed +12978,tests.integ.modin.frame.test_loc,test_df_setitem_boolean_key[index6-False],"AssertionError: DataFrame.iloc[:, 0] (column name=""a"") are different + +DataFrame.iloc[:, 0] (column name=""a"") values are different (33.33333 %) +[index]: [2, x, False] +[left]: [0, 1, 0] +[right]: [0, 1, 99]",failed +12983,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[index-include_groups_False-dropna_False-sort_True-group_keys_False-transform_returns_dataframe],KeyError: 'index',failed +12991,tests.integ.modin.frame.test_loc,test_df_partial_string_indexing[0],AssertionError,failed +12999,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[index-include_groups_False-dropna_False-sort_True-group_keys_False-non_transform_returns_series],KeyError: 'index',failed +13004,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col8-row11],KeyError: 'buzz1',failed +13026,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col8-row12],KeyError: 'buzz1',failed +13041,tests.integ.modin.frame.test_loc,test_df_loc_set_none,"KeyError: array([None], dtype=object)",failed +13051,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col8-row13],KeyError: 'buzz1',failed +13058,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[index-include_groups_False-dropna_False-sort_True-group_keys_False-transform_returns_series],KeyError: 'index',failed +13063,tests.integ.modin.frame.test_loc,test_raise_set_cell_with_list_like_value_error,"ValueError: could not broadcast input array from shape (2,) into shape (1, 1)",failed +13075,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col8-row14],KeyError: 'buzz1',failed +13083,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[index-include_groups_False-dropna_False-sort_True-group_keys_False-return_scalar],KeyError: 'index',failed +13084,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col9-mark i],"AssertionError: DataFrame are different + +DataFrame shape mismatch +[left]: (2, 0) +[right]: (2, 2)",failed +13093,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col9-row1],"AssertionError: DataFrame are different + +DataFrame shape mismatch +[left]: (2, 0) +[right]: (2, 2)",failed +13099,tests.integ.modin.frame.test_value_counts,test_value_counts_dropna[False-test_data0],reason: SNOW-1201658,xfailed +13100,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col9-row2],"AssertionError: Series are different + +Series length are different +[left]: 0, MultiIndex([], names=['fizz', 'buzz']) +[right]: 2, MultiIndex([('fizz1', 'buzz1'), + ('fizz2', 'buzz2')], + names=['fizz', 'buzz'])",failed +13107,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[index-include_groups_False-dropna_False-sort_False-group_keys_True-non_transform_returns_dataframe],KeyError: 'index',failed +13108,tests.integ.modin.frame.test_value_counts,test_non_existing_labels,Failed: DID NOT RAISE ,failed +13119,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[index-include_groups_False-dropna_False-sort_False-group_keys_True-transform_returns_dataframe],KeyError: 'index',failed +13126,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col9-row3],"AssertionError: DataFrame are different + +DataFrame shape mismatch +[left]: (2, 0) +[right]: (2, 2)",failed +13128,tests.integ.modin.frame.test_to_dynamic_table,test_to_dynamic_table_multiple_sessions_no_enforce_ordering[function],"NotImplementedError: Modin supports the method DataFrame.to_dynamic_table on the Snowflake backend, but not on the backend Pandas.",failed +13129,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[index-include_groups_False-dropna_False-sort_False-group_keys_True-non_transform_returns_series],KeyError: 'index',failed +13132,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col9-row4],"KeyError: ['viper', 'mark i', 'viper']",failed +13137,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[index-include_groups_False-dropna_False-sort_False-group_keys_True-transform_returns_series],KeyError: 'index',failed +13139,tests.integ.modin.frame.test_loc,test_df_loc_get_with_timedelta[key2-1-1],ValueError: Could not convert object to NumPy timedelta,failed +13145,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col9-row5],KeyError: 'mark vi',failed +13148,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[index-include_groups_False-dropna_False-sort_False-group_keys_True-return_scalar],KeyError: 'index',failed +13156,tests.integ.modin.groupby.test_groupby_first_last,test_groupby_first_last[first-False-True-col9_int_missing],Failed: DID NOT RAISE ,failed +13158,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[index-include_groups_False-dropna_False-sort_False-group_keys_False-non_transform_returns_dataframe],KeyError: 'index',failed +13159,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col9-row6],KeyError: 'mark vi',failed +13162,tests.integ.modin.groupby.test_groupby_first_last,test_groupby_first_last[first-False-True-col10_mixed_missing],Failed: DID NOT RAISE ,failed +13166,tests.integ.modin.groupby.test_groupby_first_last,test_groupby_first_last[first-False-True-by9],Failed: DID NOT RAISE ,failed +13170,tests.integ.modin.groupby.test_groupby_first_last,test_groupby_first_last[first-False-True-by10],Failed: DID NOT RAISE ,failed +13171,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[index-include_groups_False-dropna_False-sort_False-group_keys_False-transform_returns_dataframe],KeyError: 'index',failed +13173,tests.integ.modin.groupby.test_groupby_first_last,test_groupby_first_last[first-False-False-col1_grp],Failed: DID NOT RAISE ,failed +13176,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col9-row7],KeyError: 'mark vi',failed +13178,tests.integ.modin.groupby.test_groupby_first_last,test_groupby_first_last[first-False-False-col2_int64],Failed: DID NOT RAISE ,failed +13182,tests.integ.modin.groupby.test_groupby_first_last,test_groupby_first_last[first-False-False-col3_int_identical],Failed: DID NOT RAISE ,failed +13183,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[index-include_groups_False-dropna_False-sort_False-group_keys_False-non_transform_returns_series],KeyError: 'index',failed +13188,tests.integ.modin.groupby.test_groupby_first_last,test_groupby_first_last[first-False-False-col4_int32],Failed: DID NOT RAISE ,failed +13192,tests.integ.modin.groupby.test_groupby_first_last,test_groupby_first_last[first-False-False-col6_mixed],Failed: DID NOT RAISE ,failed +13194,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[index-include_groups_False-dropna_False-sort_False-group_keys_False-transform_returns_series],KeyError: 'index',failed +13195,tests.integ.modin.groupby.test_groupby_first_last,test_groupby_first_last[first-False-False-col7_bool],Failed: DID NOT RAISE ,failed +13199,tests.integ.modin.groupby.test_groupby_first_last,test_groupby_first_last[first-False-False-col8_bool_missing],Failed: DID NOT RAISE ,failed +13204,tests.integ.modin.groupby.test_groupby_first_last,test_groupby_first_last[first-False-False-col9_int_missing],Failed: DID NOT RAISE ,failed +13208,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col9-row8],KeyError: 'mark vi',failed +13209,tests.integ.modin.groupby.test_groupby_first_last,test_groupby_first_last[first-False-False-col10_mixed_missing],Failed: DID NOT RAISE ,failed +13213,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col9-row9],"AssertionError: DataFrame are different + +DataFrame shape mismatch +[left]: (0, 0) +[right]: (6, 2)",failed +13215,tests.integ.modin.groupby.test_groupby_first_last,test_groupby_first_last[first-False-False-by9],Failed: DID NOT RAISE ,failed +13218,tests.integ.modin.groupby.test_groupby_first_last,test_groupby_first_last[first-False-False-by10],Failed: DID NOT RAISE ,failed +13219,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col9-row10],"AssertionError: DataFrame are different + +DataFrame shape mismatch +[left]: (2, 0) +[right]: (2, 2)",failed +13222,tests.integ.modin.groupby.test_groupby_first_last,test_groupby_first_last[last-True-True-col1_grp],Failed: DID NOT RAISE ,failed +13224,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col9-row11],"AssertionError: DataFrame are different + +DataFrame shape mismatch +[left]: (6, 0) +[right]: (6, 2)",failed +13226,tests.integ.modin.groupby.test_groupby_first_last,test_groupby_first_last[last-True-True-col2_int64],Failed: DID NOT RAISE ,failed +13228,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col9-row12],AssertionError,failed +13231,tests.integ.modin.groupby.test_groupby_first_last,test_groupby_first_last[last-True-True-col3_int_identical],Failed: DID NOT RAISE ,failed +13232,tests.integ.modin.groupby.test_groupby_apply,test_dataframe_groupby_getitem[index-include_groups_False-dropna_False-sort_False-group_keys_False-return_scalar],KeyError: 'index',failed +13234,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col9-row13],AssertionError,failed +13237,tests.integ.modin.groupby.test_groupby_first_last,test_groupby_first_last[last-True-True-col4_int32],Failed: DID NOT RAISE ,failed +13238,tests.integ.modin.frame.test_loc,test_df_loc_get_with_timedelta_behavior_difference[key0-expected_result0],KeyError: Timedelta('4 days 23:59:59.999999999'),failed +13239,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col9-row14],"AssertionError: DataFrame are different + +DataFrame shape mismatch +[left]: (6, 0) +[right]: (6, 2)",failed +13241,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_self[include_groups_True-dropna_True-sort_True-group_keys_True-non_transform_returns_dataframe],AssertionError,failed +13243,tests.integ.modin.groupby.test_groupby_first_last,test_groupby_first_last[last-True-True-col6_mixed],Failed: DID NOT RAISE ,failed +13245,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col10-mark i],AssertionError,failed +13247,tests.integ.modin.groupby.test_groupby_first_last,test_groupby_first_last[last-True-True-col7_bool],Failed: DID NOT RAISE ,failed +13250,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col10-row1],AssertionError,failed +13252,tests.integ.modin.groupby.test_groupby_first_last,test_groupby_first_last[last-True-True-col8_bool_missing],Failed: DID NOT RAISE ,failed +13254,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col10-row2],AssertionError: Got type: ,failed +13257,tests.integ.modin.frame.test_to_dynamic_table,test_to_dynamic_table_index[method-True-None-expected_index_columns0],"NotImplementedError: Modin supports the method DataFrame.to_dynamic_table on the Snowflake backend, but not on the backend Pandas.",failed +13258,tests.integ.modin.groupby.test_groupby_first_last,test_groupby_first_last[last-True-True-col9_int_missing],Failed: DID NOT RAISE ,failed +13261,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col10-row3],AssertionError,failed +13262,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_self[include_groups_True-dropna_True-sort_True-group_keys_True-transform_returns_dataframe],TypeError: must pass an index to rename,failed +13265,tests.integ.modin.groupby.test_groupby_first_last,test_groupby_first_last[last-True-True-col10_mixed_missing],Failed: DID NOT RAISE ,failed +13268,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_self[include_groups_True-dropna_True-sort_True-group_keys_True-non_transform_returns_series],"AssertionError: Series are different + +Series length are different +[left]: 3, Index(['sum', 'mean', 'name'], dtype='object', name='custom_metrics') +[right]: 9, MultiIndex([(0, 'sum'), + (0, 'mean'), + (0, 'name'), + (1, 'sum'), + (1, 'mean'), + (1, 'name'), + (2, 'sum'), + (2, 'mean'), + (2, 'name')], + )",failed +13270,tests.integ.modin.groupby.test_groupby_first_last,test_groupby_first_last[last-True-True-by9],Failed: DID NOT RAISE ,failed +13272,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col10-row4],"KeyError: ['viper', 'mark i', 'viper']",failed +13274,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_self[include_groups_True-dropna_True-sort_True-group_keys_True-transform_returns_series],"AssertionError: MultiIndex level [0] are different + +Attribute ""names"" are different +[left]: ['__reduced__'] +[right]: [None]",failed +13275,tests.integ.modin.frame.test_set_index,test_set_index_pass_arrays_duplicate[True-False-frame_of_ints-Index-Index],"TypeError: The parameter ""keys"" may be a column key, one-dimensional array, or a list containing only valid column keys and one-dimensional arrays. Received column of type ",failed +13278,tests.integ.modin.groupby.test_groupby_first_last,test_groupby_first_last[last-True-True-by10],Failed: DID NOT RAISE ,failed +13279,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_self[include_groups_True-dropna_True-sort_True-group_keys_True-return_scalar],"AssertionError: Series are different + +Series values are different (100.0 %) +[index]: [0, 1, 2] +[left]: [__reduced__ 0 dtype: int64___reduced__ 0.0 dtype: float64_0, __reduced__ 1 dtype: int64___reduced__ 1.0 @@ -9098,26 +7739,25 @@ dtype: float64_2] At positional index 0, first diff: __reduced__ 0 dtype: int64___reduced__ 0.0 dtype: float64_0 != 0_0.0_0",failed -15777,tests.integ.modin.groupby.test_groupby_nunique,test_groupby_nunique[False-df1-id],"AssertionError: DataFrame.iloc[:, 1] (column name=""value2"") are different - -DataFrame.iloc[:, 1] (column name=""value2"") values are different (33.33333 %) -[index]: [egg, ham, spam] -[left]: [2, 1, 2] -[right]: [2, 2, 2]",failed -15780,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_self[include_groups_True-dropna_True-sort_True-group_keys_False-non_transform_returns_dataframe],AssertionError,failed -15793,tests.integ.modin.frame.test_loc,test_df_loc_set_series_row_key[row_key2],IndexError: index 3 is out of bounds for axis 0 with size 3,failed -15794,tests.integ.modin.frame.test_loc,test_df_loc_get_reversed_key_slice_with_unordered_nullable_index[last--9-1-1],KeyError: 10,failed -15798,tests.integ.modin.groupby.test_groupby_negative,test_groupby_numeric_only_func_invalid_non_numeric_column[data3-Variant--median],"TypeError: agg function failed [how->median,dtype->object]",failed -15801,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_self[include_groups_True-dropna_True-sort_True-group_keys_False-transform_returns_dataframe],TypeError: must pass an index to rename,failed -15806,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_self[include_groups_True-dropna_True-sort_True-group_keys_False-non_transform_returns_series],"AssertionError: Series are different +13280,tests.integ.modin.frame.test_loc,test_df_loc_get_with_timedelta_behavior_difference[key1-expected_result1],KeyError: Timedelta('4 days 23:59:59.999999999'),failed +13283,tests.integ.modin.groupby.test_groupby_first_last,test_groupby_first_last[last-True-False-col1_grp],Failed: DID NOT RAISE ,failed +13284,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_self[include_groups_True-dropna_True-sort_True-group_keys_False-non_transform_returns_dataframe],AssertionError,failed +13288,tests.integ.modin.groupby.test_groupby_first_last,test_groupby_first_last[last-True-False-col2_int64],Failed: DID NOT RAISE ,failed +13292,tests.integ.modin.groupby.test_groupby_first_last,test_groupby_first_last[last-True-False-col3_int_identical],Failed: DID NOT RAISE ,failed +13297,tests.integ.modin.groupby.test_groupby_first_last,test_groupby_first_last[last-True-False-col4_int32],Failed: DID NOT RAISE ,failed +13300,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_self[include_groups_True-dropna_True-sort_True-group_keys_False-transform_returns_dataframe],TypeError: must pass an index to rename,failed +13303,tests.integ.modin.groupby.test_groupby_first_last,test_groupby_first_last[last-True-False-col6_mixed],Failed: DID NOT RAISE ,failed +13306,tests.integ.modin.frame.test_loc,test_df_loc_get_with_timedelta_behavior_difference[key2-expected_result2],KeyError: Timedelta('2 days 23:59:59.999999999'),failed +13307,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_self[include_groups_True-dropna_True-sort_True-group_keys_False-non_transform_returns_series],"AssertionError: Series are different Series length are different [left]: 3, Index(['sum', 'mean', 'name'], dtype='object', name='custom_metrics') [right]: 9, Index(['sum', 'mean', 'name', 'sum', 'mean', 'name', 'sum', 'mean', 'name'], dtype='object')",failed -15807,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_self[include_groups_True-dropna_True-sort_True-group_keys_False-transform_returns_series],[XPASS(strict)] SNOW-1238546,failed -15812,tests.integ.modin.frame.test_loc,test_df_loc_get_reversed_key_slice_with_unordered_nullable_index[last--9-1-4],KeyError: 10,failed -15813,tests.integ.modin.frame.test_loc,test_df_loc_set_series_row_key[row_key3],ValueError: Incompatible indexer with DataFrame,failed -15814,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_self[include_groups_True-dropna_True-sort_True-group_keys_False-return_scalar],"AssertionError: Series are different +13309,tests.integ.modin.groupby.test_groupby_first_last,test_groupby_first_last[last-True-False-col7_bool],Failed: DID NOT RAISE ,failed +13311,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_self[include_groups_True-dropna_True-sort_True-group_keys_False-transform_returns_series],[XPASS(strict)] SNOW-1238546,failed +13314,tests.integ.modin.groupby.test_groupby_first_last,test_groupby_first_last[last-True-False-col8_bool_missing],Failed: DID NOT RAISE ,failed +13315,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col10-row5],KeyError: 'mark vi',failed +13316,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_self[include_groups_True-dropna_True-sort_True-group_keys_False-return_scalar],"AssertionError: Series are different Series values are different (100.0 %) [index]: [0, 1, 2] @@ -9132,23 +7772,28 @@ dtype: float64_2] At positional index 0, first diff: __reduced__ 0 dtype: int64___reduced__ 0.0 dtype: float64_0 != 0_0.0_0",failed -15815,tests.integ.modin.groupby.test_groupby_negative,test_groupby_numeric_only_func_invalid_non_numeric_column[data3-Variant--stddev],ValueError: could not convert string to float: 'A',failed -15820,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_self[include_groups_True-dropna_True-sort_False-group_keys_True-non_transform_returns_dataframe],AssertionError,failed -15824,tests.integ.modin.frame.test_loc,test_df_loc_set_series_row_key[row_key4],"AssertionError: DataFrame.iloc[:, 0] (column name=""A"") are different - -DataFrame.iloc[:, 0] (column name=""A"") values are different (66.66667 %) -[index]: [0, 1, 2] -[left]: [nan, 80.0, 50.0] -[right]: [nan, 70.0, 40.0] -At positional index 1, first diff: 80.0 != 70.0",failed -15825,tests.integ.modin.groupby.test_groupby_fillna,test_groupby_fillna_value_not_type_compatible_negative,Failed: DID NOT RAISE ,failed -15826,tests.integ.modin.frame.test_create_or_replace_view,test_create_or_replace_view_index[None-False],"NotImplementedError: Modin supports the method DataFrame.create_or_replace_view on the Snowflake backend, but not on the backend Pandas.",failed -15828,tests.integ.modin.frame.test_loc,test_df_loc_get_reversed_key_slice_with_unordered_nullable_index[last--9-1-6],KeyError: 10,failed -15834,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_self[include_groups_True-dropna_True-sort_False-group_keys_True-transform_returns_dataframe],TypeError: must pass an index to rename,failed -15835,tests.integ.modin.groupby.test_groupby_property,test_pandas_groupby_groups_workaround[pandas_issue_55919],TypeError: assert_array_equal() got an unexpected keyword argument 'strict',failed -15837,tests.integ.modin.groupby.test_groupby_negative,test_groupby_numeric_only_func_invalid_non_numeric_column[data3-Variant--variance],"TypeError: agg function failed [how->var,dtype->object]",failed -15840,tests.integ.modin.groupby.test_groupby_property,test_pandas_groupby_groups_workaround[pandas_issue_56851],TypeError: assert_array_equal() got an unexpected keyword argument 'strict',failed -15841,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_self[include_groups_True-dropna_True-sort_False-group_keys_True-non_transform_returns_series],"AssertionError: Series are different +13321,tests.integ.modin.groupby.test_groupby_first_last,test_groupby_first_last[last-True-False-col9_int_missing],Failed: DID NOT RAISE ,failed +13322,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_self[include_groups_True-dropna_True-sort_False-group_keys_True-non_transform_returns_dataframe],AssertionError,failed +13326,tests.integ.modin.groupby.test_groupby_first_last,test_groupby_first_last[last-True-False-col10_mixed_missing],Failed: DID NOT RAISE ,failed +13330,tests.integ.modin.groupby.test_groupby_first_last,test_groupby_first_last[last-True-False-by9],Failed: DID NOT RAISE ,failed +13335,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col10-row6],KeyError: 'mark vi',failed +13336,tests.integ.modin.groupby.test_groupby_first_last,test_groupby_first_last[last-True-False-by10],Failed: DID NOT RAISE ,failed +13342,tests.integ.modin.groupby.test_groupby_first_last,test_groupby_first_last[last-False-True-col1_grp],Failed: DID NOT RAISE ,failed +13343,tests.integ.modin.frame.test_where,test_dataframe_where_not_implemented,Failed: DID NOT RAISE ,failed +13346,tests.integ.modin.frame.test_astype,test_astype_from_timestamp_ltz[uint64],"TypeError: Converting from datetime64[ns, America/Los_Angeles] to uint64 is not supported. Do obj.astype('int64').astype(dtype) instead",failed +13348,tests.integ.modin.groupby.test_groupby_first_last,test_groupby_first_last[last-False-True-col2_int64],Failed: DID NOT RAISE ,failed +13354,tests.integ.modin.groupby.test_groupby_first_last,test_groupby_first_last[last-False-True-col3_int_identical],Failed: DID NOT RAISE ,failed +13357,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col10-row7],KeyError: 'mark vi',failed +13359,tests.integ.modin.groupby.test_groupby_first_last,test_groupby_first_last[last-False-True-col4_int32],Failed: DID NOT RAISE ,failed +13361,tests.integ.modin.frame.test_where,test_dataframe_where_other_is_array,"ValueError: Data must be 1-dimensional, got ndarray of shape (2, 2) instead",failed +13364,tests.integ.modin.frame.test_where,test_dataframe_where_other_is_array_wrong_size_negative,AssertionError: Snowpark pandas Exception Length of values (2) does not match length of index (3) doesn't match pandas Exception other must be the same shape as self when an ndarray,failed +13365,tests.integ.modin.groupby.test_groupby_first_last,test_groupby_first_last[last-False-True-col6_mixed],Failed: DID NOT RAISE ,failed +13371,tests.integ.modin.frame.test_loc,test_df_loc_get_with_timedelta_behavior_difference[key3-expected_result3],KeyError: Timedelta('2 days 02:00:00'),failed +13372,tests.integ.modin.groupby.test_groupby_first_last,test_groupby_first_last[last-False-True-col7_bool],Failed: DID NOT RAISE ,failed +13373,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_self[include_groups_True-dropna_True-sort_False-group_keys_True-transform_returns_dataframe],TypeError: must pass an index to rename,failed +13378,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col10-row8],KeyError: 'mark vi',failed +13380,tests.integ.modin.groupby.test_groupby_first_last,test_groupby_first_last[last-False-True-col8_bool_missing],Failed: DID NOT RAISE ,failed +13382,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_self[include_groups_True-dropna_True-sort_False-group_keys_True-non_transform_returns_series],"AssertionError: Series are different Series length are different [left]: 3, Index(['sum', 'mean', 'name'], dtype='object', name='custom_metrics') @@ -9162,22 +7807,13 @@ Series length are different (2, 'mean'), (2, 'name')], )",failed -15843,tests.integ.modin.groupby.test_groupby_property,test_pandas_groupby_groups_workaround[pandas_issue_56966],TypeError: assert_array_equal() got an unexpected keyword argument 'strict',failed -15844,tests.integ.modin.frame.test_loc,test_df_loc_get_reversed_key_slice_with_unordered_nullable_index[last--9-4-None],KeyError: 13,failed -15845,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_self[include_groups_True-dropna_True-sort_False-group_keys_True-transform_returns_series],"AssertionError: MultiIndex level [0] are different +13385,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_self[include_groups_True-dropna_True-sort_False-group_keys_True-transform_returns_series],"AssertionError: MultiIndex level [0] are different Attribute ""names"" are different [left]: ['__reduced__'] [right]: [None]",failed -15847,tests.integ.modin.frame.test_loc,test_df_loc_set_series_row_key[row_key6],"AssertionError: DataFrame.iloc[:, 0] (column name=""A"") are different - -DataFrame.iloc[:, 0] (column name=""A"") values are different (66.66667 %) -[index]: [0, 1, 2] -[left]: [nan, 80.0, 50.0] -[right]: [nan, 70.0, 40.0] -At positional index 1, first diff: 80.0 != 70.0",failed -15850,tests.integ.modin.groupby.test_groupby_property,test_pandas_groupby_indices_workaround_pandas_issue_56851,TypeError: assert_array_equal() got an unexpected keyword argument 'strict',failed -15851,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_self[include_groups_True-dropna_True-sort_False-group_keys_True-return_scalar],"AssertionError: Series are different +13386,tests.integ.modin.groupby.test_groupby_first_last,test_groupby_first_last[last-False-True-col9_int_missing],Failed: DID NOT RAISE ,failed +13387,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_self[include_groups_True-dropna_True-sort_False-group_keys_True-return_scalar],"AssertionError: Series are different Series values are different (100.0 %) [index]: [0, 1, 2] @@ -9192,28 +7828,29 @@ dtype: float64_2] At positional index 0, first diff: __reduced__ 0 dtype: int64___reduced__ 0.0 dtype: float64_0 != 0_0.0_0",failed -15856,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_self[include_groups_True-dropna_True-sort_False-group_keys_False-non_transform_returns_dataframe],AssertionError,failed -15862,tests.integ.modin.frame.test_loc,test_df_loc_get_reversed_key_slice_with_unordered_nullable_index[last--9-4-1],KeyError: 13,failed -15864,tests.integ.modin.groupby.test_groupby_fillna,test_groupby_fillna_downcast_not_supported_negative,TypeError: {'A': 'str'},failed -15869,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_True-dropna_True-basic_snowpark_pandas_df-None-col1-None-indices],"AssertionError: Actual type is not the same as expected type , and instead is type . Actual value is {0: [3, 5], 1: [1, 2], 2: [0, 4]}",failed -15872,tests.integ.modin.frame.test_create_or_replace_view,test_create_or_replace_view_index[index_labels1-True],"NotImplementedError: Modin supports the method DataFrame.create_or_replace_view on the Snowflake backend, but not on the backend Pandas.",failed -15873,tests.integ.modin.groupby.test_groupby_fillna,test_groupby_fillna_other_not_supported_negative,KeyError: 'I',failed -15874,tests.integ.modin.frame.test_loc,test_df_loc_set_boolean_row_indexer[item1-col_key2-row_key0],ValueError: Must have equal len keys and value when setting with an iterable,failed -15878,tests.integ.modin.groupby.test_groupby_negative,test_groupby_numeric_only_func_invalid_non_numeric_column[data3-Variant--stddev_pop],ValueError: could not convert string to float: 'A',failed -15881,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_True-dropna_True-basic_snowpark_pandas_df-None-by1-None-groups],KeyError: 'col1',failed -15883,tests.integ.modin.frame.test_loc,test_df_loc_set_boolean_row_indexer[item1-X-row_key0],IndexError: index 2 is out of bounds for axis 0 with size 2,failed -15889,tests.integ.modin.frame.test_loc,test_df_loc_set_boolean_row_indexer[item1-col_key4-row_key0],ValueError: Must have equal len keys and value when setting with an iterable,failed -15892,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_self[include_groups_True-dropna_True-sort_False-group_keys_False-transform_returns_dataframe],TypeError: must pass an index to rename,failed -15895,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_True-dropna_True-basic_snowpark_pandas_df-None-by1-None-indices],KeyError: 'col1',failed -15897,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_self[include_groups_True-dropna_True-sort_False-group_keys_False-non_transform_returns_series],"AssertionError: Series are different +13388,tests.integ.modin.groupby.test_groupby_first_last,test_groupby_first_last[last-False-True-col10_mixed_missing],Failed: DID NOT RAISE ,failed +13391,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_self[include_groups_True-dropna_True-sort_False-group_keys_False-non_transform_returns_dataframe],AssertionError,failed +13392,tests.integ.modin.groupby.test_groupby_first_last,test_groupby_first_last[last-False-True-by9],Failed: DID NOT RAISE ,failed +13395,tests.integ.modin.groupby.test_groupby_first_last,test_groupby_first_last[last-False-True-by10],Failed: DID NOT RAISE ,failed +13398,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col10-row9],AssertionError,failed +13401,tests.integ.modin.groupby.test_groupby_first_last,test_groupby_first_last[last-False-False-col1_grp],Failed: DID NOT RAISE ,failed +13403,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col10-row10],AssertionError,failed +13408,tests.integ.modin.groupby.test_groupby_first_last,test_groupby_first_last[last-False-False-col2_int64],Failed: DID NOT RAISE ,failed +13409,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col10-row11],AssertionError,failed +13412,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_self[include_groups_True-dropna_True-sort_False-group_keys_False-transform_returns_dataframe],TypeError: must pass an index to rename,failed +13413,tests.integ.modin.groupby.test_groupby_first_last,test_groupby_first_last[last-False-False-col3_int_identical],Failed: DID NOT RAISE ,failed +13414,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col10-row12],AssertionError: Got type: ,failed +13416,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_self[include_groups_True-dropna_True-sort_False-group_keys_False-non_transform_returns_series],"AssertionError: Series are different Series length are different [left]: 3, Index(['sum', 'mean', 'name'], dtype='object', name='custom_metrics') [right]: 9, Index(['sum', 'mean', 'name', 'sum', 'mean', 'name', 'sum', 'mean', 'name'], dtype='object')",failed -15898,tests.integ.modin.frame.test_loc,test_df_loc_set_boolean_row_indexer[item1-col_key5-row_key0],ValueError: Must have equal len keys and value when setting with an iterable,failed -15901,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_self[include_groups_True-dropna_True-sort_False-group_keys_False-transform_returns_series],[XPASS(strict)] SNOW-1238546,failed -15905,tests.integ.modin.groupby.test_groupby_negative,test_groupby_numeric_only_func_invalid_non_numeric_column[data3-Variant--var_pop],"TypeError: agg function failed [how->var,dtype->object]",failed -15907,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_self[include_groups_True-dropna_True-sort_False-group_keys_False-return_scalar],"AssertionError: Series are different +13418,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col10-row13],AssertionError: Got type: ,failed +13419,tests.integ.modin.groupby.test_groupby_first_last,test_groupby_first_last[last-False-False-col4_int32],Failed: DID NOT RAISE ,failed +13421,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_self[include_groups_True-dropna_True-sort_False-group_keys_False-transform_returns_series],[XPASS(strict)] SNOW-1238546,failed +13426,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col10-row14],AssertionError,failed +13428,tests.integ.modin.groupby.test_groupby_first_last,test_groupby_first_last[last-False-False-col6_mixed],Failed: DID NOT RAISE ,failed +13429,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_self[include_groups_True-dropna_True-sort_False-group_keys_False-return_scalar],"AssertionError: Series are different Series values are different (100.0 %) [index]: [0, 1, 2] @@ -9228,25 +7865,37 @@ dtype: float64_2] At positional index 0, first diff: __reduced__ 0 dtype: int64___reduced__ 0.0 dtype: float64_0 != 0_0.0_0",failed -15909,tests.integ.modin.frame.test_loc,test_df_loc_get_reversed_key_slice_with_unordered_nullable_index[last--9-4-4],KeyError: 13,failed -15910,tests.integ.modin.frame.test_loc,test_df_loc_set_list_like_row_key[list-row_key0],"AssertionError: DataFrame.iloc[:, 0] (column name=""A"") are different +13433,tests.integ.modin.groupby.test_groupby_first_last,test_groupby_first_last[last-False-False-col7_bool],Failed: DID NOT RAISE ,failed +13434,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col11-mark i],"AssertionError: DataFrame.index are different -DataFrame.iloc[:, 0] (column name=""A"") values are different (33.33333 %) -[index]: [0, 1, 2] -[left]: [nan, 4.0, 50.0] -[right]: [nan, 4.0, 40.0] -At positional index 2, first diff: 50.0 != 40.0",failed -15912,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_self[include_groups_True-dropna_False-sort_True-group_keys_True-non_transform_returns_dataframe],AssertionError,failed -15915,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_True-dropna_True-basic_snowpark_pandas_df-col3-col1-None-indices],"AssertionError: Actual type is not the same as expected type , and instead is type . Actual value is {0: [3, 5], 1: [1, 2], 2: [0, 4]}",failed -15916,tests.integ.modin.frame.test_loc,test_df_loc_set_list_like_row_key[list-row_key1],"KeyError: ""None of [[False, False, False]] are in the [Index([0, 1, 2], dtype='int64')]""",failed -15920,tests.integ.modin.frame.test_loc,test_df_loc_get_reversed_key_slice_with_unordered_nullable_index[last--9-4-6],KeyError: 13,failed -15922,tests.integ.modin.frame.test_loc,test_df_loc_set_list_like_row_key[list-row_key2],ValueError: Item wrong length 6 instead of 3!,failed -15923,tests.integ.modin.frame.test_create_or_replace_view,test_create_or_replace_view_index[index_labels1-False],"NotImplementedError: Modin supports the method DataFrame.create_or_replace_view on the Snowflake backend, but not on the backend Pandas.",failed -15924,tests.integ.modin.groupby.test_groupby_negative,test_groupby_min_max_invalid_non_numeric_column[data0-Object--min],"TypeError: agg function failed [how->min,dtype->object]",failed -15925,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_self[include_groups_True-dropna_False-sort_True-group_keys_True-transform_returns_dataframe],TypeError: must pass an index to rename,failed -15927,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_True-dropna_True-basic_snowpark_pandas_df-col3-by3-None-groups],KeyError: 'col1',failed -15929,tests.integ.modin.frame.test_loc,test_df_loc_set_list_like_row_key[list-row_key3],ValueError: Item wrong length 2 instead of 3!,failed -15930,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_self[include_groups_True-dropna_False-sort_True-group_keys_True-non_transform_returns_series],"AssertionError: Series are different +DataFrame.index levels are different +[left]: 2, MultiIndex([('mark i', 'mark v'), + ('mark i', 'mark vi')], + ) +[right]: 1, Index(['mark v', 'mark vi'], dtype='object')",failed +13436,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_self[include_groups_True-dropna_False-sort_True-group_keys_True-non_transform_returns_dataframe],AssertionError,failed +13438,tests.integ.modin.groupby.test_groupby_first_last,test_groupby_first_last[last-False-False-col8_bool_missing],Failed: DID NOT RAISE ,failed +13440,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col11-row1],"AssertionError: DataFrame.index are different + +DataFrame.index levels are different +[left]: 2, MultiIndex([('mark i', 'mark v'), + ('mark i', 'mark vi')], + ) +[right]: 1, Index(['mark v', 'mark vi'], dtype='object')",failed +13442,tests.integ.modin.groupby.test_groupby_first_last,test_groupby_first_last[last-False-False-col9_int_missing],Failed: DID NOT RAISE ,failed +13447,tests.integ.modin.groupby.test_groupby_first_last,test_groupby_first_last[last-False-False-col10_mixed_missing],Failed: DID NOT RAISE ,failed +13450,tests.integ.modin.groupby.test_groupby_first_last,test_groupby_first_last[last-False-False-by9],Failed: DID NOT RAISE ,failed +13451,tests.integ.modin.frame.test_loc,test_df_loc_get_with_timedelta_and_none_key,SNOW-1653219 None key does not work with timedelta index,xfailed +13453,tests.integ.modin.frame.test_where,test_dataframe_where_with_dataframe_cond_single_index_different_names_2,"AssertionError: DataFrame.index are different + +Attribute ""names"" are different +[left]: [None] +[right]: ['B']",failed +13454,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col11-row4],"KeyError: ['viper', 'mark i', 'viper']",failed +13456,tests.integ.modin.groupby.test_groupby_first_last,test_groupby_first_last[last-False-False-by10],Failed: DID NOT RAISE ,failed +13458,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_self[include_groups_True-dropna_False-sort_True-group_keys_True-transform_returns_dataframe],TypeError: must pass an index to rename,failed +13461,tests.integ.modin.groupby.test_groupby_first_last,test_error_checking,Failed: DID NOT RAISE ,failed +13463,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_self[include_groups_True-dropna_False-sort_True-group_keys_True-non_transform_returns_series],"AssertionError: Series are different Series length are different [left]: 3, Index(['sum', 'mean', 'name'], dtype='object', name='custom_metrics') @@ -9260,15 +7909,12 @@ Series length are different (2, 'mean'), (2, 'name')], )",failed -15932,tests.integ.modin.frame.test_loc,test_df_loc_get_reversed_key_slice_with_unordered_nullable_index[last--9-6-None],KeyError: 15,failed -15934,tests.integ.modin.groupby.test_groupby_first_last,test_groupby_first_last[first-True-True-col1_grp],Failed: DID NOT RAISE ,failed -15935,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_self[include_groups_True-dropna_False-sort_True-group_keys_True-transform_returns_series],"AssertionError: MultiIndex level [0] are different +13470,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_self[include_groups_True-dropna_False-sort_True-group_keys_True-transform_returns_series],"AssertionError: MultiIndex level [0] are different Attribute ""names"" are different [left]: ['__reduced__'] [right]: [None]",failed -15937,tests.integ.modin.groupby.test_groupby_first_last,test_groupby_first_last[first-True-True-col2_int64],Failed: DID NOT RAISE ,failed -15939,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_self[include_groups_True-dropna_False-sort_True-group_keys_True-return_scalar],"AssertionError: Series are different +13475,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_self[include_groups_True-dropna_False-sort_True-group_keys_True-return_scalar],"AssertionError: Series are different Series values are different (100.0 %) [index]: [0, 1, 2] @@ -9283,56 +7929,42 @@ dtype: float64_2] At positional index 0, first diff: __reduced__ 0 dtype: int64___reduced__ 0.0 dtype: float64_0 != 0_0.0_0",failed -15941,tests.integ.modin.groupby.test_groupby_first_last,test_groupby_first_last[first-True-True-col3_int_identical],Failed: DID NOT RAISE ,failed -15942,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_self[include_groups_True-dropna_False-sort_True-group_keys_False-non_transform_returns_dataframe],AssertionError,failed -15944,tests.integ.modin.groupby.test_groupby_first_last,test_groupby_first_last[first-True-True-col4_int32],Failed: DID NOT RAISE ,failed -15946,tests.integ.modin.frame.test_loc,test_df_loc_get_reversed_key_slice_with_unordered_nullable_index[last--9-6-1],KeyError: 15,failed -15948,tests.integ.modin.frame.test_loc,test_df_loc_set_list_like_row_key[list-row_key4],"AssertionError: DataFrame.iloc[:, 0] (column name=""A"") are different +13478,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col11-row5],KeyError: 'mark vi',failed +13480,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_self[include_groups_True-dropna_False-sort_True-group_keys_False-non_transform_returns_dataframe],AssertionError,failed +13484,tests.integ.modin.frame.test_where,test_dataframe_where_with_duplicated_index_aligned[10-cond_frame0],"AssertionError: DataFrame.index are different -DataFrame.iloc[:, 0] (column name=""A"") values are different (66.66667 %) -[index]: [0, 1, 2] -[left]: [nan, 80.0, 50.0] -[right]: [nan, 70.0, 40.0] -At positional index 1, first diff: 80.0 != 70.0",failed -15950,tests.integ.modin.groupby.test_groupby_first_last,test_groupby_first_last[first-True-True-col6_mixed],Failed: DID NOT RAISE ,failed -15952,tests.integ.modin.groupby.test_groupby_first_last,test_groupby_first_last[first-True-True-col7_bool],Failed: DID NOT RAISE ,failed -15954,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_True-dropna_True-basic_snowpark_pandas_df-col3-by3-None-indices],KeyError: 'col1',failed -15955,tests.integ.modin.frame.test_loc,test_df_loc_set_list_like_row_key[list-row_key5],"KeyError: ""None of [[]] are in the [Index([0, 1, 2], dtype='int64')]""",failed -15957,tests.integ.modin.groupby.test_groupby_first_last,test_groupby_first_last[first-True-True-col8_bool_missing],Failed: DID NOT RAISE ,failed -15961,tests.integ.modin.groupby.test_groupby_negative,test_groupby_min_max_invalid_non_numeric_column[data0-Object--max],"TypeError: agg function failed [how->max,dtype->object]",failed -15963,tests.integ.modin.frame.test_loc,test_df_loc_set_list_like_row_key[list-row_key6],"AssertionError: DataFrame.iloc[:, 0] (column name=""A"") are different +Attribute ""names"" are different +[left]: [None] +[right]: ['index']",failed +13491,tests.integ.modin.frame.test_where,test_dataframe_where_with_duplicated_index_aligned[10-cond_frame1],"AssertionError: DataFrame.index are different -DataFrame.iloc[:, 0] (column name=""A"") values are different (66.66667 %) -[index]: [0, 1, 2] -[left]: [nan, 80.0, 50.0] -[right]: [nan, 70.0, 40.0] -At positional index 1, first diff: 80.0 != 70.0",failed -15964,tests.integ.modin.groupby.test_groupby_negative,test_groupby_min_max_invalid_non_numeric_column[data1-Array--min],Failed: DID NOT RAISE ,failed -15966,tests.integ.modin.groupby.test_groupby_negative,test_groupby_min_max_invalid_non_numeric_column[data1-Array--max],Failed: DID NOT RAISE ,failed -15968,tests.integ.modin.frame.test_loc,test_df_loc_set_list_like_row_key[array-row_key0],"AssertionError: DataFrame.iloc[:, 0] (column name=""A"") are different +Attribute ""names"" are different +[left]: [None] +[right]: ['index']",failed +13493,tests.integ.modin.frame.test_loc,test_df_loc_full_set_row_from_series_pandas_errors_default_columns[index0-expected_result0],"ValueError: could not broadcast input array from shape (2,) into shape (2, 3)",failed +13498,tests.integ.modin.frame.test_loc,test_df_loc_full_set_row_from_series_pandas_errors_default_columns[index1-expected_result1],"ValueError: could not broadcast input array from shape (2,) into shape (2, 3)",failed +13500,tests.integ.modin.frame.test_where,test_dataframe_where_with_duplicated_index_aligned[other1-cond_frame0],"AssertionError: DataFrame.index are different -DataFrame.iloc[:, 0] (column name=""A"") values are different (33.33333 %) -[index]: [0, 1, 2] -[left]: [nan, 4.0, 50.0] -[right]: [nan, 4.0, 40.0] -At positional index 2, first diff: 50.0 != 40.0",failed -15969,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_True-dropna_True-basic_snowpark_pandas_df-index_cols4-col1-None-indices],"AssertionError: Actual type is not the same as expected type , and instead is type . Actual value is {0: [3, 5], 1: [1, 2], 2: [0, 4]}",failed -15975,tests.integ.modin.groupby.test_groupby_negative,test_groupby_series_numeric_only_true,"AssertionError: Regex pattern did not match. - Regex: 'SeriesGroupBy does not implement numeric_only' - Input: ""'grp_col'""",failed -15976,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_self[include_groups_True-dropna_False-sort_True-group_keys_False-transform_returns_dataframe],TypeError: must pass an index to rename,failed -15980,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_self[include_groups_True-dropna_False-sort_True-group_keys_False-non_transform_returns_series],"AssertionError: Series are different +Attribute ""names"" are different +[left]: [None] +[right]: ['index']",failed +13503,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col11-row6],KeyError: 'mark vi',failed +13504,tests.integ.modin.frame.test_loc,test_df_loc_full_set_row_from_series_pandas_errors_string_columns[series_index0],"ValueError: could not broadcast input array from shape (2,) into shape (2, 3)",failed +13508,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_self[include_groups_True-dropna_False-sort_True-group_keys_False-transform_returns_dataframe],TypeError: must pass an index to rename,failed +13510,tests.integ.modin.frame.test_where,test_dataframe_where_with_duplicated_index_aligned[other1-cond_frame1],"AssertionError: DataFrame.index are different + +Attribute ""names"" are different +[left]: [None] +[right]: ['index']",failed +13512,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_self[include_groups_True-dropna_False-sort_True-group_keys_False-non_transform_returns_series],"AssertionError: Series are different Series length are different [left]: 3, Index(['sum', 'mean', 'name'], dtype='object', name='custom_metrics') [right]: 9, Index(['sum', 'mean', 'name', 'sum', 'mean', 'name', 'sum', 'mean', 'name'], dtype='object')",failed -15982,tests.integ.modin.frame.test_create_or_replace_view,test_create_or_replace_view_multiindex,"NotImplementedError: Modin supports the method DataFrame.create_or_replace_view on the Snowflake backend, but not on the backend Pandas.",failed -15985,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_self[include_groups_True-dropna_False-sort_True-group_keys_False-transform_returns_series],[XPASS(strict)] SNOW-1238546,failed -15986,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_True-dropna_True-basic_snowpark_pandas_df-index_cols5-by5-None-groups],KeyError: 'col1',failed -15987,tests.integ.modin.groupby.test_groupby_first_last,test_groupby_first_last[first-True-True-col9_int_missing],Failed: DID NOT RAISE ,failed -15988,tests.integ.modin.frame.test_loc,test_df_loc_set_list_like_row_key[array-row_key2],IndexError: index 3 is out of bounds for axis 0 with size 3,failed -15990,tests.integ.modin.groupby.test_groupby_negative,test_groupby_singleindex_invalid_level[level0],Failed: DID NOT RAISE ,failed -15992,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_self[include_groups_True-dropna_False-sort_True-group_keys_False-return_scalar],"AssertionError: Series are different +13514,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_self[include_groups_True-dropna_False-sort_True-group_keys_False-transform_returns_series],[XPASS(strict)] SNOW-1238546,failed +13516,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col11-row7],KeyError: 'mark vi',failed +13518,tests.integ.modin.frame.test_loc,test_df_loc_full_set_row_from_series_pandas_errors_string_columns[series_index1],"ValueError: could not broadcast input array from shape (2,) into shape (2, 3)",failed +13519,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_self[include_groups_True-dropna_False-sort_True-group_keys_False-return_scalar],"AssertionError: Series are different Series values are different (100.0 %) [index]: [0, 1, 2] @@ -9347,32 +7979,29 @@ dtype: float64_2] At positional index 0, first diff: __reduced__ 0 dtype: int64___reduced__ 0.0 dtype: float64_0 != 0_0.0_0",failed -15993,tests.integ.modin.groupby.test_groupby_first_last,test_groupby_first_last[first-True-True-col10_mixed_missing],Failed: DID NOT RAISE ,failed -15996,tests.integ.modin.groupby.test_groupby_negative,test_groupby_singleindex_invalid_level[level1],Failed: DID NOT RAISE ,failed -15999,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_self[include_groups_True-dropna_False-sort_False-group_keys_True-non_transform_returns_dataframe],AssertionError,failed -16000,tests.integ.modin.groupby.test_groupby_first_last,test_groupby_first_last[first-True-True-by9],Failed: DID NOT RAISE ,failed -16003,tests.integ.modin.groupby.test_groupby_negative,test_groupby_singleindex_invalid_level[level2],Failed: DID NOT RAISE ,failed -16006,tests.integ.modin.groupby.test_groupby_first_last,test_groupby_first_last[first-True-True-by10],Failed: DID NOT RAISE ,failed -16007,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_True-dropna_True-basic_snowpark_pandas_df-index_cols5-by5-None-indices],KeyError: 'col1',failed -16009,tests.integ.modin.groupby.test_groupby_negative,test_groupby_singleindex_invalid_level_name[level0],Failed: DID NOT RAISE ,failed -16011,tests.integ.modin.frame.test_loc,test_df_loc_set_list_like_row_key[array-row_key3],ValueError: Incompatible indexer with DataFrame,failed -16012,tests.integ.modin.groupby.test_groupby_first_last,test_groupby_first_last[first-True-False-col1_grp],Failed: DID NOT RAISE ,failed -16014,tests.integ.modin.groupby.test_groupby_negative,test_groupby_singleindex_invalid_level_name[level1],Failed: DID NOT RAISE ,failed -16018,tests.integ.modin.groupby.test_groupby_first_last,test_groupby_first_last[first-True-False-col2_int64],Failed: DID NOT RAISE ,failed -16023,tests.integ.modin.groupby.test_groupby_negative,test_groupby_singleindex_invalid_level_name[level2],Failed: DID NOT RAISE ,failed -16025,tests.integ.modin.frame.test_loc,test_df_loc_set_list_like_row_key[array-row_key4],"AssertionError: DataFrame.iloc[:, 0] (column name=""A"") are different +13522,tests.integ.modin.frame.test_where,test_dataframe_where_with_duplicated_index_aligned[other2-cond_frame0],"AssertionError: DataFrame.index are different -DataFrame.iloc[:, 0] (column name=""A"") values are different (66.66667 %) -[index]: [0, 1, 2] -[left]: [nan, 80.0, 50.0] -[right]: [nan, 70.0, 40.0] -At positional index 1, first diff: 80.0 != 70.0",failed -16027,tests.integ.modin.groupby.test_groupby_first_last,test_groupby_first_last[first-True-False-col3_int_identical],Failed: DID NOT RAISE ,failed -16028,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_self[include_groups_True-dropna_False-sort_False-group_keys_True-transform_returns_dataframe],TypeError: must pass an index to rename,failed -16030,tests.integ.modin.groupby.test_groupby_series_rank,test_groupby_ser_rank_negative[group-0-0-NotImplementedError],Failed: DID NOT RAISE ,failed -16032,tests.integ.modin.groupby.test_groupby_negative,test_groupby_multiindex_invalid_level[10],Failed: DID NOT RAISE ,failed -16035,tests.integ.modin.groupby.test_groupby_first_last,test_groupby_first_last[first-True-False-col4_int32],Failed: DID NOT RAISE ,failed -16036,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_self[include_groups_True-dropna_False-sort_False-group_keys_True-non_transform_returns_series],"AssertionError: Series are different +Attribute ""names"" are different +[left]: [None] +[right]: ['index']",failed +13523,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_self[include_groups_True-dropna_False-sort_False-group_keys_True-non_transform_returns_dataframe],AssertionError,failed +13528,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col11-row8],KeyError: 'mark vi',failed +13529,tests.integ.modin.frame.test_loc,test_df_loc_set_series_value[None-True-key0],"ValueError: could not broadcast input array from shape (2,) into shape (2, 3)",failed +13531,tests.integ.modin.frame.test_where,test_dataframe_where_with_duplicated_index_aligned[other2-cond_frame1],"AssertionError: DataFrame.index are different + +Attribute ""names"" are different +[left]: [None] +[right]: ['index']",failed +13532,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col11-row9],"AssertionError: DataFrame are different + +DataFrame shape mismatch +[left]: (0, 2) +[right]: (6, 2)",failed +13534,tests.integ.modin.groupby.test_groupby_get_group,test_groupby_get_group[col1_grp],Failed: DID NOT RAISE ,failed +13538,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_self[include_groups_True-dropna_False-sort_False-group_keys_True-transform_returns_dataframe],TypeError: must pass an index to rename,failed +13539,tests.integ.modin.groupby.test_groupby_get_group,test_groupby_get_group[col2_int64],Failed: DID NOT RAISE ,failed +13541,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col11-row12],AssertionError,failed +13543,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_self[include_groups_True-dropna_False-sort_False-group_keys_True-non_transform_returns_series],"AssertionError: Series are different Series length are different [left]: 3, Index(['sum', 'mean', 'name'], dtype='object', name='custom_metrics') @@ -9386,28 +8015,16 @@ Series length are different (2, 'mean'), (2, 'name')], )",failed -16037,tests.integ.modin.groupby.test_groupby_series_rank,test_groupby_ser_rank_negative[None--1-0-NotImplementedError],Failed: DID NOT RAISE ,failed -16040,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_True-dropna_True-basic_snowpark_pandas_df-None-None-0-indices],"AssertionError: Actual type is not the same as expected type , and instead is type . Actual value is {0: [0], 1: [1], 2: [2], 3: [3], 4: [4], 5: [5]}",failed -16041,tests.integ.modin.groupby.test_groupby_negative,test_groupby_multiindex_invalid_level[level1],Failed: DID NOT RAISE ,failed -16048,tests.integ.modin.groupby.test_groupby_first_last,test_groupby_first_last[first-True-False-col6_mixed],Failed: DID NOT RAISE ,failed -16051,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_self[include_groups_True-dropna_False-sort_False-group_keys_True-transform_returns_series],"AssertionError: MultiIndex level [0] are different +13544,tests.integ.modin.groupby.test_groupby_get_group,test_groupby_get_group[col3_int_identical],Failed: DID NOT RAISE ,failed +13546,tests.integ.modin.groupby.test_groupby_get_group,test_groupby_get_group[col4_int32],Failed: DID NOT RAISE ,failed +13547,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col11-row13],AssertionError,failed +13548,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_self[include_groups_True-dropna_False-sort_False-group_keys_True-transform_returns_series],"AssertionError: MultiIndex level [0] are different Attribute ""names"" are different [left]: ['__reduced__'] [right]: [None]",failed -16053,tests.integ.modin.groupby.test_groupby_negative,test_groupby_multiindex_invalid_level[level2],Failed: DID NOT RAISE ,failed -16061,tests.integ.modin.frame.test_cumulative,test_dataframe_cumfunc_axis_negative[cumsum],Failed: DID NOT RAISE ,failed -16062,tests.integ.modin.frame.test_cumulative,test_dataframe_cumfunc_axis_negative[cummin],Failed: DID NOT RAISE ,failed -16063,tests.integ.modin.frame.test_cumulative,test_dataframe_cumfunc_axis_negative[cummax],Failed: DID NOT RAISE ,failed -16065,tests.integ.modin.groupby.test_groupby_first_last,test_groupby_first_last[first-True-False-col7_bool],Failed: DID NOT RAISE ,failed -16066,tests.integ.modin.frame.test_loc,test_df_loc_set_list_like_row_key[array-row_key6],"AssertionError: DataFrame.iloc[:, 0] (column name=""A"") are different - -DataFrame.iloc[:, 0] (column name=""A"") values are different (66.66667 %) -[index]: [0, 1, 2] -[left]: [nan, 80.0, 50.0] -[right]: [nan, 70.0, 40.0] -At positional index 1, first diff: 80.0 != 70.0",failed -16068,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_self[include_groups_True-dropna_False-sort_False-group_keys_True-return_scalar],"AssertionError: Series are different +13552,tests.integ.modin.groupby.test_groupby_get_group,test_groupby_get_group[col6_mixed],Failed: DID NOT RAISE ,failed +13553,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_self[include_groups_True-dropna_False-sort_False-group_keys_True-return_scalar],"AssertionError: Series are different Series values are different (100.0 %) [index]: [0, 1, 2] @@ -9422,40 +8039,43 @@ dtype: float64_2] At positional index 0, first diff: __reduced__ 0 dtype: int64___reduced__ 0.0 dtype: float64_0 != 0_0.0_0",failed -16069,tests.integ.modin.groupby.test_groupby_negative,test_groupby_multiindex_invalid_level[level3],Failed: DID NOT RAISE ,failed -16071,tests.integ.modin.groupby.test_groupby_first_last,test_groupby_first_last[first-True-False-col8_bool_missing],Failed: DID NOT RAISE ,failed -16072,tests.integ.modin.groupby.test_groupby_negative,test_groupby_multiindex_invalid_level[level],Failed: DID NOT RAISE ,failed -16073,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_self[include_groups_True-dropna_False-sort_False-group_keys_False-non_transform_returns_dataframe],AssertionError,failed -16076,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_True-dropna_True-basic_snowpark_pandas_df-col3-col3-None-indices],"AssertionError: Actual type is not the same as expected type , and instead is type . Actual value is {1.1: [5], 3.1: [0], 4.0: [4], 8.0: [1], 10.0: [3], 12.0: [2]}",failed -16077,tests.integ.modin.groupby.test_groupby_negative,test_groupby_multiindex_invalid_level_name_list[level0],Failed: DID NOT RAISE ,failed -16078,tests.integ.modin.groupby.test_groupby_first_last,test_groupby_first_last[first-True-False-col9_int_missing],Failed: DID NOT RAISE ,failed -16080,tests.integ.modin.groupby.test_groupby_negative,test_groupby_multiindex_invalid_level_name_list[level1],Failed: DID NOT RAISE ,failed -16082,tests.integ.modin.groupby.test_groupby_first_last,test_groupby_first_last[first-True-False-col10_mixed_missing],Failed: DID NOT RAISE ,failed -16084,tests.integ.modin.groupby.test_groupby_negative,test_groupby_as_index_false_axis_1_raises,Failed: DID NOT RAISE ,failed -16086,tests.integ.modin.groupby.test_groupby_first_last,test_groupby_first_last[first-True-False-by9],Failed: DID NOT RAISE ,failed -16088,tests.integ.modin.frame.test_loc,test_df_loc_set_list_like_row_key[index-row_key0],"AssertionError: DataFrame.iloc[:, 0] (column name=""A"") are different +13555,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col12-mark i],AssertionError,failed +13556,tests.integ.modin.groupby.test_groupby_get_group,test_groupby_get_group[col7_bool],Failed: DID NOT RAISE ,failed +13558,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_self[include_groups_True-dropna_False-sort_False-group_keys_False-non_transform_returns_dataframe],AssertionError,failed +13559,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col12-row1],AssertionError,failed +13561,tests.integ.modin.groupby.test_groupby_get_group,test_groupby_get_group[col8_bool_missing],Failed: DID NOT RAISE ,failed +13563,tests.integ.modin.frame.test_loc,test_df_loc_set_series_value[None-True-key1],"ValueError: could not broadcast input array from shape (2,) into shape (2, 3)",failed +13564,tests.integ.modin.groupby.test_groupby_get_group,test_groupby_get_group[col9_int_missing],Failed: DID NOT RAISE ,failed +13567,tests.integ.modin.groupby.test_groupby_get_group,test_groupby_get_group[col10_mixed_missing],Failed: DID NOT RAISE ,failed +13569,tests.integ.modin.frame.test_loc,test_df_loc_set_series_value[None-False-key0],"ValueError: could not broadcast input array from shape (2,) into shape (2, 3)",failed +13572,tests.integ.modin.frame.test_set_index,test_set_index_pass_arrays_duplicate[True-False-frame_of_ints_and_timedelta-Index-Index],"TypeError: The parameter ""keys"" may be a column key, one-dimensional array, or a list containing only valid column keys and one-dimensional arrays. Received column of type ",failed +13574,tests.integ.modin.frame.test_loc,test_df_loc_set_series_value[None-False-key1],"ValueError: could not broadcast input array from shape (2,) into shape (2, 3)",failed +13575,tests.integ.modin.groupby.test_groupby_get_group,test_groupby_get_group_with_list,ValueError: must supply a tuple to get_group with multiple grouping keys,failed +13577,tests.integ.modin.frame.test_where,test_dataframe_where_with_duplicated_index_unaligned,pandas.errors.InvalidIndexError,failed +13580,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col12-row2],AssertionError: Got type: ,failed +13584,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col12-row3],AssertionError,failed +13585,tests.integ.modin.frame.test_where,test_dataframe_where_with_duplicated_columns_negative[cond_column_names0-None-Multiple columns are mapped to each label in ['A'] in DataFrame condition],"AssertionError: Regex pattern did not match. + Regex: ""Multiple\\ columns\\ are\\ mapped\\ to\\ each\\ label\\ in\\ \\['A'\\]\\ in\\ DataFrame\\ condition"" + Input: 'cannot reindex on an axis with duplicate labels'",failed +13588,tests.integ.modin.frame.test_loc,test_df_loc_set_series_value[0-True-key1],"AssertionError: DataFrame.iloc[:, 0] (column name=""A"") are different -DataFrame.iloc[:, 0] (column name=""A"") values are different (33.33333 %) -[index]: [0, 1, 2] -[left]: [nan, 4.0, 50.0] -[right]: [nan, 4.0, 40.0] -At positional index 2, first diff: 50.0 != 40.0",failed -16089,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_True-dropna_True-basic_snowpark_pandas_df-col3-None-0-indices],"AssertionError: Actual type is not the same as expected type , and instead is type . Actual value is {1.1: [5], 3.1: [0], 4.0: [4], 8.0: [1], 10.0: [3], 12.0: [2]}",failed -16090,tests.integ.modin.groupby.test_groupby_first_last,test_groupby_first_last[first-True-False-by10],Failed: DID NOT RAISE ,failed -16091,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_self[include_groups_True-dropna_False-sort_False-group_keys_False-transform_returns_dataframe],TypeError: must pass an index to rename,failed -16097,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_self[include_groups_True-dropna_False-sort_False-group_keys_False-non_transform_returns_series],"AssertionError: Series are different +DataFrame.iloc[:, 0] (column name=""A"") values are different (50.0 %) +[index]: [0, 1] +[left]: [1, 4] +[right]: [9, 4]",failed +13590,tests.integ.modin.frame.test_where,test_dataframe_where_with_duplicated_columns_negative[None-others_column_names1-Multiple columns are mapped to each label in ['C'] in DataFrame other],AssertionError: exception type does not match with expected type ,failed +13593,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col12-row4],"KeyError: ['viper', 'mark i', 'viper']",failed +13595,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_self[include_groups_True-dropna_False-sort_False-group_keys_False-transform_returns_dataframe],TypeError: must pass an index to rename,failed +13598,tests.integ.modin.frame.test_where,test_dataframe_where_with_duplicated_columns_negative[cond_column_names2-others_column_names2-Multiple columns are mapped to each label in ['C'] in DataFrame condition],"AssertionError: Regex pattern did not match. + Regex: ""Multiple\\ columns\\ are\\ mapped\\ to\\ each\\ label\\ in\\ \\['C'\\]\\ in\\ DataFrame\\ condition"" + Input: 'cannot reindex on an axis with duplicate labels'",failed +13600,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_self[include_groups_True-dropna_False-sort_False-group_keys_False-non_transform_returns_series],"AssertionError: Series are different Series length are different [left]: 3, Index(['sum', 'mean', 'name'], dtype='object', name='custom_metrics') [right]: 9, Index(['sum', 'mean', 'name', 'sum', 'mean', 'name', 'sum', 'mean', 'name'], dtype='object')",failed -16098,tests.integ.modin.groupby.test_groupby_first_last,test_groupby_first_last[first-False-True-col1_grp],Failed: DID NOT RAISE ,failed -16102,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_self[include_groups_True-dropna_False-sort_False-group_keys_False-transform_returns_series],[XPASS(strict)] SNOW-1238546,failed -16103,tests.integ.modin.groupby.test_groupby_negative,test_groupby_agg_dict_like_input_nested_renamer_raises,"AssertionError: Regex pattern did not match. - Regex: 'Value for func argument with nested dict format is not allowed.' - Input: 'nested renamer is not supported'",failed -16105,tests.integ.modin.groupby.test_groupby_first_last,test_groupby_first_last[first-False-True-col2_int64],Failed: DID NOT RAISE ,failed -16108,tests.integ.modin.groupby.test_groupby_negative,test_groupby_agg_dict_like_input_invalid_column_raises,AssertionError: exception type does not match with expected type ,failed -16109,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_self[include_groups_True-dropna_False-sort_False-group_keys_False-return_scalar],"AssertionError: Series are different +13601,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_self[include_groups_True-dropna_False-sort_False-group_keys_False-transform_returns_series],[XPASS(strict)] SNOW-1238546,failed +13606,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_self[include_groups_True-dropna_False-sort_False-group_keys_False-return_scalar],"AssertionError: Series are different Series values are different (100.0 %) [index]: [0, 1, 2] @@ -9470,28 +8090,16 @@ dtype: float64_2] At positional index 0, first diff: __reduced__ 0 dtype: int64___reduced__ 0.0 dtype: float64_0 != 0_0.0_0",failed -16113,tests.integ.modin.groupby.test_groupby_first_last,test_groupby_first_last[first-False-True-col3_int_identical],Failed: DID NOT RAISE ,failed -16115,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_True-dropna_True-basic_snowpark_pandas_df-col3-None-col3-indices],"AssertionError: Actual type is not the same as expected type , and instead is type . Actual value is {1.1: [5], 3.1: [0], 4.0: [4], 8.0: [1], 10.0: [3], 12.0: [2]}",failed -16123,tests.integ.modin.groupby.test_groupby_negative,test_groupby_named_agg_like_input_invalid_column_raises,AssertionError: exception type does not match with expected type ,failed -16125,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_self[include_groups_False-dropna_True-sort_True-group_keys_True-non_transform_returns_dataframe],AssertionError,failed -16128,tests.integ.modin.groupby.test_groupby_first_last,test_groupby_first_last[first-False-True-col4_int32],Failed: DID NOT RAISE ,failed -16137,tests.integ.modin.groupby.test_groupby_first_last,test_groupby_first_last[first-False-True-col6_mixed],Failed: DID NOT RAISE ,failed -16142,tests.integ.modin.groupby.test_groupby_first_last,test_groupby_first_last[first-False-True-col7_bool],Failed: DID NOT RAISE ,failed -16143,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_True-dropna_True-basic_snowpark_pandas_df-index_cols10-col3-None-indices],"AssertionError: Actual type is not the same as expected type , and instead is type . Actual value is {1.1: [5], 3.1: [0], 4.0: [4], 8.0: [1], 10.0: [3], 12.0: [2]}",failed -16146,tests.integ.modin.groupby.test_groupby_first_last,test_groupby_first_last[first-False-True-col8_bool_missing],Failed: DID NOT RAISE ,failed -16149,tests.integ.modin.groupby.test_groupby_negative,test_groupby_shift_non_integer_period_negative[mxyzptlk],"TypeError: Periods must be integer, but mxyzptlk is .",failed -16154,tests.integ.modin.groupby.test_groupby_first_last,test_groupby_first_last[first-False-True-col9_int_missing],Failed: DID NOT RAISE ,failed -16160,tests.integ.modin.groupby.test_groupby_first_last,test_groupby_first_last[first-False-True-col10_mixed_missing],Failed: DID NOT RAISE ,failed -16161,tests.integ.modin.groupby.test_groupby_negative,test_groupby_shift_freq_negative[D-LEXLUTHOR-0],Failed: DID NOT RAISE ,failed -16162,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_True-dropna_True-basic_snowpark_pandas_df-index_cols11-None-level11-groups],ValueError: Cannot remove 2 levels from an index with 2 levels: at least one level must be left.,failed -16166,tests.integ.modin.groupby.test_groupby_first_last,test_groupby_first_last[first-False-True-by9],Failed: DID NOT RAISE ,failed -16172,tests.integ.modin.groupby.test_groupby_first_last,test_groupby_first_last[first-False-True-by10],Failed: DID NOT RAISE ,failed -16176,tests.integ.modin.frame.test_loc,test_df_loc_set_list_like_row_key[index-row_key2],IndexError: index 3 is out of bounds for axis 0 with size 3,failed -16177,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_self[include_groups_False-dropna_True-sort_True-group_keys_True-transform_returns_dataframe],TypeError: must pass an index to rename,failed -16178,tests.integ.modin.groupby.test_groupby_first_last,test_groupby_first_last[first-False-False-col1_grp],Failed: DID NOT RAISE ,failed -16186,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_True-dropna_True-basic_snowpark_pandas_df-index_cols11-None-level11-indices],ValueError: Cannot remove 2 levels from an index with 2 levels: at least one level must be left.,failed -16187,tests.integ.modin.groupby.test_groupby_first_last,test_groupby_first_last[first-False-False-col2_int64],Failed: DID NOT RAISE ,failed -16188,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_self[include_groups_False-dropna_True-sort_True-group_keys_True-non_transform_returns_series],"AssertionError: Series are different +13610,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col12-row5],KeyError: 'mark vi',failed +13611,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_self[include_groups_False-dropna_True-sort_True-group_keys_True-non_transform_returns_dataframe],AssertionError,failed +13612,tests.integ.modin.frame.test_loc,test_df_loc_set_series_value_slice_key[None-key0],ValueError: buffer source array is read-only,failed +13614,tests.integ.modin.frame.test_where,test_where_series_cond[series_shorter_than_dataframe],ValueError: Array conditional must be same shape as self,failed +13619,tests.integ.modin.frame.test_where,test_where_series_cond[series_same_length_as_dataframe],ValueError: Array conditional must be same shape as self,failed +13621,tests.integ.modin.frame.test_loc,test_df_loc_set_series_value_slice_key[None-key1],"ValueError: could not broadcast input array from shape (2,) into shape (2, 3)",failed +13623,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_self[include_groups_False-dropna_True-sort_True-group_keys_True-transform_returns_dataframe],TypeError: must pass an index to rename,failed +13625,tests.integ.modin.frame.test_where,test_where_series_cond[series_longer_than_dataframe],ValueError: Array conditional must be same shape as self,failed +13629,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col12-row6],KeyError: 'mark vi',failed +13632,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_self[include_groups_False-dropna_True-sort_True-group_keys_True-non_transform_returns_series],"AssertionError: Series are different Series length are different [left]: 3, Index(['sum', 'mean', 'name'], dtype='object', name='custom_metrics') @@ -9505,16 +8113,15 @@ Series length are different (2, 'mean'), (2, 'name')], )",failed -16192,tests.integ.modin.groupby.test_groupby_first_last,test_groupby_first_last[first-False-False-col3_int_identical],Failed: DID NOT RAISE ,failed -16194,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_self[include_groups_False-dropna_True-sort_True-group_keys_True-transform_returns_series],"AssertionError: MultiIndex level [0] are different +13636,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_self[include_groups_False-dropna_True-sort_True-group_keys_True-transform_returns_series],"AssertionError: MultiIndex level [0] are different Attribute ""names"" are different [left]: ['__reduced__'] [right]: [None]",failed -16196,tests.integ.modin.groupby.test_groupby_negative,test_groupby_shift_with_fill_multiindex_negative[4242-by0-0],Failed: DID NOT RAISE ,failed -16200,tests.integ.modin.groupby.test_groupby_negative,test_groupby_shift_with_fill_multiindex_negative[4242-by0-1],Failed: DID NOT RAISE ,failed -16201,tests.integ.modin.groupby.test_groupby_first_last,test_groupby_first_last[first-False-False-col4_int32],Failed: DID NOT RAISE ,failed -16202,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_self[include_groups_False-dropna_True-sort_True-group_keys_True-return_scalar],"AssertionError: Series are different +13639,tests.integ.modin.frame.test_where,test_where_series_other_axis_not_specified,"AssertionError: Regex pattern did not match. + Regex: 'df.where requires an axis parameter \\(0 or 1\\) when given a Series' + Input: 'Must specify axis=0 or 1'",failed +13642,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_self[include_groups_False-dropna_True-sort_True-group_keys_True-return_scalar],"AssertionError: Series are different Series values are different (100.0 %) [index]: [0, 1, 2] @@ -9529,40 +8136,19 @@ dtype: float64_2] At positional index 0, first diff: __reduced__ 0 dtype: int64___reduced__ 0.0 dtype: float64_0 != 0_0.0_0",failed -16205,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_True-dropna_True-basic_snowpark_pandas_df-index_cols12-None-level12-groups],ValueError: Cannot remove 2 levels from an index with 2 levels: at least one level must be left.,failed -16206,tests.integ.modin.groupby.test_groupby_negative,test_groupby_shift_with_fill_multiindex_negative[4242-by0-2],Failed: DID NOT RAISE ,failed -16207,tests.integ.modin.groupby.test_groupby_first_last,test_groupby_first_last[first-False-False-col6_mixed],Failed: DID NOT RAISE ,failed -16209,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_self[include_groups_False-dropna_True-sort_True-group_keys_False-non_transform_returns_dataframe],AssertionError,failed -16212,tests.integ.modin.groupby.test_groupby_negative,test_groupby_shift_with_fill_multiindex_negative[4242-by0-3],Failed: DID NOT RAISE ,failed -16214,tests.integ.modin.groupby.test_groupby_first_last,test_groupby_first_last[first-False-False-col7_bool],Failed: DID NOT RAISE ,failed -16216,tests.integ.modin.groupby.test_groupby_negative,test_groupby_shift_with_fill_multiindex_negative[4242-by0--3],Failed: DID NOT RAISE ,failed -16218,tests.integ.modin.frame.test_loc,test_df_loc_set_list_like_row_key[index-row_key3],ValueError: Incompatible indexer with DataFrame,failed -16219,tests.integ.modin.groupby.test_groupby_first_last,test_groupby_first_last[first-False-False-col8_bool_missing],Failed: DID NOT RAISE ,failed -16222,tests.integ.modin.groupby.test_groupby_negative,test_groupby_shift_with_fill_multiindex_negative[4242-by0--2],Failed: DID NOT RAISE ,failed -16226,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_True-dropna_True-basic_snowpark_pandas_df-index_cols12-None-level12-indices],ValueError: Cannot remove 2 levels from an index with 2 levels: at least one level must be left.,failed -16227,tests.integ.modin.groupby.test_groupby_first_last,test_groupby_first_last[first-False-False-col9_int_missing],Failed: DID NOT RAISE ,failed -16228,tests.integ.modin.groupby.test_groupby_negative,test_groupby_shift_with_fill_multiindex_negative[4242-by0--1],Failed: DID NOT RAISE ,failed -16231,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_self[include_groups_False-dropna_True-sort_True-group_keys_False-transform_returns_dataframe],TypeError: must pass an index to rename,failed -16232,tests.integ.modin.groupby.test_groupby_negative,test_groupby_shift_with_by_and_level_negative,Failed: DID NOT RAISE ,failed -16233,tests.integ.modin.groupby.test_groupby_first_last,test_groupby_first_last[first-False-False-col10_mixed_missing],Failed: DID NOT RAISE ,failed -16239,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_self[include_groups_False-dropna_True-sort_True-group_keys_False-non_transform_returns_series],"AssertionError: Series are different +13644,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_self[include_groups_False-dropna_True-sort_True-group_keys_False-non_transform_returns_dataframe],AssertionError,failed +13648,tests.integ.modin.frame.test_where,test_where_series_other_axis_0[matching_index-series_shorter_than_dataframe],IndexError: index 0 is out of bounds for axis 0 with size 0,failed +13649,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col12-row7],KeyError: 'mark vi',failed +13659,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_self[include_groups_False-dropna_True-sort_True-group_keys_False-transform_returns_dataframe],TypeError: must pass an index to rename,failed +13662,tests.integ.modin.frame.test_loc,test_df_loc_set_series_value_slice_key[0-key0],ValueError: buffer source array is read-only,failed +13664,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_self[include_groups_False-dropna_True-sort_True-group_keys_False-non_transform_returns_series],"AssertionError: Series are different Series length are different [left]: 3, Index(['sum', 'mean', 'name'], dtype='object', name='custom_metrics') [right]: 9, Index(['sum', 'mean', 'name', 'sum', 'mean', 'name', 'sum', 'mean', 'name'], dtype='object')",failed -16240,tests.integ.modin.groupby.test_groupby_negative,test_groupby_shift_with_external_by_negative,Failed: DID NOT RAISE ,failed -16241,tests.integ.modin.groupby.test_groupby_first_last,test_groupby_first_last[first-False-False-by9],Failed: DID NOT RAISE ,failed -16243,tests.integ.modin.frame.test_loc,test_df_loc_set_list_like_row_key[index-row_key4],"AssertionError: DataFrame.iloc[:, 0] (column name=""A"") are different - -DataFrame.iloc[:, 0] (column name=""A"") values are different (66.66667 %) -[index]: [0, 1, 2] -[left]: [nan, 80.0, 50.0] -[right]: [nan, 70.0, 40.0] -At positional index 1, first diff: 80.0 != 70.0",failed -16244,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_self[include_groups_False-dropna_True-sort_True-group_keys_False-transform_returns_series],[XPASS(strict)] SNOW-1238546,failed -16246,tests.integ.modin.groupby.test_groupby_negative,test_groupby_shift_with_by_index_negative[by0],Failed: DID NOT RAISE ,failed -16249,tests.integ.modin.groupby.test_groupby_first_last,test_groupby_first_last[first-False-False-by10],Failed: DID NOT RAISE ,failed -16252,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_self[include_groups_False-dropna_True-sort_True-group_keys_False-return_scalar],"AssertionError: Series are different +13667,tests.integ.modin.frame.test_where,test_where_series_other_axis_0[unmatched_index-series_shorter_than_dataframe],IndexError: index 0 is out of bounds for axis 0 with size 0,failed +13668,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_self[include_groups_False-dropna_True-sort_True-group_keys_False-transform_returns_series],[XPASS(strict)] SNOW-1238546,failed +13673,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_self[include_groups_False-dropna_True-sort_True-group_keys_False-return_scalar],"AssertionError: Series are different Series values are different (100.0 %) [index]: [0, 1, 2] @@ -9577,23 +8163,24 @@ dtype: float64_2] At positional index 0, first diff: __reduced__ 0 dtype: int64___reduced__ 0.0 dtype: float64_0 != 0_0.0_0",failed -16253,tests.integ.modin.groupby.test_groupby_negative,test_groupby_shift_unsupported_args_negative[params0],Failed: DID NOT RAISE ,failed -16254,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_True-dropna_True-basic_snowpark_pandas_df_with_missing_values-None-col1-None-indices],"AssertionError: Actual type is not the same as expected type , and instead is type . Actual value is {0.0: [3, 5], 1.0: [1, 2]}",failed -16256,tests.integ.modin.groupby.test_groupby_first_last,test_groupby_first_last[last-True-True-col1_grp],Failed: DID NOT RAISE ,failed -16259,tests.integ.modin.groupby.test_groupby_negative,test_groupby_shift_unsupported_args_negative[params1],Failed: DID NOT RAISE ,failed -16260,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_self[include_groups_False-dropna_True-sort_False-group_keys_True-non_transform_returns_dataframe],AssertionError,failed -16263,tests.integ.modin.groupby.test_groupby_first_last,test_groupby_first_last[last-True-True-col2_int64],Failed: DID NOT RAISE ,failed -16265,tests.integ.modin.groupby.test_groupby_negative,test_groupby_agg_invalid_numeric_only[TEST-min],Failed: DID NOT RAISE ,failed -16268,tests.integ.modin.groupby.test_groupby_negative,test_groupby_agg_invalid_numeric_only[TEST-max],Failed: DID NOT RAISE ,failed -16269,tests.integ.modin.groupby.test_groupby_first_last,test_groupby_first_last[last-True-True-col3_int_identical],Failed: DID NOT RAISE ,failed -16273,tests.integ.modin.groupby.test_groupby_negative,test_groupby_agg_invalid_numeric_only[TEST-std],Failed: DID NOT RAISE ,failed -16274,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_True-dropna_True-basic_snowpark_pandas_df_with_missing_values-None-by1-None-groups],KeyError: 'col1',failed -16277,tests.integ.modin.groupby.test_groupby_first_last,test_groupby_first_last[last-True-True-col4_int32],Failed: DID NOT RAISE ,failed -16279,tests.integ.modin.groupby.test_groupby_negative,test_groupby_agg_invalid_numeric_only[TEST-var],Failed: DID NOT RAISE ,failed -16281,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_self[include_groups_False-dropna_True-sort_False-group_keys_True-transform_returns_dataframe],TypeError: must pass an index to rename,failed -16282,tests.integ.modin.groupby.test_groupby_first_last,test_groupby_first_last[last-True-True-col6_mixed],Failed: DID NOT RAISE ,failed -16285,tests.integ.modin.groupby.test_groupby_negative,test_groupby_agg_invalid_numeric_only[TEST-sum],Failed: DID NOT RAISE ,failed -16288,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_self[include_groups_False-dropna_True-sort_False-group_keys_True-non_transform_returns_series],"AssertionError: Series are different +13677,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_self[include_groups_False-dropna_True-sort_False-group_keys_True-non_transform_returns_dataframe],AssertionError,failed +13679,tests.integ.modin.frame.test_where,test_where_series_other_axis_0[unmatched_index-series_same_length_as_dataframe],IndexError: index 0 is out of bounds for axis 0 with size 0,failed +13687,tests.integ.modin.groupby.test_groupby_getitem,test_groupby_getitem[col5_int16-False-col1_grp],"assert False + + where False = isinstance(, ModinSerGroupBy)",failed +13689,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col12-row8],KeyError: 'mark vi',failed +13691,tests.integ.modin.frame.test_where,test_where_series_other_axis_0[unmatched_index-series_longer_than_dataframe],IndexError: index 0 is out of bounds for axis 0 with size 0,failed +13692,tests.integ.modin.groupby.test_groupby_getitem,test_groupby_getitem[col5_int16-False-by1],"assert False + + where False = isinstance(, ModinSerGroupBy)",failed +13694,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col12-row9],AssertionError,failed +13695,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_self[include_groups_False-dropna_True-sort_False-group_keys_True-transform_returns_dataframe],TypeError: must pass an index to rename,failed +13698,tests.integ.modin.groupby.test_groupby_getitem,test_groupby_getitem[col5_int16-False-by2],"assert False + + where False = isinstance(, ModinSerGroupBy)",failed +13701,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col12-row10],AssertionError,failed +13706,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col12-row11],AssertionError,failed +13709,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col12-row12],AssertionError: Got type: ,failed +13715,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col12-row13],AssertionError: Got type: ,failed +13722,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col12-row14],AssertionError,failed +13725,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_self[include_groups_False-dropna_True-sort_False-group_keys_True-non_transform_returns_series],"AssertionError: Series are different Series length are different [left]: 3, Index(['sum', 'mean', 'name'], dtype='object', name='custom_metrics') @@ -9607,16 +8194,20 @@ Series length are different (2, 'mean'), (2, 'name')], )",failed -16290,tests.integ.modin.groupby.test_groupby_first_last,test_groupby_first_last[last-True-True-col7_bool],Failed: DID NOT RAISE ,failed -16292,tests.integ.modin.groupby.test_groupby_negative,test_groupby_agg_invalid_numeric_only[TEST-mean],Failed: DID NOT RAISE ,failed -16294,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_self[include_groups_False-dropna_True-sort_False-group_keys_True-transform_returns_series],"AssertionError: MultiIndex level [0] are different +13727,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col13-mark i],AssertionError,failed +13728,tests.integ.modin.frame.test_where,test_where_series_other_axis_1[matching_index-series_same_length_as_dataframe],"AssertionError: DataFrame.iloc[:, 0] (column name=""col1"") are different + +DataFrame.iloc[:, 0] (column name=""col1"") values are different (100.0 %) +[index]: [0, 1, 2] +[left]: [nan, nan, nan] +[right]: [11, 11, 11]",failed +13731,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_self[include_groups_False-dropna_True-sort_False-group_keys_True-transform_returns_series],"AssertionError: MultiIndex level [0] are different Attribute ""names"" are different [left]: ['__reduced__'] [right]: [None]",failed -16295,tests.integ.modin.groupby.test_groupby_first_last,test_groupby_first_last[last-True-True-col8_bool_missing],Failed: DID NOT RAISE ,failed -16296,tests.integ.modin.groupby.test_groupby_negative,test_groupby_agg_invalid_numeric_only[TEST-median],Failed: DID NOT RAISE ,failed -16298,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_self[include_groups_False-dropna_True-sort_False-group_keys_True-return_scalar],"AssertionError: Series are different +13733,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col13-row1],AssertionError,failed +13734,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_self[include_groups_False-dropna_True-sort_False-group_keys_True-return_scalar],"AssertionError: Series are different Series values are different (100.0 %) [index]: [0, 1, 2] @@ -9631,46 +8222,27 @@ dtype: float64_2] At positional index 0, first diff: __reduced__ 0 dtype: int64___reduced__ 0.0 dtype: float64_0 != 0_0.0_0",failed -16300,tests.integ.modin.groupby.test_groupby_first_last,test_groupby_first_last[last-True-True-col9_int_missing],Failed: DID NOT RAISE ,failed -16301,tests.integ.modin.groupby.test_groupby_negative,test_groupby_agg_invalid_numeric_only[5-min],Failed: DID NOT RAISE ,failed -16302,tests.integ.modin.frame.test_loc,test_df_loc_set_list_like_row_key[index-row_key6],"AssertionError: DataFrame.iloc[:, 0] (column name=""A"") are different +13735,tests.integ.modin.frame.test_where,test_where_series_other_axis_1[matching_index-series_longer_than_dataframe],"AssertionError: DataFrame.iloc[:, 0] (column name=""col1"") are different -DataFrame.iloc[:, 0] (column name=""A"") values are different (66.66667 %) +DataFrame.iloc[:, 0] (column name=""col1"") values are different (100.0 %) [index]: [0, 1, 2] -[left]: [nan, 80.0, 50.0] -[right]: [nan, 70.0, 40.0] -At positional index 1, first diff: 80.0 != 70.0",failed -16305,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_self[include_groups_False-dropna_True-sort_False-group_keys_False-non_transform_returns_dataframe],AssertionError,failed -16306,tests.integ.modin.groupby.test_groupby_negative,test_groupby_agg_invalid_numeric_only[5-max],Failed: DID NOT RAISE ,failed -16307,tests.integ.modin.groupby.test_groupby_first_last,test_groupby_first_last[last-True-True-col10_mixed_missing],Failed: DID NOT RAISE ,failed -16309,tests.integ.modin.groupby.test_groupby_negative,test_groupby_agg_invalid_numeric_only[5-std],Failed: DID NOT RAISE ,failed -16310,tests.integ.modin.groupby.test_groupby_first_last,test_groupby_first_last[last-True-True-by9],Failed: DID NOT RAISE ,failed -16313,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_True-dropna_True-basic_snowpark_pandas_df_with_missing_values-None-by1-None-indices],KeyError: 'col1',failed -16314,tests.integ.modin.frame.test_loc,test_df_loc_set_series_and_list_like_row_key_negative[series],KeyError: array([3]),failed -16315,tests.integ.modin.groupby.test_groupby_negative,test_groupby_agg_invalid_numeric_only[5-var],Failed: DID NOT RAISE ,failed -16317,tests.integ.modin.groupby.test_groupby_first_last,test_groupby_first_last[last-True-True-by10],Failed: DID NOT RAISE ,failed -16319,tests.integ.modin.groupby.test_groupby_negative,test_groupby_agg_invalid_numeric_only[5-sum],Failed: DID NOT RAISE ,failed -16322,tests.integ.modin.groupby.test_groupby_first_last,test_groupby_first_last[last-True-False-col1_grp],Failed: DID NOT RAISE ,failed -16327,tests.integ.modin.groupby.test_groupby_negative,test_groupby_agg_invalid_numeric_only[5-mean],Failed: DID NOT RAISE ,failed -16328,tests.integ.modin.groupby.test_groupby_first_last,test_groupby_first_last[last-True-False-col2_int64],Failed: DID NOT RAISE ,failed -16331,tests.integ.modin.groupby.test_groupby_negative,test_groupby_agg_invalid_numeric_only[5-median],Failed: DID NOT RAISE ,failed -16332,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_True-dropna_True-basic_snowpark_pandas_df_with_missing_values-col3-col1-None-indices],"AssertionError: Actual type is not the same as expected type , and instead is type . Actual value is {0.0: [3, 5], 1.0: [1, 2]}",failed -16333,tests.integ.modin.groupby.test_groupby_first_last,test_groupby_first_last[last-True-False-col3_int_identical],Failed: DID NOT RAISE ,failed -16339,tests.integ.modin.groupby.test_groupby_first_last,test_groupby_first_last[last-True-False-col4_int32],Failed: DID NOT RAISE ,failed -16348,tests.integ.modin.frame.test_merge,test_merge_left_on_right_on[left-True-left_i-right_i],KeyError: 'right_i',failed -16349,tests.integ.modin.groupby.test_groupby_first_last,test_groupby_first_last[last-True-False-col6_mixed],Failed: DID NOT RAISE ,failed -16351,tests.integ.modin.groupby.test_groupby_negative,test_groupby_agg_invalid_min_count[min-TEST],TypeError: 'str' object cannot be interpreted as an integer,failed -16353,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_self[include_groups_False-dropna_True-sort_False-group_keys_False-transform_returns_dataframe],TypeError: must pass an index to rename,failed -16356,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_True-dropna_True-basic_snowpark_pandas_df_with_missing_values-col3-by3-None-groups],KeyError: 'col1',failed -16359,tests.integ.modin.groupby.test_groupby_first_last,test_groupby_first_last[last-True-False-col7_bool],Failed: DID NOT RAISE ,failed -16360,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_self[include_groups_False-dropna_True-sort_False-group_keys_False-non_transform_returns_series],"AssertionError: Series are different +[left]: [nan, nan, nan] +[right]: [11, 11, 11]",failed +13737,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col13-row2],AssertionError: Got type: ,failed +13739,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_self[include_groups_False-dropna_True-sort_False-group_keys_False-non_transform_returns_dataframe],AssertionError,failed +13743,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col13-row3],AssertionError,failed +13751,tests.integ.modin.frame.test_to_dynamic_table,test_to_dynamic_table_index[method-True-index_labels1-expected_index_columns1],"NotImplementedError: Modin supports the method DataFrame.to_dynamic_table on the Snowflake backend, but not on the backend Pandas.",failed +13752,tests.integ.modin.frame.test_where,test_where_series_cond_after_join,ValueError: Array conditional must be same shape as self,failed +13754,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_self[include_groups_False-dropna_True-sort_False-group_keys_False-transform_returns_dataframe],TypeError: must pass an index to rename,failed +13757,tests.integ.modin.frame.test_where,test_where_with_zero_other_mixed_types_SNOW_1372268,ValueError: Array conditional must be same shape as self,failed +13759,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_self[include_groups_False-dropna_True-sort_False-group_keys_False-non_transform_returns_series],"AssertionError: Series are different Series length are different [left]: 3, Index(['sum', 'mean', 'name'], dtype='object', name='custom_metrics') [right]: 9, Index(['sum', 'mean', 'name', 'sum', 'mean', 'name', 'sum', 'mean', 'name'], dtype='object')",failed -16366,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_self[include_groups_False-dropna_True-sort_False-group_keys_False-transform_returns_series],[XPASS(strict)] SNOW-1238546,failed -16369,tests.integ.modin.groupby.test_groupby_first_last,test_groupby_first_last[last-True-False-col8_bool_missing],Failed: DID NOT RAISE ,failed -16375,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_self[include_groups_False-dropna_True-sort_False-group_keys_False-return_scalar],"AssertionError: Series are different +13762,tests.integ.modin.frame.test_where,test_where_with_zero_other_SNOW_1372268,ValueError: Array conditional must be same shape as self,failed +13763,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_self[include_groups_False-dropna_True-sort_False-group_keys_False-transform_returns_series],[XPASS(strict)] SNOW-1238546,failed +13767,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_self[include_groups_False-dropna_True-sort_False-group_keys_False-return_scalar],"AssertionError: Series are different Series values are different (100.0 %) [index]: [0, 1, 2] @@ -9685,25 +8257,11 @@ dtype: float64_2] At positional index 0, first diff: __reduced__ 0 dtype: int64___reduced__ 0.0 dtype: float64_0 != 0_0.0_0",failed -16379,tests.integ.modin.groupby.test_groupby_first_last,test_groupby_first_last[last-True-False-col9_int_missing],Failed: DID NOT RAISE ,failed -16383,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_self[include_groups_False-dropna_False-sort_True-group_keys_True-non_transform_returns_dataframe],AssertionError,failed -16386,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_True-dropna_True-basic_snowpark_pandas_df_with_missing_values-col3-by3-None-indices],KeyError: 'col1',failed -16388,tests.integ.modin.groupby.test_groupby_first_last,test_groupby_first_last[last-True-False-col10_mixed_missing],Failed: DID NOT RAISE ,failed -16395,tests.integ.modin.frame.test_merge,test_merge_left_on_right_on[left-True-left_i-A],KeyError: 'left_i',failed -16396,tests.integ.modin.groupby.test_groupby_first_last,test_groupby_first_last[last-True-False-by9],Failed: DID NOT RAISE ,failed -16406,tests.integ.modin.groupby.test_groupby_first_last,test_groupby_first_last[last-True-False-by10],Failed: DID NOT RAISE ,failed -16408,tests.integ.modin.frame.test_loc,test_df_loc_set_general_col_key_type[series-row_key0-col_key6],"AssertionError: DataFrame are different - -DataFrame shape mismatch -[left]: (3, 8) -[right]: (3, 4)",failed -16414,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_self[include_groups_False-dropna_False-sort_True-group_keys_True-transform_returns_dataframe],TypeError: must pass an index to rename,failed -16420,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_True-dropna_True-basic_snowpark_pandas_df_with_missing_values-index_cols4-col1-None-indices],"AssertionError: Actual type is not the same as expected type , and instead is type . Actual value is {0.0: [3, 5], 1.0: [1, 2]}",failed -16421,tests.integ.modin.groupby.test_groupby_first_last,test_groupby_first_last[last-False-True-col1_grp],Failed: DID NOT RAISE ,failed -16427,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_True-dropna_True-basic_snowpark_pandas_df_with_missing_values-col3-None-0-groups],"AssertionError: Actual dict has the wrong key at position 1. Actual key 4.0 is not equal to expected key 8.0. -Actual dict: {3.1: [3.1], 4.0: [4.0], 8.0: [8.0], 10.0: [10.0], 12.0: [12.0]} -Expected dict: {3.1: [3.1], 8.0: [8.0], 12.0: [12.0], 10.0: [10.0], 4.0: [4.0]}",failed -16430,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_self[include_groups_False-dropna_False-sort_True-group_keys_True-non_transform_returns_series],"AssertionError: Series are different +13770,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_self[include_groups_False-dropna_False-sort_True-group_keys_True-non_transform_returns_dataframe],AssertionError,failed +13773,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col13-row4],"KeyError: ['viper', 'mark i', 'viper']",failed +13782,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_self[include_groups_False-dropna_False-sort_True-group_keys_True-transform_returns_dataframe],TypeError: must pass an index to rename,failed +13787,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col13-row5],KeyError: 'mark vi',failed +13788,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_self[include_groups_False-dropna_False-sort_True-group_keys_True-non_transform_returns_series],"AssertionError: Series are different Series length are different [left]: 3, Index(['sum', 'mean', 'name'], dtype='object', name='custom_metrics') @@ -9717,17 +8275,12 @@ Series length are different (2, 'mean'), (2, 'name')], )",failed -16431,tests.integ.modin.groupby.test_groupby_first_last,test_groupby_first_last[last-False-True-col2_int64],Failed: DID NOT RAISE ,failed -16436,tests.integ.modin.frame.test_merge,test_merge_left_on_right_on[left-True-B-right_i],KeyError: 'right_i',failed -16438,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_self[include_groups_False-dropna_False-sort_True-group_keys_True-transform_returns_series],"AssertionError: MultiIndex level [0] are different +13791,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_self[include_groups_False-dropna_False-sort_True-group_keys_True-transform_returns_series],"AssertionError: MultiIndex level [0] are different Attribute ""names"" are different [left]: ['__reduced__'] [right]: [None]",failed -16442,tests.integ.modin.groupby.test_groupby_first_last,test_groupby_first_last[last-False-True-col3_int_identical],Failed: DID NOT RAISE ,failed -16443,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_True-dropna_True-basic_snowpark_pandas_df_with_missing_values-col3-None-0-indices],"AssertionError: Actual type is not the same as expected type , and instead is type . Actual value is {3.1: [0], 4.0: [4], 8.0: [1], 10.0: [3], 12.0: [2]}",failed -16449,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_True-dropna_True-basic_snowpark_pandas_df_with_missing_values-index_cols5-by5-None-groups],KeyError: 'col1',failed -16450,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_self[include_groups_False-dropna_False-sort_True-group_keys_True-return_scalar],"AssertionError: Series are different +13795,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_self[include_groups_False-dropna_False-sort_True-group_keys_True-return_scalar],"AssertionError: Series are different Series values are different (100.0 %) [index]: [0, 1, 2] @@ -9742,81 +8295,20 @@ dtype: float64_2] At positional index 0, first diff: __reduced__ 0 dtype: int64___reduced__ 0.0 dtype: float64_0 != 0_0.0_0",failed -16451,tests.integ.modin.groupby.test_groupby_first_last,test_groupby_first_last[last-False-True-col4_int32],Failed: DID NOT RAISE ,failed -16456,tests.integ.modin.frame.test_loc,test_df_loc_set_general_col_key_type[series-row_key0-col_key8],"AssertionError: DataFrame.iloc[:, 0] (column name=""D"") are different +13797,tests.integ.modin.frame.test_astype,test_astype_from_timestamp_ltz[int32],"TypeError: Converting from datetime64[ns, America/Los_Angeles] to int32 is not supported. Do obj.astype('int64').astype(dtype) instead",failed +13801,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_self[include_groups_False-dropna_False-sort_True-group_keys_False-non_transform_returns_dataframe],AssertionError,failed +13805,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col13-row6],KeyError: 'mark vi',failed +13820,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col13-row7],KeyError: 'mark vi',failed +13836,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col13-row8],KeyError: 'mark vi',failed +13842,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_self[include_groups_False-dropna_False-sort_True-group_keys_False-transform_returns_dataframe],TypeError: must pass an index to rename,failed +13852,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_self[include_groups_False-dropna_False-sort_True-group_keys_False-non_transform_returns_series],"AssertionError: Series are different -DataFrame.iloc[:, 0] (column name=""D"") values are different (66.66667 %) -[index]: [0, 1, 2] -[left]: [nan, 4.0, nan] -[right]: [1.0, 4.0, 7.0] -At positional index 0, first diff: nan != 1.0",failed -16458,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_True-dropna_True-basic_snowpark_pandas_df_with_missing_values-col3-None-col3-groups],"AssertionError: Actual dict has the wrong key at position 1. Actual key 4.0 is not equal to expected key 8.0. -Actual dict: {3.1: [3.1], 4.0: [4.0], 8.0: [8.0], 10.0: [10.0], 12.0: [12.0]} -Expected dict: {3.1: [3.1], 8.0: [8.0], 12.0: [12.0], 10.0: [10.0], 4.0: [4.0]}",failed -16460,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_self[include_groups_False-dropna_False-sort_True-group_keys_False-non_transform_returns_dataframe],AssertionError,failed -16461,tests.integ.modin.groupby.test_groupby_first_last,test_groupby_first_last[last-False-True-col6_mixed],Failed: DID NOT RAISE ,failed -16467,tests.integ.modin.groupby.test_groupby_first_last,test_groupby_first_last[last-False-True-col7_bool],Failed: DID NOT RAISE ,failed -16468,tests.integ.modin.frame.test_merge,test_merge_left_on_right_on[left-True-left_on9-right_on9],KeyError: 'right_i',failed -16470,tests.integ.modin.frame.test_describe,test_describe_duplicate_columns[None-None-7],"AssertionError: DataFrame are different - -DataFrame shape mismatch -[left]: (11, 3) -[right]: (8, 2)",failed -16472,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_True-dropna_True-basic_snowpark_pandas_df_with_missing_values-col3-None-col3-indices],"AssertionError: Actual type is not the same as expected type , and instead is type . Actual value is {3.1: [0], 4.0: [4], 8.0: [1], 10.0: [3], 12.0: [2]}",failed -16474,tests.integ.modin.groupby.test_groupby_first_last,test_groupby_first_last[last-False-True-col8_bool_missing],Failed: DID NOT RAISE ,failed -16477,tests.integ.modin.frame.test_describe,test_describe_duplicate_columns[number-None-7],ValueError: No objects to concatenate,failed -16478,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_True-dropna_True-basic_snowpark_pandas_df_with_missing_values-index_cols5-by5-None-indices],KeyError: 'col1',failed -16480,tests.integ.modin.groupby.test_groupby_first_last,test_groupby_first_last[last-False-True-col9_int_missing],Failed: DID NOT RAISE ,failed -16481,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_True-dropna_True-basic_snowpark_pandas_df_with_missing_values-index_cols10-col3-None-groups],"AssertionError: Actual dict has the wrong key at position 1. Actual key 4.0 is not equal to expected key 8.0. -Actual dict: {3.1: [(3.1, 17.0)], 4.0: [(4.0, nan)], 8.0: [(8.0, 3.0)], 10.0: [(10.0, 15.0)], 12.0: [(12.0, 16.0)]} -Expected dict: {3.1: [(3.1, 17.0)], 8.0: [(8.0, 3.0)], 12.0: [(12.0, 16.0)], 10.0: [(10.0, 15.0)], 4.0: [(4.0, nan)]}",failed -16482,tests.integ.modin.frame.test_describe,test_describe_duplicate_columns[None-float-9],"AssertionError: DataFrame are different - -DataFrame shape mismatch -[left]: (11, 3) -[right]: (11, 2)",failed -16483,tests.integ.modin.frame.test_loc,test_df_loc_set_general_col_key_type[series-row_key0-col_key9],"KeyError: array(['1', '2'], dtype=',failed -16491,tests.integ.modin.frame.test_describe,test_describe_duplicate_columns[float-int-5],ValueError: No objects to concatenate,failed -16492,tests.integ.modin.frame.test_describe,test_describe_duplicate_columns_mixed,"AssertionError: DataFrame are different - -DataFrame shape mismatch -[left]: (11, 3) -[right]: (8, 2)",failed -16495,tests.integ.modin.frame.test_describe,test_timedelta,"[XPASS(strict)] requires concat(), which we cannot do with Timedelta.",failed -16498,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_True-dropna_True-basic_snowpark_pandas_df_with_missing_values-index_cols10-col3-None-indices],"AssertionError: Actual type is not the same as expected type , and instead is type . Actual value is {3.1: [0], 4.0: [4], 8.0: [1], 10.0: [3], 12.0: [2]}",failed -16499,tests.integ.modin.groupby.test_groupby_first_last,test_groupby_first_last[last-False-True-by9],Failed: DID NOT RAISE ,failed -16504,tests.integ.modin.groupby.test_groupby_first_last,test_groupby_first_last[last-False-True-by10],Failed: DID NOT RAISE ,failed -16505,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_True-dropna_True-basic_snowpark_pandas_df_with_missing_values-None-None-0-indices],"AssertionError: Actual type is not the same as expected type , and instead is type . Actual value is {0: [0], 1: [1], 2: [2], 3: [3], 4: [4], 5: [5]}",failed -16507,tests.integ.modin.groupby.test_groupby_first_last,test_groupby_first_last[last-False-False-col1_grp],Failed: DID NOT RAISE ,failed -16509,tests.integ.modin.frame.test_loc,test_df_loc_set_general_col_key_type[series-row_key0-col_key10],"KeyError: array(['E', 1, 'X', 2], dtype=object)",failed -16511,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_True-dropna_True-basic_snowpark_pandas_df_with_missing_values-index_cols11-None-level11-groups],ValueError: Cannot remove 2 levels from an index with 2 levels: at least one level must be left.,failed -16514,tests.integ.modin.groupby.test_groupby_first_last,test_groupby_first_last[last-False-False-col2_int64],Failed: DID NOT RAISE ,failed -16516,tests.integ.modin.groupby.test_groupby_first_last,test_groupby_first_last[last-False-False-col3_int_identical],Failed: DID NOT RAISE ,failed -16522,tests.integ.modin.groupby.test_groupby_first_last,test_groupby_first_last[last-False-False-col4_int32],Failed: DID NOT RAISE ,failed -16523,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_True-dropna_True-basic_snowpark_pandas_df_with_missing_values-col3-col3-None-indices],"AssertionError: Actual type is not the same as expected type , and instead is type . Actual value is {3.1: [0], 4.0: [4], 8.0: [1], 10.0: [3], 12.0: [2]}",failed -16524,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_self[include_groups_False-dropna_False-sort_True-group_keys_False-transform_returns_dataframe],TypeError: must pass an index to rename,failed -16527,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_True-dropna_True-basic_snowpark_pandas_df_with_missing_values-index_cols11-None-level11-indices],ValueError: Cannot remove 2 levels from an index with 2 levels: at least one level must be left.,failed -16532,tests.integ.modin.groupby.test_groupby_first_last,test_groupby_first_last[last-False-False-col6_mixed],Failed: DID NOT RAISE ,failed -16534,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_self[include_groups_False-dropna_False-sort_True-group_keys_False-non_transform_returns_series],"AssertionError: Series are different - -Series length are different -[left]: 3, Index(['sum', 'mean', 'name'], dtype='object', name='custom_metrics') -[right]: 9, Index(['sum', 'mean', 'name', 'sum', 'mean', 'name', 'sum', 'mean', 'name'], dtype='object')",failed -16538,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_self[include_groups_False-dropna_False-sort_True-group_keys_False-transform_returns_series],[XPASS(strict)] SNOW-1238546,failed -16539,tests.integ.modin.groupby.test_groupby_first_last,test_groupby_first_last[last-False-False-col7_bool],Failed: DID NOT RAISE ,failed -16542,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_True-dropna_True-basic_snowpark_pandas_df_with_missing_values-index_cols12-None-level12-groups],ValueError: Cannot remove 2 levels from an index with 2 levels: at least one level must be left.,failed -16544,tests.integ.modin.groupby.test_groupby_first_last,test_groupby_first_last[last-False-False-col8_bool_missing],Failed: DID NOT RAISE ,failed -16545,tests.integ.modin.groupby.test_groupby_size,test_groupby_agg_size[size-False-col1_grp],"TypeError: Must provide 'func' or tuples of '(column, aggfunc).",failed -16546,tests.integ.modin.frame.test_diff,test_row_wise_diff_all_int_df[with_len(df)/2_rows_before],ValueError: periods must be an int. got instead,failed -16547,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_self[include_groups_False-dropna_False-sort_True-group_keys_False-return_scalar],"AssertionError: Series are different +Series length are different +[left]: 3, Index(['sum', 'mean', 'name'], dtype='object', name='custom_metrics') +[right]: 9, Index(['sum', 'mean', 'name', 'sum', 'mean', 'name', 'sum', 'mean', 'name'], dtype='object')",failed +13856,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_self[include_groups_False-dropna_False-sort_True-group_keys_False-transform_returns_series],[XPASS(strict)] SNOW-1238546,failed +13861,tests.integ.modin.groupby.test_all_any,test_all_any_invalid_types[data0-Boolean value 'a' is not recognized],Failed: DID NOT RAISE ,failed +13862,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_self[include_groups_False-dropna_False-sort_True-group_keys_False-return_scalar],"AssertionError: Series are different Series values are different (100.0 %) [index]: [0, 1, 2] @@ -9831,39 +8323,21 @@ dtype: float64_2] At positional index 0, first diff: __reduced__ 0 dtype: int64___reduced__ 0.0 dtype: float64_0 != 0_0.0_0",failed -16548,tests.integ.modin.frame.test_diff,test_row_wise_diff_all_int_df[with_len(df)/2_rows_after],ValueError: periods must be an int. got instead,failed -16554,tests.integ.modin.groupby.test_groupby_first_last,test_groupby_first_last[last-False-False-col9_int_missing],Failed: DID NOT RAISE ,failed -16555,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_True-dropna_True-basic_snowpark_pandas_df_with_missing_values-col3-None-0-indices],"AssertionError: Actual type is not the same as expected type , and instead is type . Actual value is {3.1: [0], 4.0: [4], 8.0: [1], 10.0: [3], 12.0: [2]}",failed -16558,tests.integ.modin.groupby.test_groupby_dataframe_cumulative,test_groupby_cumcount_negative[LEXLUTHOR-0-0-NotImplementedError],Failed: DID NOT RAISE ,failed -16560,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_self[include_groups_False-dropna_False-sort_False-group_keys_True-non_transform_returns_dataframe],AssertionError,failed -16561,tests.integ.modin.groupby.test_groupby_size,test_groupby_agg_size[size-False-col2_int64],"TypeError: Must provide 'func' or tuples of '(column, aggfunc).",failed -16562,tests.integ.modin.groupby.test_groupby_first_last,test_groupby_first_last[last-False-False-col10_mixed_missing],Failed: DID NOT RAISE ,failed -16563,tests.integ.modin.frame.test_diff,test_col_wise_diff_all_int_df[with_len(df.columns)/2_cols_before],ValueError: periods must be an int. got instead,failed -16564,tests.integ.modin.groupby.test_groupby_dataframe_cumulative,test_groupby_cumcount_negative[None--1-0-NotImplementedError],Failed: DID NOT RAISE ,failed -16566,tests.integ.modin.frame.test_diff,test_col_wise_diff_all_int_df[with_len(df.columns)/2_cols_after],ValueError: periods must be an int. got instead,failed -16567,tests.integ.modin.frame.test_loc,test_df_loc_set_general_col_key_type[series-row_key1-col_key1],"AssertionError: DataFrame.iloc[:, 3] (column name=""A"") are different - -DataFrame.iloc[:, 3] (column name=""A"") values are different (100.0 %) -[index]: [0, 1, 2] -[left]: [1, 4, 7] -[right]: [nan, 7.0, 4.0]",failed -16568,tests.integ.modin.groupby.test_groupby_dataframe_cumulative,test_groupby_cumcount_negative[LEXLUTHOR-0-1-NotImplementedError],Failed: DID NOT RAISE ,failed -16571,tests.integ.modin.groupby.test_groupby_first_last,test_groupby_first_last[last-False-False-by9],Failed: DID NOT RAISE ,failed -16574,tests.integ.modin.groupby.test_groupby_size,test_groupby_agg_size[size-False-col3_int_identical],"TypeError: Must provide 'func' or tuples of '(column, aggfunc).",failed -16577,tests.integ.modin.groupby.test_groupby_first_last,test_groupby_first_last[last-False-False-by10],Failed: DID NOT RAISE ,failed -16580,tests.integ.modin.groupby.test_groupby_size,test_groupby_agg_size[size-False-col4_int32],"TypeError: Must provide 'func' or tuples of '(column, aggfunc).",failed -16582,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_True-dropna_True-basic_snowpark_pandas_df_with_missing_values-col3-None-col3-indices],"AssertionError: Actual type is not the same as expected type , and instead is type . Actual value is {3.1: [0], 4.0: [4], 8.0: [1], 10.0: [3], 12.0: [2]}",failed -16583,tests.integ.modin.groupby.test_groupby_first_last,test_error_checking,Failed: DID NOT RAISE ,failed -16586,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_self[include_groups_False-dropna_False-sort_False-group_keys_True-transform_returns_dataframe],TypeError: must pass an index to rename,failed -16587,tests.integ.modin.frame.test_loc,test_df_loc_set_general_col_key_type[series-row_key1-col_key2],"AssertionError: DataFrame.iloc[:, 4] (column name=""Y"") are different +13866,tests.integ.modin.groupby.test_all_any,"test_all_any_invalid_types[data1-invalid\\ type\\ \\[TO_BOOLEAN\\(""values""\\.""value""\\)\\]\\ for\\ parameter\\ 'TO_BOOLEAN']",Failed: DID NOT RAISE ,failed +13868,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_self[include_groups_False-dropna_False-sort_False-group_keys_True-non_transform_returns_dataframe],AssertionError,failed +13872,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col13-row9],AssertionError,failed +13876,tests.integ.modin.groupby.test_all_any,test_timedelta_any_with_nulls,"AssertionError: DataFrame.iloc[:, 0] (column name=""A"") are different -DataFrame.iloc[:, 4] (column name=""Y"") values are different (100.0 %) -[index]: [0, 1, 2] -[left]: [1, 4, 7] -[right]: [nan, nan, nan]",failed -16591,tests.integ.modin.groupby.test_groupby_dataframe_cumulative,test_groupby_cumlative_non_numeric[cumsum-0],"NotImplementedError: function is not implemented for this dtype: [how->cumsum,dtype->object]",failed -16592,tests.integ.modin.groupby.test_groupby_size,test_groupby_agg_size[size-False-col6_mixed],"TypeError: Must provide 'func' or tuples of '(column, aggfunc).",failed -16595,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_self[include_groups_False-dropna_False-sort_False-group_keys_True-non_transform_returns_series],"AssertionError: Series are different +DataFrame.iloc[:, 0] (column name=""A"") values are different (100.0 %) +[index]: [a] +[left]: [True] +[right]: [False]",failed +13879,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col13-row10],AssertionError,failed +13883,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col13-row11],AssertionError,failed +13889,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col13-row12],AssertionError: Got type: ,failed +13891,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_self[include_groups_False-dropna_False-sort_False-group_keys_True-transform_returns_dataframe],TypeError: must pass an index to rename,failed +13895,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col13-row13],AssertionError: Got type: ,failed +13897,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_self[include_groups_False-dropna_False-sort_False-group_keys_True-non_transform_returns_series],"AssertionError: Series are different Series length are different [left]: 3, Index(['sum', 'mean', 'name'], dtype='object', name='custom_metrics') @@ -9877,17 +8351,13 @@ Series length are different (2, 'mean'), (2, 'name')], )",failed -16602,tests.integ.modin.groupby.test_groupby_size,test_groupby_agg_size[size-False-col7_bool],"TypeError: Must provide 'func' or tuples of '(column, aggfunc).",failed -16604,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_self[include_groups_False-dropna_False-sort_False-group_keys_True-transform_returns_series],"AssertionError: MultiIndex level [0] are different +13900,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_self[include_groups_False-dropna_False-sort_False-group_keys_True-transform_returns_series],"AssertionError: MultiIndex level [0] are different Attribute ""names"" are different [left]: ['__reduced__'] [right]: [None]",failed -16605,tests.integ.modin.frame.test_diff,test_df_diff_bools_as_variants,TypeError: unsupported operand type for -: got object,failed -16607,tests.integ.modin.frame.test_diff,test_df_diff_bools_as_variants_and_ints[0],TypeError: unsupported operand type for -: got object,failed -16608,tests.integ.modin.frame.test_diff,test_df_diff_bools_as_variants_and_ints[1],TypeError: unsupported operand type for -: got object,failed -16610,tests.integ.modin.groupby.test_groupby_size,test_groupby_agg_size[size-False-col8_bool_missing],"TypeError: Must provide 'func' or tuples of '(column, aggfunc).",failed -16611,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_self[include_groups_False-dropna_False-sort_False-group_keys_True-return_scalar],"AssertionError: Series are different +13903,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_non_boolean_list_tuple_key[col13-row14],AssertionError,failed +13907,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_self[include_groups_False-dropna_False-sort_False-group_keys_True-return_scalar],"AssertionError: Series are different Series values are different (100.0 %) [index]: [0, 1, 2] @@ -9902,46 +8372,18 @@ dtype: float64_2] At positional index 0, first diff: __reduced__ 0 dtype: int64___reduced__ 0.0 dtype: float64_0 != 0_0.0_0",failed -16612,tests.integ.modin.frame.test_diff,test_df_diff_bools_and_ints_as_variants[0],TypeError: unsupported operand type for -: got object,failed -16613,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_True-dropna_True-basic_snowpark_pandas_df_with_missing_values-index_cols10-col3-None-indices],"AssertionError: Actual type is not the same as expected type , and instead is type . Actual value is {3.1: [0], 4.0: [4], 8.0: [1], 10.0: [3], 12.0: [2]}",failed -16614,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_True-dropna_True-basic_snowpark_pandas_df_with_missing_values-index_cols12-None-level12-indices],ValueError: Cannot remove 2 levels from an index with 2 levels: at least one level must be left.,failed -16615,tests.integ.modin.frame.test_diff,test_df_diff_bools_and_ints_as_variants[1],TypeError: unsupported operand type for -: got object,failed -16616,tests.integ.modin.frame.test_diff,test_df_diff_custom_variant_type_negative,TypeError: unsupported operand type for -: got object,failed -16617,tests.integ.modin.groupby.test_groupby_dataframe_cumulative,test_groupby_cumlative_non_numeric[cummin-1],"NotImplementedError: function is not implemented for this dtype: [how->cummin,dtype->object]",failed -16618,tests.integ.modin.frame.test_diff,test_df_diff_mixed_variant_columns[0],TypeError: unsupported operand type for -: got object,failed -16619,tests.integ.modin.frame.test_merge,test_merge_left_on_right_on[left-False-left_i-right_i],KeyError: 'right_i',failed -16620,tests.integ.modin.frame.test_diff,test_df_diff_mixed_variant_columns[1],TypeError: unsupported operand type for -: got object,failed -16621,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_self[include_groups_False-dropna_False-sort_False-group_keys_False-non_transform_returns_dataframe],AssertionError,failed -16622,tests.integ.modin.groupby.test_groupby_size,test_groupby_agg_size[size-False-col9_int_missing],"TypeError: Must provide 'func' or tuples of '(column, aggfunc).",failed -16623,tests.integ.modin.frame.test_diff,test_df_diff_bool_df_with_missing_values[0],TypeError: unsupported operand type for -: got object,failed -16625,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_True-dropna_False-basic_snowpark_pandas_df-None-col1-None-groups],"AssertionError: Actual dict has the wrong key at position 0. Actual key 0 is not equal to expected key 2. -Actual dict: {0: [3, 5], 1: [1, 2], 2: [0, 4]} -Expected dict: {2: [0, 4], 1: [1, 2], 0: [3, 5]}",failed -16626,tests.integ.modin.frame.test_diff,test_df_diff_bool_df_with_missing_values[1],TypeError: unsupported operand type for -: got object,failed -16627,tests.integ.modin.frame.test_diff,test_df_diff_string_type_negative,"AssertionError: Regex pattern did not match. - Regex: ""Numeric value 'a' is not recognized"" - Input: 'unsupported operand type for -: got object'",failed -16628,tests.integ.modin.groupby.test_groupby_size,test_groupby_agg_size[size-False-col10_mixed_missing],"TypeError: Must provide 'func' or tuples of '(column, aggfunc).",failed -16630,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_True-dropna_True-basic_snowpark_pandas_df_with_missing_values-index_cols11-None-level11-groups],ValueError: Cannot remove 2 levels from an index with 2 levels: at least one level must be left.,failed -16632,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_True-dropna_False-basic_snowpark_pandas_df-None-col1-None-indices],"AssertionError: Actual dict has the wrong key at position 0. Actual key 0 is not equal to expected key 2. -Actual dict: {0: array([3, 5]), 1: array([1, 2]), 2: array([0, 4])} -Expected dict: {2: array([0, 4]), 1: array([1, 2]), 0: array([3, 5])}",failed -16633,tests.integ.modin.frame.test_loc,test_df_loc_set_general_col_key_type[series-row_key1-col_key6],"AssertionError: DataFrame are different - -DataFrame shape mismatch -[left]: (3, 8) -[right]: (3, 4)",failed -16634,tests.integ.modin.groupby.test_groupby_dataframe_cumulative,test_groupby_cumlative_non_numeric[cummax-1],"NotImplementedError: function is not implemented for this dtype: [how->cummax,dtype->object]",failed -16635,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_self[include_groups_False-dropna_False-sort_False-group_keys_False-transform_returns_dataframe],TypeError: must pass an index to rename,failed -16637,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_self[include_groups_False-dropna_False-sort_False-group_keys_False-non_transform_returns_series],"AssertionError: Series are different +13912,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_self[include_groups_False-dropna_False-sort_False-group_keys_False-non_transform_returns_dataframe],AssertionError,failed +13917,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_boolean_series_row_key,KeyError: False,failed +13926,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_self[include_groups_False-dropna_False-sort_False-group_keys_False-transform_returns_dataframe],TypeError: must pass an index to rename,failed +13931,tests.integ.modin.frame.test_set_index,test_set_index_pass_arrays_duplicate[False-True-frame_of_ints-Index-Index],"TypeError: The parameter ""keys"" may be a column key, one-dimensional array, or a list containing only valid column keys and one-dimensional arrays. Received column of type ",failed +13932,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_self[include_groups_False-dropna_False-sort_False-group_keys_False-non_transform_returns_series],"AssertionError: Series are different Series length are different [left]: 3, Index(['sum', 'mean', 'name'], dtype='object', name='custom_metrics') [right]: 9, Index(['sum', 'mean', 'name', 'sum', 'mean', 'name', 'sum', 'mean', 'name'], dtype='object')",failed -16638,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_True-dropna_True-basic_snowpark_pandas_df_with_missing_values-index_cols11-None-level11-indices],ValueError: Cannot remove 2 levels from an index with 2 levels: at least one level must be left.,failed -16639,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_self[include_groups_False-dropna_False-sort_False-group_keys_False-transform_returns_series],[XPASS(strict)] SNOW-1238546,failed -16640,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_True-dropna_False-basic_snowpark_pandas_df-None-by1-None-groups],KeyError: 'col1',failed -16641,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_self[include_groups_False-dropna_False-sort_False-group_keys_False-return_scalar],"AssertionError: Series are different +13933,tests.integ.modin.frame.test_loc,test_mi_df_loc_get_boolean_series_col_key,KeyError: False,failed +13937,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_self[include_groups_False-dropna_False-sort_False-group_keys_False-transform_returns_series],[XPASS(strict)] SNOW-1238546,failed +13943,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_self[include_groups_False-dropna_False-sort_False-group_keys_False-return_scalar],"AssertionError: Series are different Series values are different (100.0 %) [index]: [0, 1, 2] @@ -9956,47 +8398,20 @@ dtype: float64_2] At positional index 0, first diff: __reduced__ 0 dtype: int64___reduced__ 0.0 dtype: float64_0 != 0_0.0_0",failed -16642,tests.integ.modin.groupby.test_groupby_get_group,test_groupby_get_group[col1_grp],Failed: DID NOT RAISE ,failed -16643,tests.integ.modin.frame.test_loc,test_df_loc_set_general_col_key_type[series-row_key1-col_key8],"AssertionError: DataFrame.iloc[:, 0] (column name=""D"") are different - -DataFrame.iloc[:, 0] (column name=""D"") values are different (100.0 %) -[index]: [0, 1, 2] -[left]: [nan, nan, nan] -[right]: [1.0, 4.0, 7.0] -At positional index 0, first diff: nan != 1.0",failed -16644,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_external_by[include_groups_True-dropna_True-sort_True-group_keys_True-non_transform_returns_dataframe],AssertionError,failed -16645,tests.integ.modin.groupby.test_groupby_get_group,test_groupby_get_group[col2_int64],Failed: DID NOT RAISE ,failed -16646,tests.integ.modin.frame.test_merge,test_merge_left_on_right_on[left-False-left_i-A],KeyError: 'left_i',failed -16647,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_True-dropna_False-basic_snowpark_pandas_df-None-by1-None-indices],KeyError: 'col1',failed -16648,tests.integ.modin.groupby.test_groupby_size,test_groupby_agg_size[size-False-by9],"TypeError: Must provide 'func' or tuples of '(column, aggfunc).",failed -16649,tests.integ.modin.groupby.test_groupby_get_group,test_groupby_get_group[col3_int_identical],Failed: DID NOT RAISE ,failed -16650,tests.integ.modin.groupby.test_groupby_size,test_groupby_agg_size[size-False-by10],"TypeError: Must provide 'func' or tuples of '(column, aggfunc).",failed -16651,tests.integ.modin.groupby.test_groupby_get_group,test_groupby_get_group[col4_int32],Failed: DID NOT RAISE ,failed -16652,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_True-dropna_False-basic_snowpark_pandas_df-col3-col1-None-groups],"AssertionError: Actual dict has the wrong key at position 0. Actual key 0 is not equal to expected key 2. -Actual dict: {0: [10.0, 1.1], 1: [8.0, 12.0], 2: [3.1, 4.0]} -Expected dict: {2: [3.1, 4.0], 1: [8.0, 12.0], 0: [10.0, 1.1]}",failed -16653,tests.integ.modin.frame.test_loc,test_df_loc_set_general_col_key_type[series-row_key1-col_key9],"KeyError: array(['1', '2'], dtype=',failed -16657,tests.integ.modin.groupby.test_groupby_get_group,test_groupby_get_group[col7_bool],Failed: DID NOT RAISE ,failed -16658,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_True-dropna_False-basic_snowpark_pandas_df-col3-col1-None-indices],"AssertionError: Actual dict has the wrong key at position 0. Actual key 0 is not equal to expected key 2. -Actual dict: {0: array([3, 5]), 1: array([1, 2]), 2: array([0, 4])} -Expected dict: {2: array([0, 4]), 1: array([1, 2]), 0: array([3, 5])}",failed -16660,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_True-dropna_True-basic_snowpark_pandas_df_with_missing_values-index_cols12-None-level12-groups],ValueError: Cannot remove 2 levels from an index with 2 levels: at least one level must be left.,failed -16661,tests.integ.modin.groupby.test_groupby_get_group,test_groupby_get_group[col8_bool_missing],Failed: DID NOT RAISE ,failed -16662,tests.integ.modin.frame.test_merge,test_merge_left_on_right_on[left-False-B-right_i],KeyError: 'right_i',failed -16666,tests.integ.modin.frame.test_loc,test_df_loc_set_general_col_key_type[series-row_key1-col_key10],"KeyError: array(['E', 1, 'X', 2], dtype=object)",failed -16668,tests.integ.modin.groupby.test_groupby_get_group,test_groupby_get_group[col9_int_missing],Failed: DID NOT RAISE ,failed -16674,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_True-dropna_False-basic_snowpark_pandas_df-col3-by3-None-groups],KeyError: 'col1',failed -16676,tests.integ.modin.groupby.test_groupby_get_group,test_groupby_get_group[col10_mixed_missing],Failed: DID NOT RAISE ,failed -16694,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_True-dropna_True-basic_snowpark_pandas_df_with_missing_values-index_cols12-None-level12-indices],ValueError: Cannot remove 2 levels from an index with 2 levels: at least one level must be left.,failed -16700,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_external_by[include_groups_True-dropna_True-sort_True-group_keys_True-transform_returns_dataframe],TypeError: must pass an index to rename,failed -16705,tests.integ.modin.frame.test_loc,test_df_loc_set_general_col_key_type_with_duplicate_columns[series-col_key1],"AssertionError: DataFrame.iloc[:, 0] (column name=""A"") are different +13950,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_external_by[include_groups_True-dropna_True-sort_True-group_keys_True-non_transform_returns_dataframe],AssertionError,failed +13973,tests.integ.modin.frame.test_mask,test_dataframe_mask_cond_non_boolean_negative_test,TypeError: bad operand type for unary ~: 'str',failed +13977,tests.integ.modin.frame.test_mask,test_dataframe_mask_cond_is_none_negative,AssertionError: exception type does not match with expected type ,failed +13986,tests.integ.modin.frame.test_mask,test_dataframe_mask_not_implemented,Failed: DID NOT RAISE ,failed +13992,tests.integ.modin.frame.test_loc,test_df_loc_set_series_row_key[row_key0],"AssertionError: DataFrame.iloc[:, 0] (column name=""A"") are different -DataFrame.iloc[:, 0] (column name=""A"") values are different (100.0 %) +DataFrame.iloc[:, 0] (column name=""A"") values are different (33.33333 %) [index]: [0, 1, 2] -[left]: [1, 4, 7] -[right]: [nan, 7.0, 4.0]",failed -16710,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_external_by[include_groups_True-dropna_True-sort_True-group_keys_True-non_transform_returns_series],"AssertionError: Series are different +[left]: [nan, 4.0, 50.0] +[right]: [nan, 4.0, 40.0] +At positional index 2, first diff: 50.0 != 40.0",failed +14007,tests.integ.modin.frame.test_to_dynamic_table,test_to_dynamic_table_index[method-False-None-expected_index_columns2],"NotImplementedError: Modin supports the method DataFrame.to_dynamic_table on the Snowflake backend, but not on the backend Pandas.",failed +14012,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_external_by[include_groups_True-dropna_True-sort_True-group_keys_True-transform_returns_dataframe],TypeError: must pass an index to rename,failed +14019,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_external_by[include_groups_True-dropna_True-sort_True-group_keys_True-non_transform_returns_series],"AssertionError: Series are different Series length are different [left]: 3, Index(['sum', 'mean', 'name'], dtype='object', name='custom_metrics') @@ -10007,11 +8422,8 @@ Series length are different ('b', 'mean'), ('b', 'name')], )",failed -16711,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_True-dropna_False-basic_snowpark_pandas_df-col3-by3-None-indices],KeyError: 'col1',failed -16716,tests.integ.modin.frame.test_merge,test_merge_left_on_right_on[left-False-left_on9-right_on9],KeyError: 'right_i',failed -16718,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_external_by[include_groups_True-dropna_True-sort_True-group_keys_True-transform_returns_series],[XPASS(strict)] SNOW-1238546,failed -16725,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_True-dropna_False-basic_snowpark_pandas_df-None-col1-None-indices],TypeError: assert_array_equal() got an unexpected keyword argument 'strict',failed -16726,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_external_by[include_groups_True-dropna_True-sort_True-group_keys_True-return_scalar],"AssertionError: Series are different +14023,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_external_by[include_groups_True-dropna_True-sort_True-group_keys_True-transform_returns_series],[XPASS(strict)] SNOW-1238546,failed +14027,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_external_by[include_groups_True-dropna_True-sort_True-group_keys_True-return_scalar],"AssertionError: Series are different Series values are different (100.0 %) [index]: [a, b] @@ -10024,62 +8436,16 @@ dtype: float64_b] At positional index 0, first diff: __reduced__ 1 dtype: int64___reduced__ 0.5 dtype: float64_a != 1_0.5_a",failed -16727,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_True-dropna_False-basic_snowpark_pandas_df-index_cols4-col1-None-groups],"AssertionError: Actual dict has the wrong key at position 0. Actual key 0 is not equal to expected key 2. -Actual dict: {0: [(10.0, 15), (1.1, 6)], 1: [(8.0, 3), (12.0, 16)], 2: [(3.1, 17), (4.0, 5)]} -Expected dict: {2: [(3.1, 17), (4.0, 5)], 1: [(8.0, 3), (12.0, 16)], 0: [(10.0, 15), (1.1, 6)]}",failed -16735,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_external_by[include_groups_True-dropna_True-sort_True-group_keys_False-non_transform_returns_dataframe],AssertionError,failed -16736,tests.integ.modin.frame.test_drop,test_drop_invalid_labels_axis1_negative[labels \\['blue'\\] not found in axis-blue-None],"AssertionError: Regex pattern did not match. - Regex: ""labels \\['blue'\\] not found in axis"" - Input: '""labels Index([\'blue\'], dtype=\'object\') not contained in axis""'",failed -16737,tests.integ.modin.groupby.test_groupby_size,test_groupby_agg_size[len-False-col1_grp],"TypeError: Must provide 'func' or tuples of '(column, aggfunc).",failed -16739,tests.integ.modin.groupby.test_groupby_get_group,test_groupby_get_group_with_list,ValueError: must supply a tuple to get_group with multiple grouping keys,failed -16740,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_True-dropna_False-basic_snowpark_pandas_df-index_cols4-col1-None-indices],"AssertionError: Actual dict has the wrong key at position 0. Actual key 0 is not equal to expected key 2. -Actual dict: {0: array([3, 5]), 1: array([1, 2]), 2: array([0, 4])} -Expected dict: {2: array([0, 4]), 1: array([1, 2]), 0: array([3, 5])}",failed -16742,tests.integ.modin.groupby.test_groupby_size,test_groupby_agg_size[len-False-col2_int64],"TypeError: Must provide 'func' or tuples of '(column, aggfunc).",failed -16743,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_True-dropna_False-basic_snowpark_pandas_df-None-by1-None-groups],KeyError: 'col1',failed -16748,tests.integ.modin.frame.test_drop,test_drop_invalid_labels_axis1_negative[labels \\[3\\] not found in axis-3-None],"AssertionError: Regex pattern did not match. - Regex: 'labels \\[3\\] not found in axis' - Input: '""labels Index([3], dtype=\'int64\') not contained in axis""'",failed -16749,tests.integ.modin.frame.test_drop,"test_drop_invalid_labels_axis1_negative[labels \\[\\(1, 2\\)\\] not found in axis-labels7-None]","AssertionError: Regex pattern did not match. - Regex: 'labels \\[\\(1, 2\\)\\] not found in axis' - Input: '""labels Index([1, 2], dtype=\'int64\') not contained in axis""'",failed -16751,tests.integ.modin.frame.test_drop,"test_drop_invalid_labels_axis1_negative[labels \\[1, 2, 3\\] not found in axis-labels8-None]","AssertionError: Regex pattern did not match. - Regex: 'labels \\[1, 2, 3\\] not found in axis' - Input: '""labels Index([1, 2, 3], dtype=\'int64\') not contained in axis""'",failed -16752,tests.integ.modin.groupby.test_groupby_size,test_groupby_agg_size[len-False-col3_int_identical],"TypeError: Must provide 'func' or tuples of '(column, aggfunc).",failed -16754,tests.integ.modin.frame.test_drop,test_drop_invalid_labels_axis1_negative[labels \\['blue'\\] not found in axis-labels9-None],"AssertionError: Regex pattern did not match. - Regex: ""labels \\['blue'\\] not found in axis"" - Input: '""labels Index([\'blue\', \'red\'], dtype=\'object\') not contained in axis""'",failed -16758,tests.integ.modin.frame.test_drop,test_drop_invalid_labels_axis0_negative[labels \\[None\\] not found in axis-labels0-None-1],"AssertionError: Regex pattern did not match. - Regex: 'labels \\[None\\] not found in axis' - Input: '""labels Index([None], dtype=\'object\') not contained in axis""'",failed -16759,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_True-dropna_False-basic_snowpark_pandas_df-index_cols5-by5-None-groups],KeyError: 'col1',failed -16762,tests.integ.modin.groupby.test_groupby_size,test_groupby_agg_size[len-False-col4_int32],"TypeError: Must provide 'func' or tuples of '(column, aggfunc).",failed -16765,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_external_by[include_groups_True-dropna_True-sort_True-group_keys_False-transform_returns_dataframe],TypeError: must pass an index to rename,failed -16767,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_True-dropna_False-basic_snowpark_pandas_df-None-by1-None-indices],KeyError: 'col1',failed -16771,tests.integ.modin.groupby.test_groupby_size,test_groupby_agg_size[len-False-col6_mixed],"TypeError: Must provide 'func' or tuples of '(column, aggfunc).",failed -16772,tests.integ.modin.frame.test_drop,test_drop_invalid_labels_axis0_negative[labels \\[4\\] not found in axis-4-None-1],"AssertionError: Regex pattern did not match. - Regex: 'labels \\[4\\] not found in axis' - Input: '""labels Index([4], dtype=\'int64\') not contained in axis""'",failed -16775,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_external_by[include_groups_True-dropna_True-sort_True-group_keys_False-non_transform_returns_series],"AssertionError: Series are different +14031,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_external_by[include_groups_True-dropna_True-sort_True-group_keys_False-non_transform_returns_dataframe],AssertionError,failed +14050,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_external_by[include_groups_True-dropna_True-sort_True-group_keys_False-transform_returns_dataframe],TypeError: must pass an index to rename,failed +14052,tests.integ.modin.frame.test_loc,test_df_loc_set_series_row_key[row_key2],IndexError: index 3 is out of bounds for axis 0 with size 3,failed +14056,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_external_by[include_groups_True-dropna_True-sort_True-group_keys_False-non_transform_returns_series],"AssertionError: Series are different Series length are different [left]: 3, Index(['sum', 'mean', 'name'], dtype='object', name='custom_metrics') [right]: 6, Index(['sum', 'mean', 'name', 'sum', 'mean', 'name'], dtype='object')",failed -16776,tests.integ.modin.frame.test_drop,"test_drop_invalid_labels_axis0_negative[labels \\[\\(1, 2\\)\\] not found in axis-labels6-None-1]","AssertionError: Regex pattern did not match. - Regex: 'labels \\[\\(1, 2\\)\\] not found in axis' - Input: '""labels Index([1, 2], dtype=\'int64\') not contained in axis""'",failed -16778,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_external_by[include_groups_True-dropna_True-sort_True-group_keys_False-transform_returns_series],[XPASS(strict)] SNOW-1238546,failed -16781,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_True-dropna_False-basic_snowpark_pandas_df-index_cols5-by5-None-indices],KeyError: 'col1',failed -16782,tests.integ.modin.frame.test_drop,"test_drop_invalid_labels_axis0_negative[labels \\[4, 5, 7\\] not found in axis-labels7-None-3]","AssertionError: Regex pattern did not match. - Regex: 'labels \\[4, 5, 7\\] not found in axis' - Input: '""labels Index([4, 5, 7], dtype=\'int64\') not contained in axis""'",failed -16784,tests.integ.modin.groupby.test_groupby_size,test_groupby_agg_size[len-False-col7_bool],"TypeError: Must provide 'func' or tuples of '(column, aggfunc).",failed -16785,tests.integ.modin.frame.test_drop,test_drop_invalid_labels_axis0_negative[labels \\[7\\] not found in axis-labels8-None-2],"AssertionError: Regex pattern did not match. - Regex: 'labels \\[7\\] not found in axis' - Input: '""labels Index([1, 7], dtype=\'int64\') not contained in axis""'",failed -16787,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_external_by[include_groups_True-dropna_True-sort_True-group_keys_False-return_scalar],"AssertionError: Series are different +14059,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_external_by[include_groups_True-dropna_True-sort_True-group_keys_False-transform_returns_series],[XPASS(strict)] SNOW-1238546,failed +14067,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_external_by[include_groups_True-dropna_True-sort_True-group_keys_False-return_scalar],"AssertionError: Series are different Series values are different (100.0 %) [index]: [a, b] @@ -10092,32 +8458,22 @@ dtype: float64_b] At positional index 0, first diff: __reduced__ 1 dtype: int64___reduced__ 0.5 dtype: float64_a != 1_0.5_a",failed -16794,tests.integ.modin.groupby.test_groupby_getitem,test_groupby_getitem[col5_int16-False-col1_grp],"assert False - + where False = isinstance(, ModinSerGroupBy)",failed -16797,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_True-dropna_False-basic_snowpark_pandas_df-col3-col1-None-indices],TypeError: assert_array_equal() got an unexpected keyword argument 'strict',failed -16798,tests.integ.modin.groupby.test_groupby_size,test_groupby_agg_size[len-False-col8_bool_missing],"TypeError: Must provide 'func' or tuples of '(column, aggfunc).",failed -16799,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_external_by[include_groups_True-dropna_True-sort_False-group_keys_True-non_transform_returns_dataframe],AssertionError,failed -16803,tests.integ.modin.groupby.test_groupby_getitem,test_groupby_getitem[col5_int16-False-by1],"assert False - + where False = isinstance(, ModinSerGroupBy)",failed -16811,tests.integ.modin.groupby.test_groupby_getitem,test_groupby_getitem[col5_int16-False-by2],"assert False - + where False = isinstance(, ModinSerGroupBy)",failed -16818,tests.integ.modin.groupby.test_groupby_size,test_groupby_agg_size[len-False-col9_int_missing],"TypeError: Must provide 'func' or tuples of '(column, aggfunc).",failed -16821,tests.integ.modin.frame.test_drop,test_drop_invalid_axis0_labels_errors_ignore[labels5-None],"AssertionError: DataFrame are different +14072,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_external_by[include_groups_True-dropna_True-sort_False-group_keys_True-non_transform_returns_dataframe],AssertionError,failed +14075,tests.integ.modin.frame.test_loc,test_df_loc_set_series_row_key[row_key3],ValueError: Incompatible indexer with DataFrame,failed +14080,tests.integ.modin.frame.test_mask,test_dataframe_mask_with_dataframe_cond_single_index_different_names_2,"AssertionError: DataFrame.index are different -DataFrame shape mismatch -[left]: (3, 2) -[right]: (1, 2)",failed -16826,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_True-dropna_False-basic_snowpark_pandas_df-None-None-0-indices],TypeError: assert_array_equal() got an unexpected keyword argument 'strict',failed -16831,tests.integ.modin.frame.test_drop,test_drop_preserve_index_names,"KeyError: ""labels Index(['red'], dtype='object') not contained in axis""",failed -16836,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_True-dropna_False-basic_snowpark_pandas_df-col3-by3-None-groups],KeyError: 'col1',failed -16838,tests.integ.modin.groupby.test_groupby_size,test_groupby_agg_size[len-False-col10_mixed_missing],"TypeError: Must provide 'func' or tuples of '(column, aggfunc).",failed -16846,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_True-dropna_False-basic_snowpark_pandas_df-col3-col3-None-groups],"AssertionError: Actual dict has the wrong key at position 0. Actual key 1.1 is not equal to expected key 3.1. -Actual dict: {1.1: [1.1], 3.1: [3.1], 4.0: [4.0], 8.0: [8.0], 10.0: [10.0], 12.0: [12.0]} -Expected dict: {3.1: [3.1], 8.0: [8.0], 12.0: [12.0], 10.0: [10.0], 4.0: [4.0], 1.1: [1.1]}",failed -16849,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_external_by[include_groups_True-dropna_True-sort_False-group_keys_True-transform_returns_dataframe],TypeError: must pass an index to rename,failed -16854,tests.integ.modin.groupby.test_groupby_size,test_groupby_agg_size[len-False-by9],"TypeError: Must provide 'func' or tuples of '(column, aggfunc).",failed -16856,tests.integ.modin.frame.test_drop,test_mixed_depth_drop[0-a],"KeyError: ""labels Index(['a'], dtype='object') not contained in axis""",failed -16860,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_external_by[include_groups_True-dropna_True-sort_False-group_keys_True-non_transform_returns_series],"AssertionError: Series are different +Attribute ""names"" are different +[left]: [None] +[right]: ['B']",failed +14089,tests.integ.modin.frame.test_loc,test_df_loc_set_series_row_key[row_key4],"AssertionError: DataFrame.iloc[:, 0] (column name=""A"") are different + +DataFrame.iloc[:, 0] (column name=""A"") values are different (66.66667 %) +[index]: [0, 1, 2] +[left]: [nan, 80.0, 50.0] +[right]: [nan, 70.0, 40.0] +At positional index 1, first diff: 80.0 != 70.0",failed +14101,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_external_by[include_groups_True-dropna_True-sort_False-group_keys_True-transform_returns_dataframe],TypeError: must pass an index to rename,failed +14107,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_external_by[include_groups_True-dropna_True-sort_False-group_keys_True-non_transform_returns_series],"AssertionError: Series are different Series length are different [left]: 3, Index(['sum', 'mean', 'name'], dtype='object', name='custom_metrics') @@ -10128,16 +8484,15 @@ Series length are different ('b', 'mean'), ('b', 'name')], )",failed -16861,tests.integ.modin.frame.test_drop,test_mixed_depth_drop[0-labels1],"KeyError: ""labels Index(['', 'a'], dtype='object') not contained in axis""",failed -16863,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_True-dropna_False-basic_snowpark_pandas_df-col3-col3-None-indices],"AssertionError: Actual dict has the wrong key at position 0. Actual key 1.1 is not equal to expected key 3.1. -Actual dict: {1.1: array([5]), 3.1: array([0]), 4.0: array([4]), 8.0: array([1]), 10.0: array([3]), 12.0: array([2])} -Expected dict: {3.1: array([0]), 8.0: array([1]), 12.0: array([2]), 10.0: array([3]), 4.0: array([4]), 1.1: array([5])}",failed -16866,tests.integ.modin.groupby.test_groupby_size,test_groupby_agg_size[len-False-by10],"TypeError: Must provide 'func' or tuples of '(column, aggfunc).",failed -16867,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_external_by[include_groups_True-dropna_True-sort_False-group_keys_True-transform_returns_series],[XPASS(strict)] SNOW-1238546,failed -16868,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_True-dropna_False-basic_snowpark_pandas_df-col3-by3-None-indices],KeyError: 'col1',failed -16869,tests.integ.modin.frame.test_drop,test_mixed_depth_drop[0-labels2],"KeyError: ""labels Index(['top'], dtype='object') not contained in axis""",failed -16871,tests.integ.modin.groupby.test_groupby_size,test_error_checking,Failed: DID NOT RAISE ,failed -16875,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_external_by[include_groups_True-dropna_True-sort_False-group_keys_True-return_scalar],"AssertionError: Series are different +14111,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_external_by[include_groups_True-dropna_True-sort_False-group_keys_True-transform_returns_series],[XPASS(strict)] SNOW-1238546,failed +14116,tests.integ.modin.frame.test_loc,test_df_loc_set_series_row_key[row_key6],"AssertionError: DataFrame.iloc[:, 0] (column name=""A"") are different + +DataFrame.iloc[:, 0] (column name=""A"") values are different (66.66667 %) +[index]: [0, 1, 2] +[left]: [nan, 80.0, 50.0] +[right]: [nan, 70.0, 40.0] +At positional index 1, first diff: 80.0 != 70.0",failed +14118,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_external_by[include_groups_True-dropna_True-sort_False-group_keys_True-return_scalar],"AssertionError: Series are different Series values are different (100.0 %) [index]: [a, b] @@ -10150,49 +8505,59 @@ dtype: float64_b] At positional index 0, first diff: __reduced__ 1 dtype: int64___reduced__ 0.5 dtype: float64_a != 1_0.5_a",failed -16876,tests.integ.modin.groupby.test_groupby_size,test_multiindex_negative,Failed: DID NOT RAISE ,failed -16877,tests.integ.modin.frame.test_drop,test_mixed_depth_drop[0-labels4],"KeyError: ""labels Index(['OD', 'top', 'wx'], dtype='object') not contained in axis""",failed -16880,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_True-dropna_False-basic_snowpark_pandas_df-col3-None-0-groups],"AssertionError: Actual dict has the wrong key at position 0. Actual key 1.1 is not equal to expected key 3.1. -Actual dict: {1.1: [1.1], 3.1: [3.1], 4.0: [4.0], 8.0: [8.0], 10.0: [10.0], 12.0: [12.0]} -Expected dict: {3.1: [3.1], 8.0: [8.0], 12.0: [12.0], 10.0: [10.0], 4.0: [4.0], 1.1: [1.1]}",failed -16884,tests.integ.modin.frame.test_drop,test_mixed_depth_drop[1-a],"KeyError: ""labels Index(['a'], dtype='object') not contained in axis""",failed -16886,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_external_by[include_groups_True-dropna_True-sort_False-group_keys_False-non_transform_returns_dataframe],AssertionError,failed -16888,tests.integ.modin.frame.test_merge,test_merge_left_on_right_on[inner-True-left_i-right_i],KeyError: 'right_i',failed -16892,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_True-dropna_False-basic_snowpark_pandas_df-col3-None-0-indices],"AssertionError: Actual dict has the wrong key at position 0. Actual key 1.1 is not equal to expected key 3.1. -Actual dict: {1.1: array([5]), 3.1: array([0]), 4.0: array([4]), 8.0: array([1]), 10.0: array([3]), 12.0: array([2])} -Expected dict: {3.1: array([0]), 8.0: array([1]), 12.0: array([2]), 10.0: array([3]), 4.0: array([4]), 1.1: array([5])}",failed -16896,tests.integ.modin.frame.test_drop,test_mixed_depth_drop[1-labels1],"KeyError: ""labels Index(['', 'a'], dtype='object') not contained in axis""",failed -16897,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_True-dropna_False-basic_snowpark_pandas_df-index_cols4-col1-None-indices],TypeError: assert_array_equal() got an unexpected keyword argument 'strict',failed -16898,tests.integ.modin.frame.test_drop,test_mixed_depth_drop[1-labels2],"KeyError: ""labels Index(['top'], dtype='object') not contained in axis""",failed -16903,tests.integ.modin.frame.test_drop,test_mixed_depth_drop[1-labels4],"KeyError: ""labels Index(['OD', 'top', 'wx'], dtype='object') not contained in axis""",failed -16904,tests.integ.modin.frame.test_drop,test_drop_level[0-a-None],"KeyError: ""labels Index(['a'], dtype='object') not contained in axis""",failed -16906,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_True-dropna_False-basic_snowpark_pandas_df-col3-None-col3-groups],"AssertionError: Actual dict has the wrong key at position 0. Actual key 1.1 is not equal to expected key 3.1. -Actual dict: {1.1: [1.1], 3.1: [3.1], 4.0: [4.0], 8.0: [8.0], 10.0: [10.0], 12.0: [12.0]} -Expected dict: {3.1: [3.1], 8.0: [8.0], 12.0: [12.0], 10.0: [10.0], 4.0: [4.0], 1.1: [1.1]}",failed -16918,tests.integ.modin.frame.test_merge,test_merge_left_on_right_on[inner-True-left_i-A],KeyError: 'left_i',failed -16919,tests.integ.modin.frame.test_drop,test_drop_level[1-a-None],"KeyError: ""labels Index(['a'], dtype='object') not contained in axis""",failed -16924,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_True-dropna_False-basic_snowpark_pandas_df-col3-None-col3-indices],"AssertionError: Actual dict has the wrong key at position 0. Actual key 1.1 is not equal to expected key 3.1. -Actual dict: {1.1: array([5]), 3.1: array([0]), 4.0: array([4]), 8.0: array([1]), 10.0: array([3]), 12.0: array([2])} -Expected dict: {3.1: array([0]), 8.0: array([1]), 12.0: array([2]), 10.0: array([3]), 4.0: array([4]), 1.1: array([5])}",failed -16926,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_True-dropna_False-basic_snowpark_pandas_df-index_cols5-by5-None-groups],KeyError: 'col1',failed -16937,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_True-dropna_False-basic_snowpark_pandas_df-index_cols10-col3-None-groups],"AssertionError: Actual dict has the wrong key at position 0. Actual key 1.1 is not equal to expected key 3.1. -Actual dict: {1.1: [(1.1, 6)], 3.1: [(3.1, 17)], 4.0: [(4.0, 5)], 8.0: [(8.0, 3)], 10.0: [(10.0, 15)], 12.0: [(12.0, 16)]} -Expected dict: {3.1: [(3.1, 17)], 8.0: [(8.0, 3)], 12.0: [(12.0, 16)], 10.0: [(10.0, 15)], 4.0: [(4.0, 5)], 1.1: [(1.1, 6)]}",failed -16944,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_True-dropna_False-basic_snowpark_pandas_df-index_cols10-col3-None-indices],"AssertionError: Actual dict has the wrong key at position 0. Actual key 1.1 is not equal to expected key 3.1. -Actual dict: {1.1: array([5]), 3.1: array([0]), 4.0: array([4]), 8.0: array([1]), 10.0: array([3]), 12.0: array([2])} -Expected dict: {3.1: array([0]), 8.0: array([1]), 12.0: array([2]), 10.0: array([3]), 4.0: array([4]), 1.1: array([5])}",failed -16948,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_external_by[include_groups_True-dropna_True-sort_False-group_keys_False-transform_returns_dataframe],TypeError: must pass an index to rename,failed -16953,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_external_by[include_groups_True-dropna_True-sort_False-group_keys_False-non_transform_returns_series],"AssertionError: Series are different +14128,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_external_by[include_groups_True-dropna_True-sort_False-group_keys_False-non_transform_returns_dataframe],AssertionError,failed +14133,tests.integ.modin.frame.test_mask,test_dataframe_mask_with_duplicated_index_aligned[10-cond_frame0],"AssertionError: DataFrame.index are different + +Attribute ""names"" are different +[left]: [None] +[right]: ['index']",failed +14157,tests.integ.modin.frame.test_loc,test_df_loc_set_boolean_row_indexer[item1-col_key2-row_key0],ValueError: Must have equal len keys and value when setting with an iterable,failed +14165,tests.integ.modin.frame.test_loc,test_df_loc_set_boolean_row_indexer[item1-X-row_key0],IndexError: index 2 is out of bounds for axis 0 with size 2,failed +14172,tests.integ.modin.frame.test_loc,test_df_loc_set_boolean_row_indexer[item1-col_key4-row_key0],ValueError: Must have equal len keys and value when setting with an iterable,failed +14175,tests.integ.modin.groupby.test_groupby_apply,test_group_dataframe_with_column_of_all_nulls_snow_1233832[None-include_groups_True],[XPASS(strict)] SNOW-1233832,failed +14177,tests.integ.modin.frame.test_mask,test_dataframe_mask_with_duplicated_index_aligned[10-cond_frame1],"AssertionError: DataFrame.index are different + +Attribute ""names"" are different +[left]: [None] +[right]: ['index']",failed +14179,tests.integ.modin.groupby.test_groupby_apply,test_group_dataframe_with_column_of_all_nulls_snow_1233832[None-include_groups_False],[XPASS(strict)] SNOW-1233832,failed +14181,tests.integ.modin.frame.test_loc,test_df_loc_set_boolean_row_indexer[item1-col_key5-row_key0],ValueError: Must have equal len keys and value when setting with an iterable,failed +14190,tests.integ.modin.frame.test_loc,test_df_loc_set_list_like_row_key[list-row_key0],"AssertionError: DataFrame.iloc[:, 0] (column name=""A"") are different + +DataFrame.iloc[:, 0] (column name=""A"") values are different (33.33333 %) +[index]: [0, 1, 2] +[left]: [nan, 4.0, 50.0] +[right]: [nan, 4.0, 40.0] +At positional index 2, first diff: 50.0 != 40.0",failed +14196,tests.integ.modin.frame.test_to_dynamic_table,test_to_dynamic_table_index[method-False-index_labels3-expected_index_columns3],"NotImplementedError: Modin supports the method DataFrame.to_dynamic_table on the Snowflake backend, but not on the backend Pandas.",failed +14198,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_external_by[include_groups_True-dropna_True-sort_False-group_keys_False-transform_returns_dataframe],TypeError: must pass an index to rename,failed +14201,tests.integ.modin.frame.test_loc,test_df_loc_set_list_like_row_key[list-row_key1],"KeyError: ""None of [[False, False, False]] are in the [Index([0, 1, 2], dtype='int64')]""",failed +14204,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_external_by[include_groups_True-dropna_True-sort_False-group_keys_False-non_transform_returns_series],"AssertionError: Series are different Series length are different [left]: 3, Index(['sum', 'mean', 'name'], dtype='object', name='custom_metrics') [right]: 6, Index(['sum', 'mean', 'name', 'sum', 'mean', 'name'], dtype='object')",failed -16956,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_external_by[include_groups_True-dropna_True-sort_False-group_keys_False-transform_returns_series],[XPASS(strict)] SNOW-1238546,failed -16959,tests.integ.modin.frame.test_drop_duplicates,test_drop_duplicates_with_misspelled_column_name_or_empty_subset[a],"AssertionError: Regex pattern did not match. - Regex: 'None of .* are in the \\[columns\\]' - Input: ""Index(['a'], dtype='object')""",failed -16962,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_True-dropna_False-basic_snowpark_pandas_df-index_cols11-None-level11-groups],ValueError: Cannot remove 2 levels from an index with 2 levels: at least one level must be left.,failed -16963,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_external_by[include_groups_True-dropna_True-sort_False-group_keys_False-return_scalar],"AssertionError: Series are different +14205,tests.integ.modin.groupby.test_groupby_apply,test_as_index_false[normalize_numeric_columns_by_sum-level_0-include_groups_True],"AssertionError: DataFrame.index are different + +DataFrame.index levels are different +[left]: 1, RangeIndex(start=0, stop=4, step=1) +[right]: 3, MultiIndex([(0, 'i0', 'i0'), + (1, 'i1', 'i3'), + (1, 'i1', 'i2'), + (1, 'i1', 'i4')], + names=[None, 'level_0', 'level_1'])",failed +14208,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_external_by[include_groups_True-dropna_True-sort_False-group_keys_False-transform_returns_series],[XPASS(strict)] SNOW-1238546,failed +14211,tests.integ.modin.frame.test_loc,test_df_loc_set_list_like_row_key[list-row_key2],ValueError: Item wrong length 6 instead of 3!,failed +14213,tests.integ.modin.groupby.test_groupby_apply,test_as_index_false[normalize_numeric_columns_by_sum-level_0-include_groups_False],"AssertionError: DataFrame.index are different + +DataFrame.index levels are different +[left]: 1, RangeIndex(start=0, stop=4, step=1) +[right]: 3, MultiIndex([(0, 'i0', 'i0'), + (1, 'i1', 'i3'), + (1, 'i1', 'i2'), + (1, 'i1', 'i4')], + names=[None, 'level_0', 'level_1'])",failed +14214,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_external_by[include_groups_True-dropna_True-sort_False-group_keys_False-return_scalar],"AssertionError: Series are different Series values are different (100.0 %) [index]: [a, b] @@ -10205,20 +8570,40 @@ dtype: float64_b] At positional index 0, first diff: __reduced__ 1 dtype: int64___reduced__ 0.5 dtype: float64_a != 1_0.5_a",failed -16964,tests.integ.modin.frame.test_drop_duplicates,test_drop_duplicates_with_misspelled_column_name_or_empty_subset[subset1],"AssertionError: Regex pattern did not match. - Regex: 'None of .* are in the \\[columns\\]' - Input: ""Index(['a'], dtype='object')""",failed -16968,tests.integ.modin.frame.test_merge,test_merge_left_on_right_on[inner-True-B-right_i],KeyError: 'right_i',failed -16969,tests.integ.modin.frame.test_drop_duplicates,test_drop_duplicates_with_misspelled_column_name_or_empty_subset[subset2],"AssertionError: Regex pattern did not match. - Regex: '.* not in index' - Input: ""Index(['a'], dtype='object')""",failed -16971,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_external_by[include_groups_True-dropna_False-sort_True-group_keys_True-non_transform_returns_dataframe],AssertionError,failed -16974,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_True-dropna_False-basic_snowpark_pandas_df-index_cols5-by5-None-indices],KeyError: 'col1',failed -16980,tests.integ.modin.frame.test_drop_duplicates,test_drop_duplicates_with_misspelled_column_name_or_empty_subset[subset3],pandas.errors.IndexingError: Unalignable boolean Series provided as indexer (index of the boolean Series and of the indexed object do not match).,failed -17002,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_external_by[include_groups_True-dropna_False-sort_True-group_keys_True-transform_returns_dataframe],TypeError: must pass an index to rename,failed -17003,tests.integ.modin.frame.test_merge,test_merge_left_on_right_on[inner-True-left_on9-right_on9],KeyError: 'right_i',failed -17005,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_True-dropna_False-basic_snowpark_pandas_df-None-None-0-indices],TypeError: assert_array_equal() got an unexpected keyword argument 'strict',failed -17017,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_external_by[include_groups_True-dropna_False-sort_True-group_keys_True-non_transform_returns_series],"AssertionError: Series are different +14219,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_external_by[include_groups_True-dropna_False-sort_True-group_keys_True-non_transform_returns_dataframe],AssertionError,failed +14223,tests.integ.modin.groupby.test_groupby_apply,test_as_index_false[duplicate_df_rowwise-level_0-include_groups_True],"AssertionError: DataFrame.index are different + +DataFrame.index levels are different +[left]: 1, RangeIndex(start=0, stop=8, step=1) +[right]: 3, MultiIndex([(0, 'i0', 'i0'), + (0, 'i0', 'i0'), + (1, 'i1', 'i3'), + (1, 'i1', 'i2'), + (1, 'i1', 'i4'), + (1, 'i1', 'i3'), + (1, 'i1', 'i2'), + (1, 'i1', 'i4')], + names=[None, 'level_0', 'level_1'])",failed +14227,tests.integ.modin.frame.test_mask,test_dataframe_mask_with_duplicated_index_aligned[other1-cond_frame0],"AssertionError: DataFrame.index are different + +Attribute ""names"" are different +[left]: [None] +[right]: ['index']",failed +14228,tests.integ.modin.groupby.test_groupby_apply,test_as_index_false[duplicate_df_rowwise-level_0-include_groups_False],"AssertionError: DataFrame.index are different + +DataFrame.index levels are different +[left]: 1, RangeIndex(start=0, stop=8, step=1) +[right]: 3, MultiIndex([(0, 'i0', 'i0'), + (0, 'i0', 'i0'), + (1, 'i1', 'i3'), + (1, 'i1', 'i2'), + (1, 'i1', 'i4'), + (1, 'i1', 'i3'), + (1, 'i1', 'i2'), + (1, 'i1', 'i4')], + names=[None, 'level_0', 'level_1'])",failed +14237,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_external_by[include_groups_True-dropna_False-sort_True-group_keys_True-transform_returns_dataframe],TypeError: must pass an index to rename,failed +14243,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_external_by[include_groups_True-dropna_False-sort_True-group_keys_True-non_transform_returns_series],"AssertionError: Series are different Series length are different [left]: 3, Index(['sum', 'mean', 'name'], dtype='object', name='custom_metrics') @@ -10229,9 +8614,11 @@ Series length are different ('b', 'mean'), ('b', 'name')], )",failed -17032,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_external_by[include_groups_True-dropna_False-sort_True-group_keys_True-transform_returns_series],[XPASS(strict)] SNOW-1238546,failed -17046,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_True-dropna_False-basic_snowpark_pandas_df-index_cols11-None-level11-indices],ValueError: Cannot remove 2 levels from an index with 2 levels: at least one level must be left.,failed -17049,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_external_by[include_groups_True-dropna_False-sort_True-group_keys_True-return_scalar],"AssertionError: Series are different +14244,tests.integ.modin.frame.test_loc,test_df_loc_set_list_like_row_key[list-row_key3],ValueError: Item wrong length 2 instead of 3!,failed +14247,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_external_by[include_groups_True-dropna_False-sort_True-group_keys_True-transform_returns_series],[XPASS(strict)] SNOW-1238546,failed +14249,tests.integ.modin.groupby.test_groupby_apply,test_axis_one[include_groups_True],[XPASS(strict)] ,failed +14251,tests.integ.modin.groupby.test_groupby_apply,test_axis_one[include_groups_False],[XPASS(strict)] ,failed +14252,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_external_by[include_groups_True-dropna_False-sort_True-group_keys_True-return_scalar],"AssertionError: Series are different Series values are different (100.0 %) [index]: [a, b] @@ -10244,28 +8631,43 @@ dtype: float64_b] At positional index 0, first diff: __reduced__ 1 dtype: int64___reduced__ 0.5 dtype: float64_a != 1_0.5_a",failed -17054,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_True-dropna_False-basic_snowpark_pandas_df-col3-col3-None-indices],TypeError: assert_array_equal() got an unexpected keyword argument 'strict',failed -17061,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_external_by[include_groups_True-dropna_False-sort_True-group_keys_False-non_transform_returns_dataframe],AssertionError,failed -17078,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_True-dropna_False-basic_snowpark_pandas_df-index_cols12-None-level12-groups],ValueError: Cannot remove 2 levels from an index with 2 levels: at least one level must be left.,failed -17085,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_True-dropna_False-basic_snowpark_pandas_df-col3-None-0-indices],TypeError: assert_array_equal() got an unexpected keyword argument 'strict',failed -17096,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_True-dropna_False-basic_snowpark_pandas_df-index_cols12-None-level12-indices],ValueError: Cannot remove 2 levels from an index with 2 levels: at least one level must be left.,failed -17116,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_True-dropna_False-basic_snowpark_pandas_df-col3-None-col3-indices],TypeError: assert_array_equal() got an unexpected keyword argument 'strict',failed -17121,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_True-dropna_False-basic_snowpark_pandas_df_with_missing_values-None-col1-None-groups],ValueError: Categorical categories cannot be null,failed -17134,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_True-dropna_False-basic_snowpark_pandas_df_with_missing_values-None-col1-None-indices],"AssertionError: Actual dict has the wrong key at position 0. Actual key 0.0 is not equal to expected key nan. -Actual dict: {0.0: array([3, 5]), 1.0: array([1, 2]), nan: array([0, 4])} -Expected dict: {nan: array([0, 4]), 1.0: array([1, 2]), 0.0: array([3, 5])}",failed -17138,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_external_by[include_groups_True-dropna_False-sort_True-group_keys_False-transform_returns_dataframe],TypeError: must pass an index to rename,failed -17144,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_True-dropna_False-basic_snowpark_pandas_df-index_cols10-col3-None-indices],TypeError: assert_array_equal() got an unexpected keyword argument 'strict',failed -17148,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_external_by[include_groups_True-dropna_False-sort_True-group_keys_False-non_transform_returns_series],"AssertionError: Series are different +14255,tests.integ.modin.frame.test_loc,test_df_loc_set_list_like_row_key[list-row_key4],"AssertionError: DataFrame.iloc[:, 0] (column name=""A"") are different + +DataFrame.iloc[:, 0] (column name=""A"") values are different (66.66667 %) +[index]: [0, 1, 2] +[left]: [nan, 80.0, 50.0] +[right]: [nan, 70.0, 40.0] +At positional index 1, first diff: 80.0 != 70.0",failed +14258,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_external_by[include_groups_True-dropna_False-sort_True-group_keys_False-non_transform_returns_dataframe],AssertionError,failed +14261,tests.integ.modin.frame.test_mask,test_dataframe_mask_with_duplicated_index_aligned[other1-cond_frame1],"AssertionError: DataFrame.index are different + +Attribute ""names"" are different +[left]: [None] +[right]: ['index']",failed +14262,tests.integ.modin.frame.test_loc,test_df_loc_set_list_like_row_key[list-row_key5],"KeyError: ""None of [[]] are in the [Index([0, 1, 2], dtype='int64')]""",failed +14267,tests.integ.modin.frame.test_loc,test_df_loc_set_list_like_row_key[list-row_key6],"AssertionError: DataFrame.iloc[:, 0] (column name=""A"") are different + +DataFrame.iloc[:, 0] (column name=""A"") values are different (66.66667 %) +[index]: [0, 1, 2] +[left]: [nan, 80.0, 50.0] +[right]: [nan, 70.0, 40.0] +At positional index 1, first diff: 80.0 != 70.0",failed +14269,tests.integ.modin.groupby.test_groupby_apply,test_df_with_single_level_labels[with_non_unique_index-group_keys_True-transform_that_changes_columns-as_index_True-by_index-include_groups_True],KeyError: 'index',failed +14273,tests.integ.modin.frame.test_loc,test_df_loc_set_list_like_row_key[array-row_key0],"AssertionError: DataFrame.iloc[:, 0] (column name=""A"") are different + +DataFrame.iloc[:, 0] (column name=""A"") values are different (33.33333 %) +[index]: [0, 1, 2] +[left]: [nan, 4.0, 50.0] +[right]: [nan, 4.0, 40.0] +At positional index 2, first diff: 50.0 != 40.0",failed +14275,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_external_by[include_groups_True-dropna_False-sort_True-group_keys_False-transform_returns_dataframe],TypeError: must pass an index to rename,failed +14278,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_external_by[include_groups_True-dropna_False-sort_True-group_keys_False-non_transform_returns_series],"AssertionError: Series are different Series length are different [left]: 3, Index(['sum', 'mean', 'name'], dtype='object', name='custom_metrics') [right]: 6, Index(['sum', 'mean', 'name', 'sum', 'mean', 'name'], dtype='object')",failed -17149,tests.integ.modin.frame.test_dropna,test_basic_arguments[SNOW-1787507_subset_scalar],"TypeError: Index(...) must be called with a collection of some kind, 'toy' was passed",failed -17153,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_True-dropna_False-basic_snowpark_pandas_df_with_missing_values-None-by1-None-groups],KeyError: 'col1',failed -17156,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_external_by[include_groups_True-dropna_False-sort_True-group_keys_False-transform_returns_series],[XPASS(strict)] SNOW-1238546,failed -17160,tests.integ.modin.frame.test_dropna,test_axis_1_not_implemented,Failed: DID NOT RAISE ,failed -17164,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_external_by[include_groups_True-dropna_False-sort_True-group_keys_False-return_scalar],"AssertionError: Series are different +14281,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_external_by[include_groups_True-dropna_False-sort_True-group_keys_False-transform_returns_series],[XPASS(strict)] SNOW-1238546,failed +14285,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_external_by[include_groups_True-dropna_False-sort_True-group_keys_False-return_scalar],"AssertionError: Series are different Series values are different (100.0 %) [index]: [a, b] @@ -10278,26 +8680,48 @@ dtype: float64_b] At positional index 0, first diff: __reduced__ 1 dtype: int64___reduced__ 0.5 dtype: float64_a != 1_0.5_a",failed -17168,tests.integ.modin.frame.test_dropna,test_dropna_negative,KeyError: ['invalid'],failed -17170,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_True-dropna_False-basic_snowpark_pandas_df-index_cols11-None-level11-groups],ValueError: Cannot remove 2 levels from an index with 2 levels: at least one level must be left.,failed -17172,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_external_by[include_groups_True-dropna_False-sort_False-group_keys_True-non_transform_returns_dataframe],AssertionError,failed -17177,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_True-dropna_False-basic_snowpark_pandas_df_with_missing_values-None-by1-None-indices],KeyError: 'col1',failed -17186,tests.integ.modin.frame.test_dtypes,test_integer[dataframe_input0-input_dtype0-logical_dtype0],"AssertionError: assert dtype('int8') == dtype('int64') - + where dtype('int8') = 0 1\n1 2\n2 3\ndtype: int8.dtype",failed -17188,tests.integ.modin.frame.test_merge,test_merge_left_on_right_on[inner-False-left_i-right_i],KeyError: 'right_i',failed -17189,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_True-dropna_False-basic_snowpark_pandas_df-index_cols11-None-level11-indices],ValueError: Cannot remove 2 levels from an index with 2 levels: at least one level must be left.,failed -17190,tests.integ.modin.frame.test_dtypes,test_integer[dataframe_input1-input_dtype1-logical_dtype1],"AssertionError: assert dtype('int16') == dtype('int64') - + where dtype('int16') = 0 1\n1 2\n2 3\ndtype: int16.dtype",failed -17192,tests.integ.modin.frame.test_dtypes,test_integer[dataframe_input2-input_dtype2-logical_dtype2],"AssertionError: assert dtype('int32') == dtype('int64') - + where dtype('int32') = 0 1\n1 2\n2 3\ndtype: int32.dtype",failed -17195,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_True-dropna_False-basic_snowpark_pandas_df_with_missing_values-col3-col1-None-groups],ValueError: Categorical categories cannot be null,failed -17196,tests.integ.modin.frame.test_reindex,test_reindex_index_fill_method_pandas_negative[1-bfill],ValueError: limit argument for 'backfill' method only well-defined if index and target are monotonic,failed -17199,tests.integ.modin.frame.test_dtypes,test_integer[dataframe_input4-input_dtype4-logical_dtype4],"AssertionError: assert dtype('int16') == dtype('int64') - + where dtype('int16') = 0 1024\n1 2048\n2 3072\ndtype: int16.dtype",failed -17200,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_external_by[include_groups_True-dropna_False-sort_False-group_keys_True-transform_returns_dataframe],TypeError: must pass an index to rename,failed -17202,tests.integ.modin.frame.test_dtypes,test_integer[dataframe_input5-input_dtype5-logical_dtype5],"AssertionError: assert dtype('int32') == dtype('int64') - + where dtype('int32') = 0 1024\n1 2048\n2 3072\ndtype: int32.dtype",failed -17208,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_external_by[include_groups_True-dropna_False-sort_False-group_keys_True-non_transform_returns_series],"AssertionError: Series are different +14288,tests.integ.modin.groupby.test_groupby_apply,test_df_with_single_level_labels[with_non_unique_index-group_keys_True-transform_that_changes_columns-as_index_True-by_index-include_groups_False],KeyError: 'index',failed +14290,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_external_by[include_groups_True-dropna_False-sort_False-group_keys_True-non_transform_returns_dataframe],AssertionError,failed +14292,tests.integ.modin.frame.test_loc,test_df_loc_set_list_like_row_key[array-row_key2],IndexError: index 3 is out of bounds for axis 0 with size 3,failed +14294,tests.integ.modin.frame.test_mask,test_dataframe_mask_with_duplicated_index_aligned[other2-cond_frame0],"AssertionError: DataFrame.index are different + +Attribute ""names"" are different +[left]: [None] +[right]: ['index']",failed +14299,tests.integ.modin.groupby.test_groupby_apply,test_df_with_single_level_labels[with_non_unique_index-group_keys_True-transform_that_changes_columns-as_index_True-by_string_col_1-include_groups_True],"AssertionError: MultiIndex level [1] are different + +Attribute ""names"" are different +[left]: [None] +[right]: ['index']",failed +14304,tests.integ.modin.frame.test_loc,test_df_loc_set_list_like_row_key[array-row_key3],ValueError: Incompatible indexer with DataFrame,failed +14308,tests.integ.modin.groupby.test_groupby_apply,test_df_with_single_level_labels[with_non_unique_index-group_keys_True-transform_that_changes_columns-as_index_True-by_string_col_1-include_groups_False],"AssertionError: MultiIndex level [1] are different + +Attribute ""names"" are different +[left]: [None] +[right]: ['index']",failed +14310,tests.integ.modin.frame.test_loc,test_df_loc_set_list_like_row_key[array-row_key4],"AssertionError: DataFrame.iloc[:, 0] (column name=""A"") are different + +DataFrame.iloc[:, 0] (column name=""A"") values are different (66.66667 %) +[index]: [0, 1, 2] +[left]: [nan, 80.0, 50.0] +[right]: [nan, 70.0, 40.0] +At positional index 1, first diff: 80.0 != 70.0",failed +14321,tests.integ.modin.frame.test_mask,test_dataframe_mask_with_duplicated_index_aligned[other2-cond_frame1],"AssertionError: DataFrame.index are different + +Attribute ""names"" are different +[left]: [None] +[right]: ['index']",failed +14322,tests.integ.modin.frame.test_loc,test_df_loc_set_list_like_row_key[array-row_key6],"AssertionError: DataFrame.iloc[:, 0] (column name=""A"") are different + +DataFrame.iloc[:, 0] (column name=""A"") values are different (66.66667 %) +[index]: [0, 1, 2] +[left]: [nan, 80.0, 50.0] +[right]: [nan, 70.0, 40.0] +At positional index 1, first diff: 80.0 != 70.0",failed +14323,tests.integ.modin.groupby.test_groupby_apply,test_df_with_single_level_labels[with_non_unique_index-group_keys_True-transform_that_changes_columns-as_index_False-by_index-include_groups_True],KeyError: 'index',failed +14330,tests.integ.modin.frame.test_astype,test_astype_from_timestamp_ltz[uint32],"TypeError: Converting from datetime64[ns, America/Los_Angeles] to uint32 is not supported. Do obj.astype('int64').astype(dtype) instead",failed +14331,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_external_by[include_groups_True-dropna_False-sort_False-group_keys_True-transform_returns_dataframe],TypeError: must pass an index to rename,failed +14336,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_external_by[include_groups_True-dropna_False-sort_False-group_keys_True-non_transform_returns_series],"AssertionError: Series are different Series length are different [left]: 3, Index(['sum', 'mean', 'name'], dtype='object', name='custom_metrics') @@ -10308,15 +8732,10 @@ Series length are different ('b', 'mean'), ('b', 'name')], )",failed -17210,tests.integ.modin.frame.test_dtypes,test_integer[dataframe_input7-input_dtype7-logical_dtype7],"AssertionError: assert dtype('int32') == dtype('int64') - + where dtype('int32') = 0 1048576\n1 2097152\n2 3145728\ndtype: int32.dtype",failed -17211,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_True-dropna_False-basic_snowpark_pandas_df_with_missing_values-col3-col1-None-indices],"AssertionError: Actual dict has the wrong key at position 0. Actual key 0.0 is not equal to expected key nan. -Actual dict: {0.0: array([3, 5]), 1.0: array([1, 2]), nan: array([0, 4])} -Expected dict: {nan: array([0, 4]), 1.0: array([1, 2]), 0.0: array([3, 5])}",failed -17212,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_True-dropna_False-basic_snowpark_pandas_df-index_cols12-None-level12-groups],ValueError: Cannot remove 2 levels from an index with 2 levels: at least one level must be left.,failed -17214,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_external_by[include_groups_True-dropna_False-sort_False-group_keys_True-transform_returns_series],[XPASS(strict)] SNOW-1238546,failed -17220,tests.integ.modin.frame.test_merge,test_merge_left_on_right_on[inner-False-left_i-A],KeyError: 'left_i',failed -17224,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_external_by[include_groups_True-dropna_False-sort_False-group_keys_True-return_scalar],"AssertionError: Series are different +14337,tests.integ.modin.groupby.test_groupby_apply,test_df_with_single_level_labels[with_non_unique_index-group_keys_True-transform_that_changes_columns-as_index_False-by_index-include_groups_False],KeyError: 'index',failed +14339,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_external_by[include_groups_True-dropna_False-sort_False-group_keys_True-transform_returns_series],[XPASS(strict)] SNOW-1238546,failed +14341,tests.integ.modin.frame.test_set_index,test_set_index_pass_arrays_duplicate[False-True-frame_of_ints_and_timedelta-Index-Index],"TypeError: The parameter ""keys"" may be a column key, one-dimensional array, or a list containing only valid column keys and one-dimensional arrays. Received column of type ",failed +14343,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_external_by[include_groups_True-dropna_False-sort_False-group_keys_True-return_scalar],"AssertionError: Series are different Series values are different (100.0 %) [index]: [a, b] @@ -10329,31 +8748,38 @@ dtype: float64_b] At positional index 0, first diff: __reduced__ 1 dtype: int64___reduced__ 0.5 dtype: float64_a != 1_0.5_a",failed -17227,tests.integ.modin.frame.test_reindex,test_reindex_index_fill_method_pandas_negative[1-backfill],ValueError: limit argument for 'backfill' method only well-defined if index and target are monotonic,failed -17231,tests.integ.modin.frame.test_dtypes,test_nullable_extension[dataframe_input0-None-snowpark_dtype0-logical_dtype0],AttributeError: 'DataFrame' object has no attribute 'get_snowflake_type',failed -17232,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_True-dropna_False-basic_snowpark_pandas_df_with_missing_values-col3-by3-None-groups],KeyError: 'col1',failed -17233,tests.integ.modin.frame.test_dtypes,test_nullable_extension[dataframe_input1-Int64-snowpark_dtype1-logical_dtype1],"AssertionError: assert Int64Dtype() == dtype('int64') - + where Int64Dtype() = 0 1\n1 2\n2 \ndtype: Int64.dtype",failed -17234,tests.integ.modin.frame.test_dtypes,test_nullable_extension[dataframe_input2-UInt64-snowpark_dtype2-logical_dtype2],"AssertionError: assert UInt64Dtype() == dtype('int64') - + where UInt64Dtype() = 0 1\n1 2\n2 \ndtype: UInt64.dtype",failed -17235,tests.integ.modin.frame.test_dtypes,test_nullable_extension[dataframe_input3-Int32-snowpark_dtype3-logical_dtype3],"AssertionError: assert Int32Dtype() == dtype('int64') - + where Int32Dtype() = 0 1\n1 2\n2 \ndtype: Int32.dtype",failed -17236,tests.integ.modin.frame.test_dtypes,test_nullable_extension[dataframe_input4-UInt32-snowpark_dtype4-logical_dtype4],"AssertionError: assert UInt32Dtype() == dtype('int64') - + where UInt32Dtype() = 0 1\n1 2\n2 \ndtype: UInt32.dtype",failed -17238,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_external_by[include_groups_True-dropna_False-sort_False-group_keys_False-non_transform_returns_dataframe],AssertionError,failed -17241,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_True-dropna_False-basic_snowpark_pandas_df-index_cols12-None-level12-indices],ValueError: Cannot remove 2 levels from an index with 2 levels: at least one level must be left.,failed -17253,tests.integ.modin.frame.test_reindex,test_reindex_index_fill_method_pandas_negative[1-pad],ValueError: limit argument for 'pad' method only well-defined if index and target are monotonic,failed -17257,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_external_by[include_groups_True-dropna_False-sort_False-group_keys_False-transform_returns_dataframe],TypeError: must pass an index to rename,failed -17258,tests.integ.modin.frame.test_merge,test_merge_left_on_right_on[inner-False-B-right_i],KeyError: 'right_i',failed -17259,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_True-dropna_False-basic_snowpark_pandas_df_with_missing_values-None-col1-None-groups],ValueError: Categorical categories cannot be null,failed -17264,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_external_by[include_groups_True-dropna_False-sort_False-group_keys_False-non_transform_returns_series],"AssertionError: Series are different +14346,tests.integ.modin.frame.test_loc,test_df_loc_set_list_like_row_key[index-row_key0],"AssertionError: DataFrame.iloc[:, 0] (column name=""A"") are different + +DataFrame.iloc[:, 0] (column name=""A"") values are different (33.33333 %) +[index]: [0, 1, 2] +[left]: [nan, 4.0, 50.0] +[right]: [nan, 4.0, 40.0] +At positional index 2, first diff: 50.0 != 40.0",failed +14349,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_external_by[include_groups_True-dropna_False-sort_False-group_keys_False-non_transform_returns_dataframe],AssertionError,failed +14350,tests.integ.modin.groupby.test_groupby_apply,test_df_with_single_level_labels[with_non_unique_index-group_keys_True-transform_that_changes_columns-as_index_False-by_string_col_1-include_groups_True],"AssertionError: MultiIndex level [1] are different + +Attribute ""names"" are different +[left]: [None] +[right]: ['index']",failed +14356,tests.integ.modin.frame.test_mask,test_dataframe_mask_with_duplicated_index_unaligned,pandas.errors.InvalidIndexError,failed +14359,tests.integ.modin.groupby.test_groupby_apply,test_df_with_single_level_labels[with_non_unique_index-group_keys_True-transform_that_changes_columns-as_index_False-by_string_col_1-include_groups_False],"AssertionError: MultiIndex level [1] are different + +Attribute ""names"" are different +[left]: [None] +[right]: ['index']",failed +14364,tests.integ.modin.frame.test_mask,test_dataframe_mask_with_duplicated_columns_negative[cond_column_names0-None-Multiple columns are mapped to each label in ['A'] in DataFrame condition],"AssertionError: Regex pattern did not match. + Regex: ""Multiple\\ columns\\ are\\ mapped\\ to\\ each\\ label\\ in\\ \\['A'\\]\\ in\\ DataFrame\\ condition"" + Input: 'cannot reindex on an axis with duplicate labels'",failed +14365,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_external_by[include_groups_True-dropna_False-sort_False-group_keys_False-transform_returns_dataframe],TypeError: must pass an index to rename,failed +14370,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_external_by[include_groups_True-dropna_False-sort_False-group_keys_False-non_transform_returns_series],"AssertionError: Series are different Series length are different [left]: 3, Index(['sum', 'mean', 'name'], dtype='object', name='custom_metrics') [right]: 6, Index(['sum', 'mean', 'name', 'sum', 'mean', 'name'], dtype='object')",failed -17267,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_True-dropna_False-basic_snowpark_pandas_df_with_missing_values-None-col1-None-indices],TypeError: assert_array_equal() got an unexpected keyword argument 'strict',failed -17269,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_external_by[include_groups_True-dropna_False-sort_False-group_keys_False-transform_returns_series],[XPASS(strict)] SNOW-1238546,failed -17276,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_external_by[include_groups_True-dropna_False-sort_False-group_keys_False-return_scalar],"AssertionError: Series are different +14373,tests.integ.modin.frame.test_mask,test_dataframe_mask_with_duplicated_columns_negative[None-others_column_names1-Multiple columns are mapped to each label in ['C'] in DataFrame other],AssertionError: exception type does not match with expected type ,failed +14374,tests.integ.modin.groupby.test_groupby_apply,test_df_with_single_level_labels[with_non_unique_index-group_keys_True-duplicate_df_rowwise-as_index_True-by_index-include_groups_True],KeyError: 'index',failed +14376,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_external_by[include_groups_True-dropna_False-sort_False-group_keys_False-transform_returns_series],[XPASS(strict)] SNOW-1238546,failed +14379,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_external_by[include_groups_True-dropna_False-sort_False-group_keys_False-return_scalar],"AssertionError: Series are different Series values are different (100.0 %) [index]: [a, b] @@ -10366,20 +8792,12 @@ dtype: float64_b] At positional index 0, first diff: __reduced__ 1 dtype: int64___reduced__ 0.5 dtype: float64_a != 1_0.5_a",failed -17285,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_external_by[include_groups_False-dropna_True-sort_True-group_keys_True-non_transform_returns_dataframe],AssertionError,failed -17287,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_True-dropna_False-basic_snowpark_pandas_df_with_missing_values-col3-by3-None-indices],KeyError: 'col1',failed -17292,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_True-dropna_False-basic_snowpark_pandas_df_with_missing_values-None-by1-None-groups],KeyError: 'col1',failed -17320,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_True-dropna_False-basic_snowpark_pandas_df_with_missing_values-index_cols4-col1-None-groups],ValueError: Categorical categories cannot be null,failed -17322,tests.integ.modin.frame.test_reindex,test_reindex_index_fill_method_pandas_negative[1-ffill],ValueError: limit argument for 'pad' method only well-defined if index and target are monotonic,failed -17324,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_True-dropna_False-basic_snowpark_pandas_df_with_missing_values-None-by1-None-indices],KeyError: 'col1',failed -17337,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_True-dropna_False-basic_snowpark_pandas_df_with_missing_values-index_cols4-col1-None-indices],"AssertionError: Actual dict has the wrong key at position 0. Actual key 0.0 is not equal to expected key nan. -Actual dict: {0.0: array([3, 5]), 1.0: array([1, 2]), nan: array([0, 4])} -Expected dict: {nan: array([0, 4]), 1.0: array([1, 2]), 0.0: array([3, 5])}",failed -17338,tests.integ.modin.frame.test_merge,test_merge_left_on_right_on[inner-False-left_on9-right_on9],KeyError: 'right_i',failed -17351,tests.integ.modin.frame.test_reindex,test_reindex_index_fill_method_pandas_negative[2-bfill],ValueError: limit argument for 'backfill' method only well-defined if index and target are monotonic,failed -17355,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_True-dropna_False-basic_snowpark_pandas_df_with_missing_values-index_cols5-by5-None-groups],KeyError: 'col1',failed -17361,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_external_by[include_groups_False-dropna_True-sort_True-group_keys_True-transform_returns_dataframe],TypeError: must pass an index to rename,failed -17379,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_external_by[include_groups_False-dropna_True-sort_True-group_keys_True-non_transform_returns_series],"AssertionError: Series are different +14382,tests.integ.modin.frame.test_mask,test_dataframe_mask_with_duplicated_columns_negative[cond_column_names2-others_column_names2-Multiple columns are mapped to each label in ['C'] in DataFrame condition],"AssertionError: Regex pattern did not match. + Regex: ""Multiple\\ columns\\ are\\ mapped\\ to\\ each\\ label\\ in\\ \\['C'\\]\\ in\\ DataFrame\\ condition"" + Input: 'cannot reindex on an axis with duplicate labels'",failed +14385,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_external_by[include_groups_False-dropna_True-sort_True-group_keys_True-non_transform_returns_dataframe],AssertionError,failed +14403,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_external_by[include_groups_False-dropna_True-sort_True-group_keys_True-transform_returns_dataframe],TypeError: must pass an index to rename,failed +14410,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_external_by[include_groups_False-dropna_True-sort_True-group_keys_True-non_transform_returns_series],"AssertionError: Series are different Series length are different [left]: 3, Index(['sum', 'mean', 'name'], dtype='object', name='custom_metrics') @@ -10390,11 +8808,23 @@ Series length are different ('b', 'mean'), ('b', 'name')], )",failed -17384,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_external_by[include_groups_False-dropna_True-sort_True-group_keys_True-transform_returns_series],[XPASS(strict)] SNOW-1238546,failed -17387,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_True-dropna_False-basic_snowpark_pandas_df_with_missing_values-index_cols5-by5-None-indices],KeyError: 'col1',failed -17394,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_True-dropna_False-basic_snowpark_pandas_df_with_missing_values-col3-col1-None-groups],ValueError: Categorical categories cannot be null,failed -17395,tests.integ.modin.frame.test_reindex,test_reindex_index_fill_method_pandas_negative[2-backfill],ValueError: limit argument for 'backfill' method only well-defined if index and target are monotonic,failed -17396,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_external_by[include_groups_False-dropna_True-sort_True-group_keys_True-return_scalar],"AssertionError: Series are different +14418,tests.integ.modin.frame.test_mask,test_mask_series_other_axis_not_specified,"AssertionError: Regex pattern did not match. + Regex: 'df.mask requires an axis parameter \\(0 or 1\\) when given a Series' + Input: 'Must specify axis=0 or 1'",failed +14422,tests.integ.modin.groupby.test_groupby_apply,test_df_with_single_level_labels[with_non_unique_index-group_keys_True-duplicate_df_rowwise-as_index_True-by_index-include_groups_False],KeyError: 'index',failed +14434,tests.integ.modin.groupby.test_groupby_apply,test_df_with_single_level_labels[with_non_unique_index-group_keys_True-duplicate_df_rowwise-as_index_True-by_string_col_1-include_groups_True],"AssertionError: MultiIndex level [1] are different + +Attribute ""names"" are different +[left]: [None] +[right]: ['index']",failed +14443,tests.integ.modin.frame.test_loc,test_df_loc_set_list_like_row_key[index-row_key2],IndexError: index 3 is out of bounds for axis 0 with size 3,failed +14445,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_external_by[include_groups_False-dropna_True-sort_True-group_keys_True-transform_returns_series],[XPASS(strict)] SNOW-1238546,failed +14447,tests.integ.modin.groupby.test_groupby_apply,test_df_with_single_level_labels[with_non_unique_index-group_keys_True-duplicate_df_rowwise-as_index_True-by_string_col_1-include_groups_False],"AssertionError: MultiIndex level [1] are different + +Attribute ""names"" are different +[left]: [None] +[right]: ['index']",failed +14451,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_external_by[include_groups_False-dropna_True-sort_True-group_keys_True-return_scalar],"AssertionError: Series are different Series values are different (100.0 %) [index]: [a, b] @@ -10407,21 +8837,18 @@ dtype: float64_b] At positional index 0, first diff: __reduced__ 1 dtype: int64___reduced__ 0.5 dtype: float64_a != 1_0.5_a",failed -17406,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_external_by[include_groups_False-dropna_True-sort_True-group_keys_False-non_transform_returns_dataframe],AssertionError,failed -17412,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_True-dropna_False-basic_snowpark_pandas_df_with_missing_values-col3-col1-None-indices],TypeError: assert_array_equal() got an unexpected keyword argument 'strict',failed -17414,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_True-dropna_False-basic_snowpark_pandas_df_with_missing_values-None-None-0-indices],TypeError: assert_array_equal() got an unexpected keyword argument 'strict',failed -17431,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_True-dropna_False-basic_snowpark_pandas_df_with_missing_values-col3-by3-None-groups],KeyError: 'col1',failed -17436,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_external_by[include_groups_False-dropna_True-sort_True-group_keys_False-transform_returns_dataframe],TypeError: must pass an index to rename,failed -17437,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_True-dropna_False-basic_snowpark_pandas_df_with_missing_values-col3-col3-None-groups],ValueError: Categorical categories cannot be null,failed -17446,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_external_by[include_groups_False-dropna_True-sort_True-group_keys_False-non_transform_returns_series],"AssertionError: Series are different +14455,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_external_by[include_groups_False-dropna_True-sort_True-group_keys_False-non_transform_returns_dataframe],AssertionError,failed +14461,tests.integ.modin.groupby.test_groupby_apply,test_df_with_single_level_labels[with_non_unique_index-group_keys_True-duplicate_df_rowwise-as_index_False-by_index-include_groups_True],KeyError: 'index',failed +14472,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_external_by[include_groups_False-dropna_True-sort_True-group_keys_False-transform_returns_dataframe],TypeError: must pass an index to rename,failed +14475,tests.integ.modin.groupby.test_groupby_apply,test_df_with_single_level_labels[with_non_unique_index-group_keys_True-duplicate_df_rowwise-as_index_False-by_index-include_groups_False],KeyError: 'index',failed +14476,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_external_by[include_groups_False-dropna_True-sort_True-group_keys_False-non_transform_returns_series],"AssertionError: Series are different Series length are different [left]: 3, Index(['sum', 'mean', 'name'], dtype='object', name='custom_metrics') [right]: 6, Index(['sum', 'mean', 'name', 'sum', 'mean', 'name'], dtype='object')",failed -17457,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_external_by[include_groups_False-dropna_True-sort_True-group_keys_False-transform_returns_series],[XPASS(strict)] SNOW-1238546,failed -17459,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_True-dropna_False-basic_snowpark_pandas_df_with_missing_values-col3-col3-None-indices],TypeError: assert_array_equal() got an unexpected keyword argument 'strict',failed -17469,tests.integ.modin.frame.test_reindex,test_reindex_index_fill_method_pandas_negative[2-pad],ValueError: limit argument for 'pad' method only well-defined if index and target are monotonic,failed -17470,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_external_by[include_groups_False-dropna_True-sort_True-group_keys_False-return_scalar],"AssertionError: Series are different +14480,tests.integ.modin.frame.test_loc,test_df_loc_set_list_like_row_key[index-row_key3],ValueError: Incompatible indexer with DataFrame,failed +14481,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_external_by[include_groups_False-dropna_True-sort_True-group_keys_False-transform_returns_series],[XPASS(strict)] SNOW-1238546,failed +14488,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_external_by[include_groups_False-dropna_True-sort_True-group_keys_False-return_scalar],"AssertionError: Series are different Series values are different (100.0 %) [index]: [a, b] @@ -10434,14 +8861,26 @@ dtype: float64_b] At positional index 0, first diff: __reduced__ 1 dtype: int64___reduced__ 0.5 dtype: float64_a != 1_0.5_a",failed -17472,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_True-dropna_False-basic_snowpark_pandas_df_with_missing_values-col3-by3-None-indices],KeyError: 'col1',failed -17479,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_external_by[include_groups_False-dropna_True-sort_False-group_keys_True-non_transform_returns_dataframe],AssertionError,failed -17488,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_True-dropna_False-basic_snowpark_pandas_df_with_missing_values-col3-None-0-groups],ValueError: Categorical categories cannot be null,failed -17498,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_True-dropna_False-basic_snowpark_pandas_df_with_missing_values-index_cols4-col1-None-groups],ValueError: Categorical categories cannot be null,failed -17502,tests.integ.modin.frame.test_reindex,test_reindex_index_fill_method_pandas_negative[2-ffill],ValueError: limit argument for 'pad' method only well-defined if index and target are monotonic,failed -17503,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_True-dropna_False-basic_snowpark_pandas_df_with_missing_values-col3-None-0-indices],TypeError: assert_array_equal() got an unexpected keyword argument 'strict',failed -17508,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_external_by[include_groups_False-dropna_True-sort_False-group_keys_True-transform_returns_dataframe],TypeError: must pass an index to rename,failed -17515,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_external_by[include_groups_False-dropna_True-sort_False-group_keys_True-non_transform_returns_series],"AssertionError: Series are different +14493,tests.integ.modin.groupby.test_groupby_apply,test_df_with_single_level_labels[with_non_unique_index-group_keys_True-duplicate_df_rowwise-as_index_False-by_string_col_1-include_groups_True],"AssertionError: MultiIndex level [1] are different + +Attribute ""names"" are different +[left]: [None] +[right]: ['index']",failed +14494,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_external_by[include_groups_False-dropna_True-sort_False-group_keys_True-non_transform_returns_dataframe],AssertionError,failed +14505,tests.integ.modin.groupby.test_groupby_apply,test_df_with_single_level_labels[with_non_unique_index-group_keys_True-duplicate_df_rowwise-as_index_False-by_string_col_1-include_groups_False],"AssertionError: MultiIndex level [1] are different + +Attribute ""names"" are different +[left]: [None] +[right]: ['index']",failed +14506,tests.integ.modin.frame.test_loc,test_df_loc_set_list_like_row_key[index-row_key4],"AssertionError: DataFrame.iloc[:, 0] (column name=""A"") are different + +DataFrame.iloc[:, 0] (column name=""A"") values are different (66.66667 %) +[index]: [0, 1, 2] +[left]: [nan, 80.0, 50.0] +[right]: [nan, 70.0, 40.0] +At positional index 1, first diff: 80.0 != 70.0",failed +14511,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_external_by[include_groups_False-dropna_True-sort_False-group_keys_True-transform_returns_dataframe],TypeError: must pass an index to rename,failed +14514,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_external_by[include_groups_False-dropna_True-sort_False-group_keys_True-non_transform_returns_series],"AssertionError: Series are different Series length are different [left]: 3, Index(['sum', 'mean', 'name'], dtype='object', name='custom_metrics') @@ -10452,11 +8891,9 @@ Series length are different ('b', 'mean'), ('b', 'name')], )",failed -17517,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_True-dropna_False-basic_snowpark_pandas_df_with_missing_values-index_cols4-col1-None-indices],TypeError: assert_array_equal() got an unexpected keyword argument 'strict',failed -17524,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_external_by[include_groups_False-dropna_True-sort_False-group_keys_True-transform_returns_series],[XPASS(strict)] SNOW-1238546,failed -17530,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_True-dropna_False-basic_snowpark_pandas_df_with_missing_values-col3-None-col3-groups],ValueError: Categorical categories cannot be null,failed -17535,tests.integ.modin.frame.test_merge,test_merge_left_on_right_on[right-True-left_i-right_i],KeyError: 'right_i',failed -17541,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_external_by[include_groups_False-dropna_True-sort_False-group_keys_True-return_scalar],"AssertionError: Series are different +14518,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_external_by[include_groups_False-dropna_True-sort_False-group_keys_True-transform_returns_series],[XPASS(strict)] SNOW-1238546,failed +14522,tests.integ.modin.groupby.test_groupby_apply,test_df_with_single_level_labels[with_non_unique_index-group_keys_False-transform_that_changes_columns-as_index_True-by_index-include_groups_True],KeyError: 'index',failed +14523,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_external_by[include_groups_False-dropna_True-sort_False-group_keys_True-return_scalar],"AssertionError: Series are different Series values are different (100.0 %) [index]: [a, b] @@ -10469,24 +8906,31 @@ dtype: float64_b] At positional index 0, first diff: __reduced__ 1 dtype: int64___reduced__ 0.5 dtype: float64_a != 1_0.5_a",failed -17547,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_external_by[include_groups_False-dropna_True-sort_False-group_keys_False-non_transform_returns_dataframe],AssertionError,failed -17553,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_True-dropna_False-basic_snowpark_pandas_df_with_missing_values-col3-None-col3-indices],TypeError: assert_array_equal() got an unexpected keyword argument 'strict',failed -17555,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_True-dropna_False-basic_snowpark_pandas_df_with_missing_values-index_cols5-by5-None-groups],KeyError: 'col1',failed -17573,tests.integ.modin.frame.test_merge,test_merge_left_on_right_on[right-True-left_i-A],KeyError: 'left_i',failed -17576,tests.integ.modin.frame.test_reindex,test_reindex_index_fill_method_pandas_negative[100-bfill],ValueError: limit argument for 'backfill' method only well-defined if index and target are monotonic,failed -17581,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_True-dropna_False-basic_snowpark_pandas_df_with_missing_values-index_cols5-by5-None-indices],KeyError: 'col1',failed -17610,tests.integ.modin.frame.test_merge,test_merge_left_on_right_on[right-True-B-right_i],KeyError: 'right_i',failed -17614,tests.integ.modin.frame.test_reindex,test_reindex_index_fill_method_pandas_negative[100-backfill],ValueError: limit argument for 'backfill' method only well-defined if index and target are monotonic,failed -17616,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_external_by[include_groups_False-dropna_True-sort_False-group_keys_False-transform_returns_dataframe],TypeError: must pass an index to rename,failed -17620,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_True-dropna_False-basic_snowpark_pandas_df_with_missing_values-None-None-0-indices],TypeError: assert_array_equal() got an unexpected keyword argument 'strict',failed -17623,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_external_by[include_groups_False-dropna_True-sort_False-group_keys_False-non_transform_returns_series],"AssertionError: Series are different +14529,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_external_by[include_groups_False-dropna_True-sort_False-group_keys_False-non_transform_returns_dataframe],AssertionError,failed +14540,tests.integ.modin.groupby.test_groupby_apply,test_df_with_single_level_labels[with_non_unique_index-group_keys_False-transform_that_changes_columns-as_index_True-by_index-include_groups_False],KeyError: 'index',failed +14548,tests.integ.modin.groupby.test_groupby_apply,test_df_with_single_level_labels[with_non_unique_index-group_keys_False-transform_that_changes_columns-as_index_True-by_string_col_1-include_groups_True],"AssertionError: DataFrame.index are different + +DataFrame.index values are different (50.0 %) +[left]: Index(['i0', 'i1', 'i1', 'i2'], dtype='object') +[right]: Index(['i0', 'i1', 'i2', 'i1'], dtype='object', name='index') +At positional index 2, first diff: i1 != i2",failed +14558,tests.integ.modin.groupby.test_groupby_apply,test_df_with_single_level_labels[with_non_unique_index-group_keys_False-transform_that_changes_columns-as_index_True-by_string_col_1-include_groups_False],"AssertionError: DataFrame.index are different + +DataFrame.index values are different (50.0 %) +[left]: Index(['i0', 'i1', 'i1', 'i2'], dtype='object') +[right]: Index(['i0', 'i1', 'i2', 'i1'], dtype='object', name='index') +At positional index 2, first diff: i1 != i2",failed +14564,tests.integ.modin.frame.test_melt,test_melt_general_path[data0],AttributeError: 'DataFrame' object has no attribute 'ordered_dataframe',failed +14568,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_external_by[include_groups_False-dropna_True-sort_False-group_keys_False-transform_returns_dataframe],TypeError: must pass an index to rename,failed +14571,tests.integ.modin.frame.test_melt,test_melt_general_path[data1],AttributeError: 'DataFrame' object has no attribute 'ordered_dataframe',failed +14573,tests.integ.modin.groupby.test_groupby_apply,test_df_with_single_level_labels[with_non_unique_index-group_keys_False-transform_that_changes_columns-as_index_False-by_index-include_groups_True],KeyError: 'index',failed +14574,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_external_by[include_groups_False-dropna_True-sort_False-group_keys_False-non_transform_returns_series],"AssertionError: Series are different Series length are different [left]: 3, Index(['sum', 'mean', 'name'], dtype='object', name='custom_metrics') [right]: 6, Index(['sum', 'mean', 'name', 'sum', 'mean', 'name'], dtype='object')",failed -17629,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_external_by[include_groups_False-dropna_True-sort_False-group_keys_False-transform_returns_series],[XPASS(strict)] SNOW-1238546,failed -17632,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_True-dropna_False-basic_snowpark_pandas_df_with_missing_values-index_cols10-col3-None-groups],ValueError: Categorical categories cannot be null,failed -17638,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_external_by[include_groups_False-dropna_True-sort_False-group_keys_False-return_scalar],"AssertionError: Series are different +14576,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_external_by[include_groups_False-dropna_True-sort_False-group_keys_False-transform_returns_series],[XPASS(strict)] SNOW-1238546,failed +14581,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_external_by[include_groups_False-dropna_True-sort_False-group_keys_False-return_scalar],"AssertionError: Series are different Series values are different (100.0 %) [index]: [a, b] @@ -10499,16 +8943,26 @@ dtype: float64_b] At positional index 0, first diff: __reduced__ 1 dtype: int64___reduced__ 0.5 dtype: float64_a != 1_0.5_a",failed -17644,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_True-dropna_False-basic_snowpark_pandas_df_with_missing_values-index_cols10-col3-None-indices],TypeError: assert_array_equal() got an unexpected keyword argument 'strict',failed -17647,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_external_by[include_groups_False-dropna_False-sort_True-group_keys_True-non_transform_returns_dataframe],AssertionError,failed -17650,tests.integ.modin.frame.test_reindex,test_reindex_index_fill_method_pandas_negative[100-pad],ValueError: limit argument for 'pad' method only well-defined if index and target are monotonic,failed -17651,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_True-dropna_False-basic_snowpark_pandas_df_with_missing_values-col3-col3-None-groups],ValueError: Categorical categories cannot be null,failed -17671,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_True-dropna_False-basic_snowpark_pandas_df_with_missing_values-index_cols11-None-level11-groups],ValueError: Cannot remove 2 levels from an index with 2 levels: at least one level must be left.,failed -17676,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_True-dropna_False-basic_snowpark_pandas_df_with_missing_values-col3-col3-None-indices],TypeError: assert_array_equal() got an unexpected keyword argument 'strict',failed -17682,tests.integ.modin.frame.test_merge,test_merge_left_on_right_on[right-True-left_on9-right_on9],KeyError: 'right_i',failed -17686,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_external_by[include_groups_False-dropna_False-sort_True-group_keys_True-transform_returns_dataframe],TypeError: must pass an index to rename,failed -17694,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_True-dropna_False-basic_snowpark_pandas_df_with_missing_values-index_cols11-None-level11-indices],ValueError: Cannot remove 2 levels from an index with 2 levels: at least one level must be left.,failed -17696,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_external_by[include_groups_False-dropna_False-sort_True-group_keys_True-non_transform_returns_series],"AssertionError: Series are different +14584,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_external_by[include_groups_False-dropna_False-sort_True-group_keys_True-non_transform_returns_dataframe],AssertionError,failed +14585,tests.integ.modin.groupby.test_groupby_apply,test_df_with_single_level_labels[with_non_unique_index-group_keys_False-transform_that_changes_columns-as_index_False-by_index-include_groups_False],KeyError: 'index',failed +14591,tests.integ.modin.frame.test_loc,test_df_loc_set_list_like_row_key[index-row_key6],"AssertionError: DataFrame.iloc[:, 0] (column name=""A"") are different + +DataFrame.iloc[:, 0] (column name=""A"") values are different (66.66667 %) +[index]: [0, 1, 2] +[left]: [nan, 80.0, 50.0] +[right]: [nan, 70.0, 40.0] +At positional index 1, first diff: 80.0 != 70.0",failed +14594,tests.integ.modin.groupby.test_groupby_apply,test_df_with_single_level_labels[with_non_unique_index-group_keys_False-transform_that_changes_columns-as_index_False-by_string_col_1-include_groups_True],"AssertionError: DataFrame.index are different + +DataFrame.index values are different (50.0 %) +[left]: Index(['i0', 'i1', 'i1', 'i2'], dtype='object') +[right]: Index(['i0', 'i1', 'i2', 'i1'], dtype='object', name='index') +At positional index 2, first diff: i1 != i2",failed +14596,tests.integ.modin.frame.test_melt,test_melt_general_path[data2],AttributeError: 'DataFrame' object has no attribute 'ordered_dataframe',failed +14599,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_external_by[include_groups_False-dropna_False-sort_True-group_keys_True-transform_returns_dataframe],TypeError: must pass an index to rename,failed +14602,tests.integ.modin.frame.test_loc,test_df_loc_set_series_and_list_like_row_key_negative[series],KeyError: array([3]),failed +14603,tests.integ.modin.frame.test_melt,test_melt_general_path[data3],AttributeError: 'DataFrame' object has no attribute 'ordered_dataframe',failed +14605,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_external_by[include_groups_False-dropna_False-sort_True-group_keys_True-non_transform_returns_series],"AssertionError: Series are different Series length are different [left]: 3, Index(['sum', 'mean', 'name'], dtype='object', name='custom_metrics') @@ -10519,8 +8973,15 @@ Series length are different ('b', 'mean'), ('b', 'name')], )",failed -17703,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_external_by[include_groups_False-dropna_False-sort_True-group_keys_True-transform_returns_series],[XPASS(strict)] SNOW-1238546,failed -17711,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_external_by[include_groups_False-dropna_False-sort_True-group_keys_True-return_scalar],"AssertionError: Series are different +14606,tests.integ.modin.groupby.test_groupby_apply,test_df_with_single_level_labels[with_non_unique_index-group_keys_False-transform_that_changes_columns-as_index_False-by_string_col_1-include_groups_False],"AssertionError: DataFrame.index are different + +DataFrame.index values are different (50.0 %) +[left]: Index(['i0', 'i1', 'i1', 'i2'], dtype='object') +[right]: Index(['i0', 'i1', 'i2', 'i1'], dtype='object', name='index') +At positional index 2, first diff: i1 != i2",failed +14608,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_external_by[include_groups_False-dropna_False-sort_True-group_keys_True-transform_returns_series],[XPASS(strict)] SNOW-1238546,failed +14610,tests.integ.modin.frame.test_melt,test_melt_general_path[data4],AttributeError: 'DataFrame' object has no attribute 'ordered_dataframe',failed +14614,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_external_by[include_groups_False-dropna_False-sort_True-group_keys_True-return_scalar],"AssertionError: Series are different Series values are different (100.0 %) [index]: [a, b] @@ -10533,24 +8994,23 @@ dtype: float64_b] At positional index 0, first diff: __reduced__ 1 dtype: int64___reduced__ 0.5 dtype: float64_a != 1_0.5_a",failed -17718,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_True-dropna_False-basic_snowpark_pandas_df_with_missing_values-index_cols12-None-level12-groups],ValueError: Cannot remove 2 levels from an index with 2 levels: at least one level must be left.,failed -17720,tests.integ.modin.frame.test_reindex,test_reindex_index_fill_method_pandas_negative[100-ffill],ValueError: limit argument for 'pad' method only well-defined if index and target are monotonic,failed -17721,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_external_by[include_groups_False-dropna_False-sort_True-group_keys_False-non_transform_returns_dataframe],AssertionError,failed -17751,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_True-dropna_False-basic_snowpark_pandas_df_with_missing_values-index_cols12-None-level12-indices],ValueError: Cannot remove 2 levels from an index with 2 levels: at least one level must be left.,failed -17755,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_True-dropna_False-basic_snowpark_pandas_df_with_missing_values-col3-None-0-groups],ValueError: Categorical categories cannot be null,failed -17762,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_external_by[include_groups_False-dropna_False-sort_True-group_keys_False-transform_returns_dataframe],TypeError: must pass an index to rename,failed -17770,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_False-dropna_True-basic_snowpark_pandas_df-None-col1-None-groups],"AssertionError: Actual dict has the wrong key at position 0. Actual key 0 is not equal to expected key 2. -Actual dict: {0: [3, 5], 1: [1, 2], 2: [0, 4]} -Expected dict: {2: [0, 4], 1: [1, 2], 0: [3, 5]}",failed -17775,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_external_by[include_groups_False-dropna_False-sort_True-group_keys_False-non_transform_returns_series],"AssertionError: Series are different +14616,tests.integ.modin.frame.test_melt,test_melt_general_path[data5],AttributeError: 'DataFrame' object has no attribute 'ordered_dataframe',failed +14619,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_external_by[include_groups_False-dropna_False-sort_True-group_keys_False-non_transform_returns_dataframe],AssertionError,failed +14622,tests.integ.modin.groupby.test_groupby_apply,test_df_with_single_level_labels[with_non_unique_index-group_keys_False-duplicate_df_rowwise-as_index_True-by_index-include_groups_True],KeyError: 'index',failed +14623,tests.integ.modin.frame.test_melt,test_melt_general_path[data6],AttributeError: 'DataFrame' object has no attribute 'ordered_dataframe',failed +14628,tests.integ.modin.frame.test_melt,test_melt_general_path[data7],AttributeError: 'DataFrame' object has no attribute 'ordered_dataframe',failed +14634,tests.integ.modin.frame.test_melt,test_melt_general_path[data8],AttributeError: 'DataFrame' object has no attribute 'ordered_dataframe',failed +14635,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_external_by[include_groups_False-dropna_False-sort_True-group_keys_False-transform_returns_dataframe],TypeError: must pass an index to rename,failed +14636,tests.integ.modin.groupby.test_groupby_apply,test_df_with_single_level_labels[with_non_unique_index-group_keys_False-duplicate_df_rowwise-as_index_True-by_index-include_groups_False],KeyError: 'index',failed +14640,tests.integ.modin.frame.test_melt,test_melt_general_path[data9],AttributeError: 'DataFrame' object has no attribute 'ordered_dataframe',failed +14641,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_external_by[include_groups_False-dropna_False-sort_True-group_keys_False-non_transform_returns_series],"AssertionError: Series are different Series length are different [left]: 3, Index(['sum', 'mean', 'name'], dtype='object', name='custom_metrics') [right]: 6, Index(['sum', 'mean', 'name', 'sum', 'mean', 'name'], dtype='object')",failed -17782,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_external_by[include_groups_False-dropna_False-sort_True-group_keys_False-transform_returns_series],[XPASS(strict)] SNOW-1238546,failed -17786,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_True-dropna_False-basic_snowpark_pandas_df_with_missing_values-col3-None-0-indices],TypeError: assert_array_equal() got an unexpected keyword argument 'strict',failed -17790,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_False-dropna_True-basic_snowpark_pandas_df-None-col1-None-indices],"AssertionError: Actual type is not the same as expected type , and instead is type . Actual value is {0: [3, 5], 1: [1, 2], 2: [0, 4]}",failed -17795,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_external_by[include_groups_False-dropna_False-sort_True-group_keys_False-return_scalar],"AssertionError: Series are different +14644,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_external_by[include_groups_False-dropna_False-sort_True-group_keys_False-transform_returns_series],[XPASS(strict)] SNOW-1238546,failed +14646,tests.integ.modin.frame.test_melt,test_melt_general_path[data10],AttributeError: 'DataFrame' object has no attribute 'ordered_dataframe',failed +14650,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_external_by[include_groups_False-dropna_False-sort_True-group_keys_False-return_scalar],"AssertionError: Series are different Series values are different (100.0 %) [index]: [a, b] @@ -10563,23 +9023,42 @@ dtype: float64_b] At positional index 0, first diff: __reduced__ 1 dtype: int64___reduced__ 0.5 dtype: float64_a != 1_0.5_a",failed -17805,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_external_by[include_groups_False-dropna_False-sort_False-group_keys_True-non_transform_returns_dataframe],AssertionError,failed -17812,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_False-dropna_True-basic_snowpark_pandas_df-None-by1-None-groups],TypeError: assert_array_equal() got an unexpected keyword argument 'strict',failed -17819,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_True-dropna_False-basic_snowpark_pandas_df_with_missing_values-col3-None-col3-groups],ValueError: Categorical categories cannot be null,failed -17833,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_False-dropna_True-basic_snowpark_pandas_df-None-by1-None-indices],TypeError: assert_array_equal() got an unexpected keyword argument 'strict',failed -17846,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_True-dropna_False-basic_snowpark_pandas_df_with_missing_values-col3-None-col3-indices],TypeError: assert_array_equal() got an unexpected keyword argument 'strict',failed -17854,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_False-dropna_True-basic_snowpark_pandas_df-col3-col1-None-groups],"AssertionError: Actual dict has the wrong key at position 0. Actual key 0 is not equal to expected key 2. -Actual dict: {0: [10.0, 1.1], 1: [8.0, 12.0], 2: [3.1, 4.0]} -Expected dict: {2: [3.1, 4.0], 1: [8.0, 12.0], 0: [10.0, 1.1]}",failed -17866,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_False-dropna_True-basic_snowpark_pandas_df-col3-col1-None-indices],"AssertionError: Actual type is not the same as expected type , and instead is type . Actual value is {0: [3, 5], 1: [1, 2], 2: [0, 4]}",failed -17869,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_True-dropna_False-basic_snowpark_pandas_df_with_missing_values-index_cols10-col3-None-groups],ValueError: Categorical categories cannot be null,failed -17882,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_False-dropna_True-basic_snowpark_pandas_df-col3-by3-None-groups],TypeError: assert_array_equal() got an unexpected keyword argument 'strict',failed -17883,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_True-dropna_False-basic_snowpark_pandas_df_with_missing_values-index_cols10-col3-None-indices],TypeError: assert_array_equal() got an unexpected keyword argument 'strict',failed -17887,tests.integ.modin.frame.test_reindex,test_reindex_index_fill_method_with_old_na_values_pandas_negative[bfill-1],Cannot qualify window in fillna.,xfailed -17890,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_external_by[include_groups_False-dropna_False-sort_False-group_keys_True-transform_returns_dataframe],TypeError: must pass an index to rename,failed -17893,tests.integ.modin.frame.test_merge,test_merge_left_on_right_on[right-False-left_i-right_i],KeyError: 'right_i',failed -17897,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_False-dropna_True-basic_snowpark_pandas_df-col3-by3-None-indices],TypeError: assert_array_equal() got an unexpected keyword argument 'strict',failed -17902,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_external_by[include_groups_False-dropna_False-sort_False-group_keys_True-non_transform_returns_series],"AssertionError: Series are different +14653,tests.integ.modin.frame.test_melt,test_melt_general_path[data11],AttributeError: 'DataFrame' object has no attribute 'ordered_dataframe',failed +14654,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_external_by[include_groups_False-dropna_False-sort_False-group_keys_True-non_transform_returns_dataframe],AssertionError,failed +14657,tests.integ.modin.frame.test_loc,test_df_loc_set_general_col_key_type[series-row_key0-col_key6],"AssertionError: DataFrame are different + +DataFrame shape mismatch +[left]: (3, 8) +[right]: (3, 4)",failed +14659,tests.integ.modin.frame.test_melt,test_melt_general_path[data12],AttributeError: 'DataFrame' object has no attribute 'ordered_dataframe',failed +14664,tests.integ.modin.frame.test_melt,test_melt_general_path[data13],AttributeError: 'DataFrame' object has no attribute 'ordered_dataframe',failed +14670,tests.integ.modin.frame.test_loc,test_df_loc_set_general_col_key_type[series-row_key0-col_key8],"AssertionError: DataFrame.iloc[:, 0] (column name=""D"") are different + +DataFrame.iloc[:, 0] (column name=""D"") values are different (66.66667 %) +[index]: [0, 1, 2] +[left]: [nan, 4.0, nan] +[right]: [1.0, 4.0, 7.0] +At positional index 0, first diff: nan != 1.0",failed +14673,tests.integ.modin.groupby.test_groupby_apply,test_df_with_single_level_labels[with_non_unique_index-group_keys_False-duplicate_df_rowwise-as_index_True-by_string_col_1-include_groups_True],"AssertionError: DataFrame.index are different + +Attribute ""names"" are different +[left]: [None] +[right]: ['index']",failed +14677,tests.integ.modin.groupby.test_groupby_apply,test_df_with_single_level_labels[with_non_unique_index-group_keys_False-duplicate_df_rowwise-as_index_True-by_string_col_1-include_groups_False],"AssertionError: DataFrame.index are different + +Attribute ""names"" are different +[left]: [None] +[right]: ['index']",failed +14678,tests.integ.modin.frame.test_loc,test_df_loc_set_general_col_key_type[series-row_key0-col_key9],"KeyError: array(['1', '2'], dtype='",failed +14693,tests.integ.modin.frame.test_melt,test_melt_general_path[data16],AttributeError: 'DataFrame' object has no attribute 'ordered_dataframe',failed +14694,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_external_by[include_groups_False-dropna_False-sort_False-group_keys_True-non_transform_returns_series],"AssertionError: Series are different Series length are different [left]: 3, Index(['sum', 'mean', 'name'], dtype='object', name='custom_metrics') @@ -10590,12 +9069,9 @@ Series length are different ('b', 'mean'), ('b', 'name')], )",failed -17911,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_True-dropna_False-basic_snowpark_pandas_df_with_missing_values-index_cols11-None-level11-groups],ValueError: Cannot remove 2 levels from an index with 2 levels: at least one level must be left.,failed -17915,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_external_by[include_groups_False-dropna_False-sort_False-group_keys_True-transform_returns_series],[XPASS(strict)] SNOW-1238546,failed -17923,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_False-dropna_True-basic_snowpark_pandas_df-index_cols4-col1-None-groups],"AssertionError: Actual dict has the wrong key at position 0. Actual key 0 is not equal to expected key 2. -Actual dict: {0: [(10.0, 15), (1.1, 6)], 1: [(8.0, 3), (12.0, 16)], 2: [(3.1, 17), (4.0, 5)]} -Expected dict: {2: [(3.1, 17), (4.0, 5)], 1: [(8.0, 3), (12.0, 16)], 0: [(10.0, 15), (1.1, 6)]}",failed -17927,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_external_by[include_groups_False-dropna_False-sort_False-group_keys_True-return_scalar],"AssertionError: Series are different +14697,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_external_by[include_groups_False-dropna_False-sort_False-group_keys_True-transform_returns_series],[XPASS(strict)] SNOW-1238546,failed +14700,tests.integ.modin.frame.test_melt,test_melt_general_path[data17],AttributeError: 'DataFrame' object has no attribute 'ordered_dataframe',failed +14702,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_external_by[include_groups_False-dropna_False-sort_False-group_keys_True-return_scalar],"AssertionError: Series are different Series values are different (100.0 %) [index]: [a, b] @@ -10608,24 +9084,38 @@ dtype: float64_b] At positional index 0, first diff: __reduced__ 1 dtype: int64___reduced__ 0.5 dtype: float64_a != 1_0.5_a",failed -17936,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_False-dropna_True-basic_snowpark_pandas_df-index_cols4-col1-None-indices],"AssertionError: Actual type is not the same as expected type , and instead is type . Actual value is {0: [3, 5], 1: [1, 2], 2: [0, 4]}",failed -17938,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_external_by[include_groups_False-dropna_False-sort_False-group_keys_False-non_transform_returns_dataframe],AssertionError,failed -17939,tests.integ.modin.frame.test_merge,test_merge_left_on_right_on[right-False-left_i-A],KeyError: 'left_i',failed -17941,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_True-dropna_False-basic_snowpark_pandas_df_with_missing_values-index_cols11-None-level11-indices],ValueError: Cannot remove 2 levels from an index with 2 levels: at least one level must be left.,failed -17948,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_False-dropna_True-basic_snowpark_pandas_df-index_cols5-by5-None-groups],TypeError: assert_array_equal() got an unexpected keyword argument 'strict',failed -17957,tests.integ.modin.frame.test_reindex,test_reindex_index_fill_method_with_old_na_values_pandas_negative[bfill-2],Cannot qualify window in fillna.,xfailed -17963,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_False-dropna_True-basic_snowpark_pandas_df-index_cols5-by5-None-indices],TypeError: assert_array_equal() got an unexpected keyword argument 'strict',failed -17964,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_True-dropna_False-basic_snowpark_pandas_df_with_missing_values-index_cols12-None-level12-groups],ValueError: Cannot remove 2 levels from an index with 2 levels: at least one level must be left.,failed -17966,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_external_by[include_groups_False-dropna_False-sort_False-group_keys_False-transform_returns_dataframe],TypeError: must pass an index to rename,failed -17973,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_external_by[include_groups_False-dropna_False-sort_False-group_keys_False-non_transform_returns_series],"AssertionError: Series are different +14706,tests.integ.modin.frame.test_melt,test_melt_general_path[data18],AttributeError: 'DataFrame' object has no attribute 'ordered_dataframe',failed +14708,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_external_by[include_groups_False-dropna_False-sort_False-group_keys_False-non_transform_returns_dataframe],AssertionError,failed +14709,tests.integ.modin.groupby.test_groupby_apply,test_df_with_single_level_labels[with_non_unique_index-group_keys_False-duplicate_df_rowwise-as_index_False-by_index-include_groups_False],KeyError: 'index',failed +14712,tests.integ.modin.frame.test_melt,test_melt_general_path[data19],AttributeError: 'DataFrame' object has no attribute 'ordered_dataframe',failed +14717,tests.integ.modin.frame.test_melt,test_melt_simple_path[data0],AttributeError: 'DataFrame' object has no attribute 'ordered_dataframe',failed +14718,tests.integ.modin.groupby.test_groupby_apply,test_df_with_single_level_labels[with_non_unique_index-group_keys_False-duplicate_df_rowwise-as_index_False-by_string_col_1-include_groups_True],"AssertionError: DataFrame.index are different + +Attribute ""names"" are different +[left]: [None] +[right]: ['index']",failed +14723,tests.integ.modin.frame.test_melt,test_melt_simple_path[data1],AttributeError: 'DataFrame' object has no attribute 'ordered_dataframe',failed +14725,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_external_by[include_groups_False-dropna_False-sort_False-group_keys_False-transform_returns_dataframe],TypeError: must pass an index to rename,failed +14728,tests.integ.modin.groupby.test_groupby_apply,test_df_with_single_level_labels[with_non_unique_index-group_keys_False-duplicate_df_rowwise-as_index_False-by_string_col_1-include_groups_False],"AssertionError: DataFrame.index are different + +Attribute ""names"" are different +[left]: [None] +[right]: ['index']",failed +14729,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_external_by[include_groups_False-dropna_False-sort_False-group_keys_False-non_transform_returns_series],"AssertionError: Series are different Series length are different [left]: 3, Index(['sum', 'mean', 'name'], dtype='object', name='custom_metrics') [right]: 6, Index(['sum', 'mean', 'name', 'sum', 'mean', 'name'], dtype='object')",failed -17976,tests.integ.modin.frame.test_merge,test_merge_left_on_right_on[right-False-B-right_i],KeyError: 'right_i',failed -17980,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_external_by[include_groups_False-dropna_False-sort_False-group_keys_False-transform_returns_series],[XPASS(strict)] SNOW-1238546,failed -18000,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_False-dropna_True-basic_snowpark_pandas_df-None-None-0-indices],"AssertionError: Actual type is not the same as expected type , and instead is type . Actual value is {0: [0], 1: [1], 2: [2], 3: [3], 4: [4], 5: [5]}",failed -18001,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_external_by[include_groups_False-dropna_False-sort_False-group_keys_False-return_scalar],"AssertionError: Series are different +14730,tests.integ.modin.frame.test_melt,test_melt_simple_path[data2],AttributeError: 'DataFrame' object has no attribute 'ordered_dataframe',failed +14732,tests.integ.modin.frame.test_loc,test_df_loc_set_general_col_key_type[series-row_key1-col_key1],"AssertionError: DataFrame.iloc[:, 3] (column name=""A"") are different + +DataFrame.iloc[:, 3] (column name=""A"") values are different (100.0 %) +[index]: [0, 1, 2] +[left]: [1, 4, 7] +[right]: [nan, 7.0, 4.0]",failed +14734,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_external_by[include_groups_False-dropna_False-sort_False-group_keys_False-transform_returns_series],[XPASS(strict)] SNOW-1238546,failed +14737,tests.integ.modin.frame.test_melt,test_melt_simple_path[data3],AttributeError: 'DataFrame' object has no attribute 'ordered_dataframe',failed +14738,tests.integ.modin.groupby.test_groupby_apply,test_grouping_series_by_external_by[include_groups_False-dropna_False-sort_False-group_keys_False-return_scalar],"AssertionError: Series are different Series values are different (100.0 %) [index]: [a, b] @@ -10638,948 +9128,2227 @@ dtype: float64_b] At positional index 0, first diff: __reduced__ 1 dtype: int64___reduced__ 0.5 dtype: float64_a != 1_0.5_a",failed -18003,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_True-dropna_False-basic_snowpark_pandas_df_with_missing_values-index_cols12-None-level12-indices],ValueError: Cannot remove 2 levels from an index with 2 levels: at least one level must be left.,failed -18006,tests.integ.modin.frame.test_reindex,test_reindex_index_fill_method_with_old_na_values_pandas_negative[bfill-100],Cannot qualify window in fillna.,xfailed -18015,tests.integ.modin.groupby.test_groupby_apply,test_non_callable_aggregation,AttributeError: 'str' object has no attribute '__name__'. Did you mean: '__ne__'?,failed -18017,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_False-dropna_True-basic_snowpark_pandas_df-col3-col3-None-groups],"AssertionError: Actual dict has the wrong key at position 0. Actual key 1.1 is not equal to expected key 3.1. +14741,tests.integ.modin.frame.test_loc,test_df_loc_set_general_col_key_type[series-row_key1-col_key2],"AssertionError: DataFrame.iloc[:, 4] (column name=""Y"") are different + +DataFrame.iloc[:, 4] (column name=""Y"") values are different (100.0 %) +[index]: [0, 1, 2] +[left]: [1, 4, 7] +[right]: [nan, nan, nan]",failed +14744,tests.integ.modin.groupby.test_groupby_apply,test_non_callable_aggregation,AttributeError: 'str' object has no attribute '__name__',failed +14745,tests.integ.modin.frame.test_melt,test_melt_simple_path[data4],AttributeError: 'DataFrame' object has no attribute 'ordered_dataframe',failed +14747,tests.integ.modin.groupby.test_groupby_apply,test_scalar_then_dataframe,[XPASS(strict)] Results in mismatch between udtf schema and the actual result. This should be rare in practice.,failed +14752,tests.integ.modin.groupby.test_groupby_apply,test_series_then_dataframe,[XPASS(strict)] Results in mismatch between udtf schema and the actual result. This should be rare in practice.,failed +14753,tests.integ.modin.frame.test_melt,test_melt_simple_path[data5],AttributeError: 'DataFrame' object has no attribute 'ordered_dataframe',failed +14757,tests.integ.modin.groupby.test_groupby_apply,test_scalar_then_series,pandas gives AttributeError: 'int' object has no attribute 'index'. See SNOW-1236959,xfailed +14759,tests.integ.modin.groupby.test_groupby_apply,test_df_with_single_level_labels[with_unique_index-group_keys_True-transform_that_changes_columns-as_index_True-by_index-include_groups_True],KeyError: 'index',failed +14764,tests.integ.modin.groupby.test_groupby_apply,test_scalar_then_series_then_dataframe,pandas gives AttributeError: 'int' object has no attribute 'index'. See SNOW-1236959,xfailed +14780,tests.integ.modin.groupby.test_groupby_apply,test_df_with_single_level_labels[with_unique_index-group_keys_True-transform_that_changes_columns-as_index_True-by_index-include_groups_False],KeyError: 'index',failed +14781,tests.integ.modin.frame.test_melt,test_melt_simple_path[data6],AttributeError: 'DataFrame' object has no attribute 'ordered_dataframe',failed +14786,tests.integ.modin.frame.test_melt,test_melt_simple_path[data7],AttributeError: 'DataFrame' object has no attribute 'ordered_dataframe',failed +14790,tests.integ.modin.groupby.test_groupby_apply,test_df_with_single_level_labels[with_unique_index-group_keys_True-transform_that_changes_columns-as_index_True-by_string_col_1-include_groups_True],"AssertionError: MultiIndex level [1] are different + +Attribute ""names"" are different +[left]: [None] +[right]: ['index']",failed +14793,tests.integ.modin.frame.test_melt,test_melt_simple_path[data8],AttributeError: 'DataFrame' object has no attribute 'ordered_dataframe',failed +14800,tests.integ.modin.frame.test_melt,test_melt_simple_path[data9],AttributeError: 'DataFrame' object has no attribute 'ordered_dataframe',failed +14803,tests.integ.modin.groupby.test_groupby_apply,test_df_with_single_level_labels[with_unique_index-group_keys_True-transform_that_changes_columns-as_index_True-by_string_col_1-include_groups_False],"AssertionError: MultiIndex level [1] are different + +Attribute ""names"" are different +[left]: [None] +[right]: ['index']",failed +14805,tests.integ.modin.frame.test_melt,test_melt_simple_path[data10],AttributeError: 'DataFrame' object has no attribute 'ordered_dataframe',failed +14808,tests.integ.modin.frame.test_melt,test_melt_simple_path[data11],AttributeError: 'DataFrame' object has no attribute 'ordered_dataframe',failed +14813,tests.integ.modin.frame.test_melt,test_melt_simple_path[data12],AttributeError: 'DataFrame' object has no attribute 'ordered_dataframe',failed +14815,tests.integ.modin.groupby.test_groupby_apply,test_df_with_single_level_labels[with_unique_index-group_keys_True-transform_that_changes_columns-as_index_False-by_index-include_groups_True],KeyError: 'index',failed +14817,tests.integ.modin.frame.test_melt,test_melt_simple_path[data13],AttributeError: 'DataFrame' object has no attribute 'ordered_dataframe',failed +14822,tests.integ.modin.frame.test_melt,test_melt_simple_path[data14],AttributeError: 'DataFrame' object has no attribute 'ordered_dataframe',failed +14825,tests.integ.modin.frame.test_astype,test_astype_from_timestamp_ltz[int16],"TypeError: Converting from datetime64[ns, America/Los_Angeles] to int16 is not supported. Do obj.astype('int64').astype(dtype) instead",failed +14826,tests.integ.modin.frame.test_melt,test_melt_simple_path[data15],AttributeError: 'DataFrame' object has no attribute 'ordered_dataframe',failed +14828,tests.integ.modin.groupby.test_groupby_apply,test_df_with_single_level_labels[with_unique_index-group_keys_True-transform_that_changes_columns-as_index_False-by_index-include_groups_False],KeyError: 'index',failed +14831,tests.integ.modin.frame.test_melt,test_melt_simple_path[data16],AttributeError: 'DataFrame' object has no attribute 'ordered_dataframe',failed +14838,tests.integ.modin.frame.test_melt,test_melt_simple_path[data17],AttributeError: 'DataFrame' object has no attribute 'ordered_dataframe',failed +14845,tests.integ.modin.groupby.test_groupby_apply,test_df_with_single_level_labels[with_unique_index-group_keys_True-transform_that_changes_columns-as_index_False-by_string_col_1-include_groups_True],"AssertionError: MultiIndex level [1] are different + +Attribute ""names"" are different +[left]: [None] +[right]: ['index']",failed +14856,tests.integ.modin.groupby.test_groupby_apply,test_df_with_single_level_labels[with_unique_index-group_keys_True-transform_that_changes_columns-as_index_False-by_string_col_1-include_groups_False],"AssertionError: MultiIndex level [1] are different + +Attribute ""names"" are different +[left]: [None] +[right]: ['index']",failed +14866,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_False-dropna_True-basic_snowpark_pandas_df-None-col1-None-groups],"AssertionError: Actual dict has the wrong key at position 0. Actual key 0 is not equal to expected key 2. +Actual dict: {0: [3, 5], 1: [1, 2], 2: [0, 4]} +Expected dict: {2: [0, 4], 1: [1, 2], 0: [3, 5]}",failed +14872,tests.integ.modin.groupby.test_groupby_apply,test_df_with_single_level_labels[with_unique_index-group_keys_True-duplicate_df_rowwise-as_index_True-by_index-include_groups_True],KeyError: 'index',failed +14875,tests.integ.modin.frame.test_melt,test_melt_simple_path[data18],AttributeError: 'DataFrame' object has no attribute 'ordered_dataframe',failed +14883,tests.integ.modin.frame.test_melt,test_melt_simple_path[data19],AttributeError: 'DataFrame' object has no attribute 'ordered_dataframe',failed +14893,tests.integ.modin.groupby.test_groupby_apply,test_df_with_single_level_labels[with_unique_index-group_keys_True-duplicate_df_rowwise-as_index_True-by_index-include_groups_False],KeyError: 'index',failed +14911,tests.integ.modin.groupby.test_groupby_apply,test_df_with_single_level_labels[with_unique_index-group_keys_True-duplicate_df_rowwise-as_index_True-by_string_col_1-include_groups_True],"AssertionError: MultiIndex level [1] are different + +Attribute ""names"" are different +[left]: [None] +[right]: ['index']",failed +14922,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_False-dropna_True-basic_snowpark_pandas_df-None-col1-None-indices],"AssertionError: Actual type is not the same as expected type , and instead is type . Actual value is {0: [3, 5], 1: [1, 2], 2: [0, 4]}",failed +14927,tests.integ.modin.groupby.test_groupby_apply,test_df_with_single_level_labels[with_unique_index-group_keys_True-duplicate_df_rowwise-as_index_True-by_string_col_1-include_groups_False],"AssertionError: MultiIndex level [1] are different + +Attribute ""names"" are different +[left]: [None] +[right]: ['index']",failed +14934,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_False-dropna_True-basic_snowpark_pandas_df-None-by1-None-groups],"AssertionError: Actual dict has the wrong key at position 0. Actual key (0, 5) is not equal to expected key (2, 4). +Actual dict: {(0, 5): [5], (0, 7): [3], (1, 5): [1], (1, 36): [2], (2, 4): [0, 4]} +Expected dict: {(2, 4): [0, 4], (1, 5): [1], (1, 36): [2], (0, 7): [3], (0, 5): [5]}",failed +14936,tests.integ.modin.frame.test_melt,test_multi_column_melt,ValueError: value_vars must be a list of tuples when columns are a MultiIndex,failed +14945,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_False-dropna_True-basic_snowpark_pandas_df-None-by1-None-indices],"AssertionError: Actual dict has the wrong key at position 0. Actual key (np.int64(0), np.int64(5)) is not equal to expected key (2, 4). +Actual dict: {(np.int64(0), np.int64(5)): array([5]), (np.int64(0), np.int64(7)): array([3]), (np.int64(1), np.int64(5)): array([1]), (np.int64(1), np.int64(36)): array([2]), (np.int64(2), np.int64(4)): array([0, 4])} +Expected dict: {(2, 4): array([0, 4]), (1, 5): array([1]), (1, 36): array([2]), (0, 7): array([3]), (0, 5): array([5])}",failed +14956,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_False-dropna_True-basic_snowpark_pandas_df-col3-col1-None-groups],"AssertionError: Actual dict has the wrong key at position 0. Actual key 0 is not equal to expected key 2. +Actual dict: {0: [10.0, 1.1], 1: [8.0, 12.0], 2: [3.1, 4.0]} +Expected dict: {2: [3.1, 4.0], 1: [8.0, 12.0], 0: [10.0, 1.1]}",failed +14964,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_False-dropna_True-basic_snowpark_pandas_df-col3-col1-None-indices],"AssertionError: Actual type is not the same as expected type , and instead is type . Actual value is {0: [3, 5], 1: [1, 2], 2: [0, 4]}",failed +14971,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_False-dropna_True-basic_snowpark_pandas_df-col3-by3-None-groups],"AssertionError: Actual dict has the wrong key at position 0. Actual key (0, 5) is not equal to expected key (2, 4). +Actual dict: {(0, 5): [1.1], (0, 7): [10.0], (1, 5): [8.0], (1, 36): [12.0], (2, 4): [3.1, 4.0]} +Expected dict: {(2, 4): [3.1, 4.0], (1, 5): [8.0], (1, 36): [12.0], (0, 7): [10.0], (0, 5): [1.1]}",failed +14974,tests.integ.modin.groupby.test_groupby_apply,test_df_with_single_level_labels[with_unique_index-group_keys_True-duplicate_df_rowwise-as_index_False-by_index-include_groups_True],KeyError: 'index',failed +14978,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_False-dropna_True-basic_snowpark_pandas_df-col3-by3-None-indices],"AssertionError: Actual dict has the wrong key at position 0. Actual key (np.int64(0), np.int64(5)) is not equal to expected key (2, 4). +Actual dict: {(np.int64(0), np.int64(5)): array([5]), (np.int64(0), np.int64(7)): array([3]), (np.int64(1), np.int64(5)): array([1]), (np.int64(1), np.int64(36)): array([2]), (np.int64(2), np.int64(4)): array([0, 4])} +Expected dict: {(2, 4): array([0, 4]), (1, 5): array([1]), (1, 36): array([2]), (0, 7): array([3]), (0, 5): array([5])}",failed +14982,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_False-dropna_True-basic_snowpark_pandas_df-index_cols4-col1-None-groups],"AssertionError: Actual dict has the wrong key at position 0. Actual key 0 is not equal to expected key 2. +Actual dict: {0: [(10.0, 15), (1.1, 6)], 1: [(8.0, 3), (12.0, 16)], 2: [(3.1, 17), (4.0, 5)]} +Expected dict: {2: [(3.1, 17), (4.0, 5)], 1: [(8.0, 3), (12.0, 16)], 0: [(10.0, 15), (1.1, 6)]}",failed +14984,tests.integ.modin.groupby.test_groupby_apply,test_df_with_single_level_labels[with_unique_index-group_keys_True-duplicate_df_rowwise-as_index_False-by_index-include_groups_False],KeyError: 'index',failed +14986,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_False-dropna_True-basic_snowpark_pandas_df-index_cols4-col1-None-indices],"AssertionError: Actual type is not the same as expected type , and instead is type . Actual value is {0: [3, 5], 1: [1, 2], 2: [0, 4]}",failed +14988,tests.integ.modin.groupby.test_groupby_apply,test_df_with_single_level_labels[with_unique_index-group_keys_True-duplicate_df_rowwise-as_index_False-by_string_col_1-include_groups_True],"AssertionError: MultiIndex level [1] are different + +Attribute ""names"" are different +[left]: [None] +[right]: ['index']",failed +14990,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_False-dropna_True-basic_snowpark_pandas_df-index_cols5-by5-None-groups],"AssertionError: Actual dict has the wrong key at position 0. Actual key (0, 5) is not equal to expected key (2, 4). +Actual dict: {(0, 5): [(1.1, 6)], (0, 7): [(10.0, 15)], (1, 5): [(8.0, 3)], (1, 36): [(12.0, 16)], (2, 4): [(3.1, 17), (4.0, 5)]} +Expected dict: {(2, 4): [(3.1, 17), (4.0, 5)], (1, 5): [(8.0, 3)], (1, 36): [(12.0, 16)], (0, 7): [(10.0, 15)], (0, 5): [(1.1, 6)]}",failed +14993,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_False-dropna_True-basic_snowpark_pandas_df-index_cols5-by5-None-indices],"AssertionError: Actual dict has the wrong key at position 0. Actual key (np.int64(0), np.int64(5)) is not equal to expected key (2, 4). +Actual dict: {(np.int64(0), np.int64(5)): array([5]), (np.int64(0), np.int64(7)): array([3]), (np.int64(1), np.int64(5)): array([1]), (np.int64(1), np.int64(36)): array([2]), (np.int64(2), np.int64(4)): array([0, 4])} +Expected dict: {(2, 4): array([0, 4]), (1, 5): array([1]), (1, 36): array([2]), (0, 7): array([3]), (0, 5): array([5])}",failed +14994,tests.integ.modin.groupby.test_groupby_apply,test_df_with_single_level_labels[with_unique_index-group_keys_True-duplicate_df_rowwise-as_index_False-by_string_col_1-include_groups_False],"AssertionError: MultiIndex level [1] are different + +Attribute ""names"" are different +[left]: [None] +[right]: ['index']",failed +14996,tests.integ.modin.frame.test_to_dynamic_table,test_to_dynamic_table_index[function-True-index_labels1-expected_index_columns1],"NotImplementedError: Modin supports the method DataFrame.to_dynamic_table on the Snowflake backend, but not on the backend Pandas.",failed +15000,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_False-dropna_True-basic_snowpark_pandas_df-None-None-0-indices],"AssertionError: Actual type is not the same as expected type , and instead is type . Actual value is {0: [0], 1: [1], 2: [2], 3: [3], 4: [4], 5: [5]}",failed +15003,tests.integ.modin.groupby.test_groupby_apply,test_df_with_single_level_labels[with_unique_index-group_keys_False-transform_that_changes_columns-as_index_True-by_index-include_groups_True],KeyError: 'index',failed +15004,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_False-dropna_True-basic_snowpark_pandas_df-col3-col3-None-groups],"AssertionError: Actual dict has the wrong key at position 0. Actual key 1.1 is not equal to expected key 3.1. Actual dict: {1.1: [1.1], 3.1: [3.1], 4.0: [4.0], 8.0: [8.0], 10.0: [10.0], 12.0: [12.0]} Expected dict: {3.1: [3.1], 8.0: [8.0], 12.0: [12.0], 10.0: [10.0], 4.0: [4.0], 1.1: [1.1]}",failed -18022,tests.integ.modin.frame.test_merge,test_merge_left_on_right_on[right-False-left_on9-right_on9],KeyError: 'right_i',failed -18024,tests.integ.modin.groupby.test_groupby_apply,test_scalar_then_dataframe,[XPASS(strict)] Results in mismatch between udtf schema and the actual result. This should be rare in practice.,failed -18030,tests.integ.modin.groupby.test_groupby_apply,test_series_then_dataframe,[XPASS(strict)] Results in mismatch between udtf schema and the actual result. This should be rare in practice.,failed -18032,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_False-dropna_True-basic_snowpark_pandas_df-col3-col3-None-indices],"AssertionError: Actual type is not the same as expected type , and instead is type . Actual value is {1.1: [5], 3.1: [0], 4.0: [4], 8.0: [1], 10.0: [3], 12.0: [2]}",failed -18038,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_False-dropna_True-basic_snowpark_pandas_df-None-col1-None-indices],"AssertionError: Actual type is not the same as expected type , and instead is type . Actual value is {0: [3, 5], 1: [1, 2], 2: [0, 4]}",failed -18044,tests.integ.modin.groupby.test_groupby_apply,test_scalar_then_series,pandas gives AttributeError: 'int' object has no attribute 'index'. See SNOW-1236959,xfailed -18050,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_False-dropna_True-basic_snowpark_pandas_df-col3-None-0-groups],"AssertionError: Actual dict has the wrong key at position 0. Actual key 1.1 is not equal to expected key 3.1. +15007,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_False-dropna_True-basic_snowpark_pandas_df-col3-col3-None-indices],"AssertionError: Actual type is not the same as expected type , and instead is type . Actual value is {1.1: [5], 3.1: [0], 4.0: [4], 8.0: [1], 10.0: [3], 12.0: [2]}",failed +15010,tests.integ.modin.groupby.test_groupby_apply,test_df_with_single_level_labels[with_unique_index-group_keys_False-transform_that_changes_columns-as_index_True-by_index-include_groups_False],KeyError: 'index',failed +15011,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_False-dropna_True-basic_snowpark_pandas_df-col3-None-0-groups],"AssertionError: Actual dict has the wrong key at position 0. Actual key 1.1 is not equal to expected key 3.1. Actual dict: {1.1: [1.1], 3.1: [3.1], 4.0: [4.0], 8.0: [8.0], 10.0: [10.0], 12.0: [12.0]} Expected dict: {3.1: [3.1], 8.0: [8.0], 12.0: [12.0], 10.0: [10.0], 4.0: [4.0], 1.1: [1.1]}",failed -18052,tests.integ.modin.frame.test_reindex,test_reindex_index_fill_method_with_old_na_values_pandas_negative[backfill-1],Cannot qualify window in fillna.,xfailed -18054,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_False-dropna_True-basic_snowpark_pandas_df-None-by1-None-groups],TypeError: assert_array_equal() got an unexpected keyword argument 'strict',failed -18057,tests.integ.modin.groupby.test_groupby_apply,test_scalar_then_series_then_dataframe,pandas gives AttributeError: 'int' object has no attribute 'index'. See SNOW-1236959,xfailed -18068,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_False-dropna_True-basic_snowpark_pandas_df-col3-None-0-indices],"AssertionError: Actual type is not the same as expected type , and instead is type . Actual value is {1.1: [5], 3.1: [0], 4.0: [4], 8.0: [1], 10.0: [3], 12.0: [2]}",failed -18083,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_False-dropna_True-basic_snowpark_pandas_df-None-by1-None-indices],TypeError: assert_array_equal() got an unexpected keyword argument 'strict',failed -18087,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_False-dropna_True-basic_snowpark_pandas_df-col3-None-col3-groups],"AssertionError: Actual dict has the wrong key at position 0. Actual key 1.1 is not equal to expected key 3.1. +15013,tests.integ.modin.frame.test_memory_usage,test_memory_usage,assert np.int64(8) == 0,failed +15014,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_False-dropna_True-basic_snowpark_pandas_df-col3-None-0-indices],"AssertionError: Actual type is not the same as expected type , and instead is type . Actual value is {1.1: [5], 3.1: [0], 4.0: [4], 8.0: [1], 10.0: [3], 12.0: [2]}",failed +15016,tests.integ.modin.groupby.test_groupby_apply,test_df_with_single_level_labels[with_unique_index-group_keys_False-transform_that_changes_columns-as_index_True-by_string_col_1-include_groups_True],"AssertionError: DataFrame.index are different + +Attribute ""names"" are different +[left]: [None] +[right]: ['index']",failed +15018,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_False-dropna_True-basic_snowpark_pandas_df-col3-None-col3-groups],"AssertionError: Actual dict has the wrong key at position 0. Actual key 1.1 is not equal to expected key 3.1. Actual dict: {1.1: [1.1], 3.1: [3.1], 4.0: [4.0], 8.0: [8.0], 10.0: [10.0], 12.0: [12.0]} Expected dict: {3.1: [3.1], 8.0: [8.0], 12.0: [12.0], 10.0: [10.0], 4.0: [4.0], 1.1: [1.1]}",failed -18100,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_False-dropna_True-basic_snowpark_pandas_df-col3-None-col3-indices],"AssertionError: Actual type is not the same as expected type , and instead is type . Actual value is {1.1: [5], 3.1: [0], 4.0: [4], 8.0: [1], 10.0: [3], 12.0: [2]}",failed -18110,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_False-dropna_True-basic_snowpark_pandas_df-index_cols10-col3-None-groups],"AssertionError: Actual dict has the wrong key at position 0. Actual key 1.1 is not equal to expected key 3.1. +15022,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_False-dropna_True-basic_snowpark_pandas_df-col3-None-col3-indices],"AssertionError: Actual type is not the same as expected type , and instead is type . Actual value is {1.1: [5], 3.1: [0], 4.0: [4], 8.0: [1], 10.0: [3], 12.0: [2]}",failed +15026,tests.integ.modin.groupby.test_groupby_apply,test_df_with_single_level_labels[with_unique_index-group_keys_False-transform_that_changes_columns-as_index_True-by_string_col_1-include_groups_False],"AssertionError: DataFrame.index are different + +Attribute ""names"" are different +[left]: [None] +[right]: ['index']",failed +15029,tests.integ.modin.frame.test_set_index,test_set_index_pass_arrays_duplicate[False-False-frame_of_ints_and_timedelta-Index-Index],"TypeError: The parameter ""keys"" may be a column key, one-dimensional array, or a list containing only valid column keys and one-dimensional arrays. Received column of type ",failed +15031,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_False-dropna_True-basic_snowpark_pandas_df-index_cols10-col3-None-groups],"AssertionError: Actual dict has the wrong key at position 0. Actual key 1.1 is not equal to expected key 3.1. Actual dict: {1.1: [(1.1, 6)], 3.1: [(3.1, 17)], 4.0: [(4.0, 5)], 8.0: [(8.0, 3)], 10.0: [(10.0, 15)], 12.0: [(12.0, 16)]} Expected dict: {3.1: [(3.1, 17)], 8.0: [(8.0, 3)], 12.0: [(12.0, 16)], 10.0: [(10.0, 15)], 4.0: [(4.0, 5)], 1.1: [(1.1, 6)]}",failed -18114,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_False-dropna_True-basic_snowpark_pandas_df-col3-col1-None-indices],"AssertionError: Actual type is not the same as expected type , and instead is type . Actual value is {0: [3, 5], 1: [1, 2], 2: [0, 4]}",failed -18121,tests.integ.modin.frame.test_reindex,test_reindex_index_fill_method_with_old_na_values_pandas_negative[backfill-2],Cannot qualify window in fillna.,xfailed -18123,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_False-dropna_True-basic_snowpark_pandas_df-index_cols10-col3-None-indices],"AssertionError: Actual type is not the same as expected type , and instead is type . Actual value is {1.1: [5], 3.1: [0], 4.0: [4], 8.0: [1], 10.0: [3], 12.0: [2]}",failed -18131,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_False-dropna_True-basic_snowpark_pandas_df-col3-by3-None-groups],TypeError: assert_array_equal() got an unexpected keyword argument 'strict',failed -18155,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_False-dropna_True-basic_snowpark_pandas_df-index_cols11-None-level11-groups],ValueError: Cannot remove 2 levels from an index with 2 levels: at least one level must be left.,failed -18160,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_False-dropna_True-basic_snowpark_pandas_df-col3-by3-None-indices],TypeError: assert_array_equal() got an unexpected keyword argument 'strict',failed -18167,tests.integ.modin.frame.test_reindex,test_reindex_index_fill_method_with_old_na_values_pandas_negative[backfill-100],Cannot qualify window in fillna.,xfailed -18182,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_False-dropna_True-basic_snowpark_pandas_df-index_cols11-None-level11-indices],ValueError: Cannot remove 2 levels from an index with 2 levels: at least one level must be left.,failed -18192,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_False-dropna_True-basic_snowpark_pandas_df-index_cols4-col1-None-indices],"AssertionError: Actual type is not the same as expected type , and instead is type . Actual value is {0: [3, 5], 1: [1, 2], 2: [0, 4]}",failed -18203,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_False-dropna_True-basic_snowpark_pandas_df-index_cols12-None-level12-groups],ValueError: Cannot remove 2 levels from an index with 2 levels: at least one level must be left.,failed -18210,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_False-dropna_True-basic_snowpark_pandas_df-index_cols5-by5-None-groups],TypeError: assert_array_equal() got an unexpected keyword argument 'strict',failed -18233,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_False-dropna_True-basic_snowpark_pandas_df-index_cols5-by5-None-indices],TypeError: assert_array_equal() got an unexpected keyword argument 'strict',failed -18247,tests.integ.modin.frame.test_reindex,test_reindex_index_fill_method_with_old_na_values_pandas_negative[pad-1],Cannot qualify window in fillna.,xfailed -18263,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_False-dropna_True-basic_snowpark_pandas_df-None-None-0-indices],"AssertionError: Actual type is not the same as expected type , and instead is type . Actual value is {0: [0], 1: [1], 2: [2], 3: [3], 4: [4], 5: [5]}",failed -18276,tests.integ.modin.frame.test_merge,test_merge_left_on_right_on[outer-True-left_i-right_i],KeyError: 'right_i',failed -18278,tests.integ.modin.frame.test_reindex,test_reindex_index_fill_method_with_old_na_values_pandas_negative[pad-2],Cannot qualify window in fillna.,xfailed -18282,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_False-dropna_True-basic_snowpark_pandas_df-index_cols12-None-level12-indices],ValueError: Cannot remove 2 levels from an index with 2 levels: at least one level must be left.,failed -18292,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_False-dropna_True-basic_snowpark_pandas_df-col3-col3-None-indices],"AssertionError: Actual type is not the same as expected type , and instead is type . Actual value is {1.1: [5], 3.1: [0], 4.0: [4], 8.0: [1], 10.0: [3], 12.0: [2]}",failed -18299,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_False-dropna_True-basic_snowpark_pandas_df_with_missing_values-None-col1-None-groups],"AssertionError: Actual dict has the wrong key at position 0. Actual key 0.0 is not equal to expected key 1.0. +15037,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_False-dropna_True-basic_snowpark_pandas_df-index_cols10-col3-None-indices],"AssertionError: Actual type is not the same as expected type , and instead is type . Actual value is {1.1: [5], 3.1: [0], 4.0: [4], 8.0: [1], 10.0: [3], 12.0: [2]}",failed +15043,tests.integ.modin.groupby.test_groupby_apply,test_df_with_single_level_labels[with_unique_index-group_keys_False-transform_that_changes_columns-as_index_False-by_index-include_groups_True],KeyError: 'index',failed +15048,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_False-dropna_True-basic_snowpark_pandas_df-index_cols11-None-level11-groups],ValueError: Cannot remove 2 levels from an index with 2 levels: at least one level must be left.,failed +15059,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_False-dropna_True-basic_snowpark_pandas_df-index_cols11-None-level11-indices],ValueError: Cannot remove 2 levels from an index with 2 levels: at least one level must be left.,failed +15061,tests.integ.modin.groupby.test_groupby_apply,test_df_with_single_level_labels[with_unique_index-group_keys_False-transform_that_changes_columns-as_index_False-by_index-include_groups_False],KeyError: 'index',failed +15070,tests.integ.modin.groupby.test_groupby_apply,test_df_with_single_level_labels[with_unique_index-group_keys_False-transform_that_changes_columns-as_index_False-by_string_col_1-include_groups_True],"AssertionError: DataFrame.index are different + +Attribute ""names"" are different +[left]: [None] +[right]: ['index']",failed +15073,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_False-dropna_True-basic_snowpark_pandas_df-index_cols12-None-level12-groups],ValueError: Cannot remove 2 levels from an index with 2 levels: at least one level must be left.,failed +15078,tests.integ.modin.groupby.test_groupby_apply,test_df_with_single_level_labels[with_unique_index-group_keys_False-transform_that_changes_columns-as_index_False-by_string_col_1-include_groups_False],"AssertionError: DataFrame.index are different + +Attribute ""names"" are different +[left]: [None] +[right]: ['index']",failed +15082,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_False-dropna_True-basic_snowpark_pandas_df-index_cols12-None-level12-indices],ValueError: Cannot remove 2 levels from an index with 2 levels: at least one level must be left.,failed +15086,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_False-dropna_True-basic_snowpark_pandas_df_with_missing_values-None-col1-None-groups],"AssertionError: Actual dict has the wrong key at position 0. Actual key 0.0 is not equal to expected key 1.0. Actual dict: {0.0: [3, 5], 1.0: [1, 2]} Expected dict: {1.0: [1, 2], 0.0: [3, 5]}",failed -18319,tests.integ.modin.frame.test_merge,test_merge_left_on_right_on[outer-True-left_i-A],KeyError: 'left_i',failed -18322,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_False-dropna_True-basic_snowpark_pandas_df_with_missing_values-None-col1-None-indices],"AssertionError: Actual type is not the same as expected type , and instead is type . Actual value is {0.0: [3, 5], 1.0: [1, 2]}",failed -18325,tests.integ.modin.frame.test_reindex,test_reindex_index_fill_method_with_old_na_values_pandas_negative[pad-100],Cannot qualify window in fillna.,xfailed -18333,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_False-dropna_True-basic_snowpark_pandas_df-col3-None-0-indices],"AssertionError: Actual type is not the same as expected type , and instead is type . Actual value is {1.1: [5], 3.1: [0], 4.0: [4], 8.0: [1], 10.0: [3], 12.0: [2]}",failed -18338,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_False-dropna_True-basic_snowpark_pandas_df_with_missing_values-None-by1-None-groups],"AssertionError: Actual and expected dicts have different lengths 5 and 3 respectively. +15089,tests.integ.modin.frame.test_reindex,test_reindex_index_fill_method_pandas_negative[1-bfill],ValueError: limit argument for 'backfill' method only well-defined if index and target are monotonic,failed +15091,tests.integ.modin.groupby.test_groupby_apply,test_df_with_single_level_labels[with_unique_index-group_keys_False-duplicate_df_rowwise-as_index_True-by_index-include_groups_True],KeyError: 'index',failed +15092,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_False-dropna_True-basic_snowpark_pandas_df_with_missing_values-None-col1-None-indices],"AssertionError: Actual type is not the same as expected type , and instead is type . Actual value is {0.0: [3, 5], 1.0: [1, 2]}",failed +15096,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_False-dropna_True-basic_snowpark_pandas_df_with_missing_values-None-by1-None-groups],"AssertionError: Actual and expected dicts have different lengths 5 and 3 respectively. Actual dict: {(nan, 4.0): [0, 4], (0.0, 5.0): [5], (0.0, 7.0): [3], (1.0, 5.0): [1], (1.0, nan): [2]} Expected dict: {(1.0, 5.0): [1], (0.0, 7.0): [3], (0.0, 5.0): [5]}",failed -18351,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_False-dropna_True-basic_snowpark_pandas_df_with_missing_values-None-by1-None-indices],TypeError: assert_array_equal() got an unexpected keyword argument 'strict',failed -18359,tests.integ.modin.frame.test_merge,test_merge_left_on_right_on[outer-True-B-right_i],KeyError: 'right_i',failed -18361,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_False-dropna_True-basic_snowpark_pandas_df-col3-None-col3-indices],"AssertionError: Actual type is not the same as expected type , and instead is type . Actual value is {1.1: [5], 3.1: [0], 4.0: [4], 8.0: [1], 10.0: [3], 12.0: [2]}",failed -18364,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_False-dropna_True-basic_snowpark_pandas_df_with_missing_values-col3-col1-None-groups],"AssertionError: Actual dict has the wrong key at position 0. Actual key 0.0 is not equal to expected key 1.0. +15102,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_False-dropna_True-basic_snowpark_pandas_df_with_missing_values-None-by1-None-indices],"AssertionError: Actual dict has the wrong key at position 0. Actual key (np.float64(0.0), np.float64(5.0)) is not equal to expected key (1.0, 5.0). +Actual dict: {(np.float64(0.0), np.float64(5.0)): array([5]), (np.float64(0.0), np.float64(7.0)): array([3]), (np.float64(1.0), np.float64(5.0)): array([1])} +Expected dict: {(1.0, 5.0): array([1]), (0.0, 7.0): array([3]), (0.0, 5.0): array([5])}",failed +15103,tests.integ.modin.groupby.test_groupby_apply,test_df_with_single_level_labels[with_unique_index-group_keys_False-duplicate_df_rowwise-as_index_True-by_index-include_groups_False],KeyError: 'index',failed +15105,tests.integ.modin.frame.test_reindex,test_reindex_index_fill_method_pandas_negative[1-backfill],ValueError: limit argument for 'backfill' method only well-defined if index and target are monotonic,failed +15109,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_False-dropna_True-basic_snowpark_pandas_df_with_missing_values-col3-col1-None-groups],"AssertionError: Actual dict has the wrong key at position 0. Actual key 0.0 is not equal to expected key 1.0. Actual dict: {0.0: [10.0, nan], 1.0: [8.0, 12.0]} Expected dict: {1.0: [8.0, 12.0], 0.0: [10.0, nan]}",failed -18382,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_False-dropna_True-basic_snowpark_pandas_df_with_missing_values-col3-col1-None-indices],"AssertionError: Actual type is not the same as expected type , and instead is type . Actual value is {0.0: [3, 5], 1.0: [1, 2]}",failed -18398,tests.integ.modin.frame.test_merge,test_merge_left_on_right_on[outer-True-left_on9-right_on9],KeyError: 'right_i',failed -18399,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_False-dropna_True-basic_snowpark_pandas_df_with_missing_values-col3-by3-None-groups],"AssertionError: Actual and expected dicts have different lengths 5 and 3 respectively. +15110,tests.integ.modin.groupby.test_groupby_apply,test_df_with_single_level_labels[with_unique_index-group_keys_False-duplicate_df_rowwise-as_index_True-by_string_col_1-include_groups_True],"AssertionError: DataFrame.index are different + +Attribute ""names"" are different +[left]: [None] +[right]: ['index']",failed +15114,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_False-dropna_True-basic_snowpark_pandas_df_with_missing_values-col3-col1-None-indices],"AssertionError: Actual type is not the same as expected type , and instead is type . Actual value is {0.0: [3, 5], 1.0: [1, 2]}",failed +15116,tests.integ.modin.groupby.test_groupby_apply,test_df_with_single_level_labels[with_unique_index-group_keys_False-duplicate_df_rowwise-as_index_True-by_string_col_1-include_groups_False],"AssertionError: DataFrame.index are different + +Attribute ""names"" are different +[left]: [None] +[right]: ['index']",failed +15119,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_False-dropna_True-basic_snowpark_pandas_df_with_missing_values-col3-by3-None-groups],"AssertionError: Actual and expected dicts have different lengths 5 and 3 respectively. Actual dict: {(nan, 4.0): [3.1, 4.0], (0.0, 5.0): [nan], (0.0, 7.0): [10.0], (1.0, 5.0): [8.0], (1.0, nan): [12.0]} Expected dict: {(1.0, 5.0): [8.0], (0.0, 7.0): [10.0], (0.0, 5.0): [nan]}",failed -18402,tests.integ.modin.frame.test_reindex,test_reindex_index_fill_method_with_old_na_values_pandas_negative[ffill-1],Cannot qualify window in fillna.,xfailed -18416,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_False-dropna_True-basic_snowpark_pandas_df_with_missing_values-col3-by3-None-indices],TypeError: assert_array_equal() got an unexpected keyword argument 'strict',failed -18429,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_False-dropna_True-basic_snowpark_pandas_df_with_missing_values-index_cols4-col1-None-groups],"AssertionError: Actual dict has the wrong key at position 0. Actual key 0.0 is not equal to expected key 1.0. +15123,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_False-dropna_True-basic_snowpark_pandas_df_with_missing_values-col3-by3-None-indices],"AssertionError: Actual dict has the wrong key at position 0. Actual key (np.float64(0.0), np.float64(5.0)) is not equal to expected key (1.0, 5.0). +Actual dict: {(np.float64(0.0), np.float64(5.0)): array([5]), (np.float64(0.0), np.float64(7.0)): array([3]), (np.float64(1.0), np.float64(5.0)): array([1])} +Expected dict: {(1.0, 5.0): array([1]), (0.0, 7.0): array([3]), (0.0, 5.0): array([5])}",failed +15129,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_False-dropna_True-basic_snowpark_pandas_df_with_missing_values-index_cols4-col1-None-groups],"AssertionError: Actual dict has the wrong key at position 0. Actual key 0.0 is not equal to expected key 1.0. Actual dict: {0.0: [(10.0, 15.0), (nan, nan)], 1.0: [(8.0, 3.0), (12.0, 16.0)]} Expected dict: {1.0: [(8.0, 3.0), (12.0, 16.0)], 0.0: [(10.0, 15.0), (nan, nan)]}",failed -18430,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_False-dropna_True-basic_snowpark_pandas_df-index_cols10-col3-None-indices],"AssertionError: Actual type is not the same as expected type , and instead is type . Actual value is {1.1: [5], 3.1: [0], 4.0: [4], 8.0: [1], 10.0: [3], 12.0: [2]}",failed -18432,tests.integ.modin.frame.test_reindex,test_reindex_index_fill_method_with_old_na_values_pandas_negative[ffill-2],Cannot qualify window in fillna.,xfailed -18442,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_False-dropna_True-basic_snowpark_pandas_df_with_missing_values-index_cols4-col1-None-indices],"AssertionError: Actual type is not the same as expected type , and instead is type . Actual value is {0.0: [3, 5], 1.0: [1, 2]}",failed -18455,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_False-dropna_True-basic_snowpark_pandas_df-index_cols11-None-level11-groups],ValueError: Cannot remove 2 levels from an index with 2 levels: at least one level must be left.,failed -18457,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_False-dropna_True-basic_snowpark_pandas_df_with_missing_values-index_cols5-by5-None-groups],"AssertionError: Actual and expected dicts have different lengths 5 and 3 respectively. +15133,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_False-dropna_True-basic_snowpark_pandas_df_with_missing_values-index_cols4-col1-None-indices],"AssertionError: Actual type is not the same as expected type , and instead is type . Actual value is {0.0: [3, 5], 1.0: [1, 2]}",failed +15137,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_False-dropna_True-basic_snowpark_pandas_df_with_missing_values-index_cols5-by5-None-groups],"AssertionError: Actual and expected dicts have different lengths 5 and 3 respectively. Actual dict: {(nan, 4.0): [(3.1, 17.0), (4.0, nan)], (0.0, 5.0): [(nan, nan)], (0.0, 7.0): [(10.0, 15.0)], (1.0, 5.0): [(8.0, 3.0)], (1.0, nan): [(12.0, 16.0)]} Expected dict: {(1.0, 5.0): [(8.0, 3.0)], (0.0, 7.0): [(10.0, 15.0)], (0.0, 5.0): [(nan, nan)]}",failed -18462,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_False-dropna_True-basic_snowpark_pandas_df_with_missing_values-index_cols5-by5-None-indices],TypeError: assert_array_equal() got an unexpected keyword argument 'strict',failed -18472,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_False-dropna_True-basic_snowpark_pandas_df-index_cols11-None-level11-indices],ValueError: Cannot remove 2 levels from an index with 2 levels: at least one level must be left.,failed -18476,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_False-dropna_True-basic_snowpark_pandas_df_with_missing_values-None-None-0-indices],"AssertionError: Actual type is not the same as expected type , and instead is type . Actual value is {0: [0], 1: [1], 2: [2], 3: [3], 4: [4], 5: [5]}",failed -18483,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_False-dropna_True-basic_snowpark_pandas_df_with_missing_values-col3-col3-None-groups],"AssertionError: Actual dict has the wrong key at position 1. Actual key 4.0 is not equal to expected key 8.0. +15138,tests.integ.modin.frame.test_reindex,test_reindex_index_fill_method_pandas_negative[1-pad],ValueError: limit argument for 'pad' method only well-defined if index and target are monotonic,failed +15143,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_False-dropna_True-basic_snowpark_pandas_df_with_missing_values-index_cols5-by5-None-indices],"AssertionError: Actual dict has the wrong key at position 0. Actual key (np.float64(0.0), np.float64(5.0)) is not equal to expected key (1.0, 5.0). +Actual dict: {(np.float64(0.0), np.float64(5.0)): array([5]), (np.float64(0.0), np.float64(7.0)): array([3]), (np.float64(1.0), np.float64(5.0)): array([1])} +Expected dict: {(1.0, 5.0): array([1]), (0.0, 7.0): array([3]), (0.0, 5.0): array([5])}",failed +15152,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_False-dropna_True-basic_snowpark_pandas_df_with_missing_values-None-None-0-indices],"AssertionError: Actual type is not the same as expected type , and instead is type . Actual value is {0: [0], 1: [1], 2: [2], 3: [3], 4: [4], 5: [5]}",failed +15153,tests.integ.modin.frame.test_reindex,test_reindex_index_fill_method_pandas_negative[1-ffill],ValueError: limit argument for 'pad' method only well-defined if index and target are monotonic,failed +15160,tests.integ.modin.groupby.test_groupby_apply,test_df_with_single_level_labels[with_unique_index-group_keys_False-duplicate_df_rowwise-as_index_False-by_index-include_groups_True],KeyError: 'index',failed +15161,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_False-dropna_True-basic_snowpark_pandas_df_with_missing_values-col3-col3-None-groups],"AssertionError: Actual dict has the wrong key at position 1. Actual key 4.0 is not equal to expected key 8.0. Actual dict: {3.1: [3.1], 4.0: [4.0], 8.0: [8.0], 10.0: [10.0], 12.0: [12.0]} Expected dict: {3.1: [3.1], 8.0: [8.0], 12.0: [12.0], 10.0: [10.0], 4.0: [4.0]}",failed -18486,tests.integ.modin.frame.test_reindex,test_reindex_index_fill_method_with_old_na_values_pandas_negative[ffill-100],Cannot qualify window in fillna.,xfailed -18489,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_False-dropna_True-basic_snowpark_pandas_df-index_cols12-None-level12-groups],ValueError: Cannot remove 2 levels from an index with 2 levels: at least one level must be left.,failed -18493,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_False-dropna_True-basic_snowpark_pandas_df_with_missing_values-col3-col3-None-indices],"AssertionError: Actual type is not the same as expected type , and instead is type . Actual value is {3.1: [0], 4.0: [4], 8.0: [1], 10.0: [3], 12.0: [2]}",failed -18501,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_False-dropna_True-basic_snowpark_pandas_df_with_missing_values-col3-None-0-groups],"AssertionError: Actual dict has the wrong key at position 1. Actual key 4.0 is not equal to expected key 8.0. +15166,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_False-dropna_True-basic_snowpark_pandas_df_with_missing_values-col3-col3-None-indices],"AssertionError: Actual type is not the same as expected type , and instead is type . Actual value is {3.1: [0], 4.0: [4], 8.0: [1], 10.0: [3], 12.0: [2]}",failed +15170,tests.integ.modin.groupby.test_groupby_apply,test_df_with_single_level_labels[with_unique_index-group_keys_False-duplicate_df_rowwise-as_index_False-by_index-include_groups_False],KeyError: 'index',failed +15174,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_False-dropna_True-basic_snowpark_pandas_df_with_missing_values-col3-None-0-groups],"AssertionError: Actual dict has the wrong key at position 1. Actual key 4.0 is not equal to expected key 8.0. Actual dict: {3.1: [3.1], 4.0: [4.0], 8.0: [8.0], 10.0: [10.0], 12.0: [12.0]} Expected dict: {3.1: [3.1], 8.0: [8.0], 12.0: [12.0], 10.0: [10.0], 4.0: [4.0]}",failed -18506,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_False-dropna_True-basic_snowpark_pandas_df-index_cols12-None-level12-indices],ValueError: Cannot remove 2 levels from an index with 2 levels: at least one level must be left.,failed -18509,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_False-dropna_True-basic_snowpark_pandas_df_with_missing_values-col3-None-0-indices],"AssertionError: Actual type is not the same as expected type , and instead is type . Actual value is {3.1: [0], 4.0: [4], 8.0: [1], 10.0: [3], 12.0: [2]}",failed -18518,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_False-dropna_True-basic_snowpark_pandas_df_with_missing_values-col3-None-col3-groups],"AssertionError: Actual dict has the wrong key at position 1. Actual key 4.0 is not equal to expected key 8.0. +15178,tests.integ.modin.groupby.test_groupby_apply,test_df_with_single_level_labels[with_unique_index-group_keys_False-duplicate_df_rowwise-as_index_False-by_string_col_1-include_groups_True],"AssertionError: DataFrame.index are different + +Attribute ""names"" are different +[left]: [None] +[right]: ['index']",failed +15179,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_False-dropna_True-basic_snowpark_pandas_df_with_missing_values-col3-None-0-indices],"AssertionError: Actual type is not the same as expected type , and instead is type . Actual value is {3.1: [0], 4.0: [4], 8.0: [1], 10.0: [3], 12.0: [2]}",failed +15182,tests.integ.modin.frame.test_set_index,test_set_index_raise_keys_negative[True-True-frame_of_ints-keys1],"AssertionError: Snowpark pandas Exception 'X' doesn't match pandas Exception ""None of ['X'] are in the columns""",failed +15185,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_False-dropna_True-basic_snowpark_pandas_df_with_missing_values-col3-None-col3-groups],"AssertionError: Actual dict has the wrong key at position 1. Actual key 4.0 is not equal to expected key 8.0. Actual dict: {3.1: [3.1], 4.0: [4.0], 8.0: [8.0], 10.0: [10.0], 12.0: [12.0]} Expected dict: {3.1: [3.1], 8.0: [8.0], 12.0: [12.0], 10.0: [10.0], 4.0: [4.0]}",failed -18524,tests.integ.modin.frame.test_merge,test_merge_left_on_right_on[outer-False-left_i-right_i],KeyError: 'right_i',failed -18526,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_False-dropna_True-basic_snowpark_pandas_df_with_missing_values-col3-None-col3-indices],"AssertionError: Actual type is not the same as expected type , and instead is type . Actual value is {3.1: [0], 4.0: [4], 8.0: [1], 10.0: [3], 12.0: [2]}",failed -18530,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_False-dropna_True-basic_snowpark_pandas_df_with_missing_values-None-col1-None-indices],"AssertionError: Actual type is not the same as expected type , and instead is type . Actual value is {0.0: [3, 5], 1.0: [1, 2]}",failed -18535,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_False-dropna_True-basic_snowpark_pandas_df_with_missing_values-index_cols10-col3-None-groups],"AssertionError: Actual dict has the wrong key at position 1. Actual key 4.0 is not equal to expected key 8.0. +15190,tests.integ.modin.groupby.test_groupby_apply,test_df_with_single_level_labels[with_unique_index-group_keys_False-duplicate_df_rowwise-as_index_False-by_string_col_1-include_groups_False],"AssertionError: DataFrame.index are different + +Attribute ""names"" are different +[left]: [None] +[right]: ['index']",failed +15192,tests.integ.modin.frame.test_reindex,test_reindex_index_fill_method_pandas_negative[2-bfill],ValueError: limit argument for 'backfill' method only well-defined if index and target are monotonic,failed +15193,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_False-dropna_True-basic_snowpark_pandas_df_with_missing_values-col3-None-col3-indices],"AssertionError: Actual type is not the same as expected type , and instead is type . Actual value is {3.1: [0], 4.0: [4], 8.0: [1], 10.0: [3], 12.0: [2]}",failed +15195,tests.integ.modin.frame.test_set_index,test_set_index_raise_keys_negative[True-True-frame_of_ints_and_timedelta-keys1],"AssertionError: Snowpark pandas Exception 'X' doesn't match pandas Exception ""None of ['X'] are in the columns""",failed +15199,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_False-dropna_True-basic_snowpark_pandas_df_with_missing_values-index_cols10-col3-None-groups],"AssertionError: Actual dict has the wrong key at position 1. Actual key 4.0 is not equal to expected key 8.0. Actual dict: {3.1: [(3.1, 17.0)], 4.0: [(4.0, nan)], 8.0: [(8.0, 3.0)], 10.0: [(10.0, 15.0)], 12.0: [(12.0, 16.0)]} Expected dict: {3.1: [(3.1, 17.0)], 8.0: [(8.0, 3.0)], 12.0: [(12.0, 16.0)], 10.0: [(10.0, 15.0)], 4.0: [(4.0, nan)]}",failed -18539,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_False-dropna_True-basic_snowpark_pandas_df_with_missing_values-None-by1-None-groups],"AssertionError: Actual and expected dicts have different lengths 5 and 3 respectively. -Actual dict: {(nan, 4.0): [0, 4], (0.0, 5.0): [5], (0.0, 7.0): [3], (1.0, 5.0): [1], (1.0, nan): [2]} -Expected dict: {(0.0, 5.0): [5], (0.0, 7.0): [3], (1.0, 5.0): [1]}",failed -18544,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_False-dropna_True-basic_snowpark_pandas_df_with_missing_values-index_cols10-col3-None-indices],"AssertionError: Actual type is not the same as expected type , and instead is type . Actual value is {3.1: [0], 4.0: [4], 8.0: [1], 10.0: [3], 12.0: [2]}",failed -18550,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_False-dropna_True-basic_snowpark_pandas_df_with_missing_values-None-by1-None-indices],TypeError: assert_array_equal() got an unexpected keyword argument 'strict',failed -18556,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_False-dropna_True-basic_snowpark_pandas_df_with_missing_values-index_cols11-None-level11-groups],ValueError: Cannot remove 2 levels from an index with 2 levels: at least one level must be left.,failed -18566,tests.integ.modin.groupby.test_groupby_basic_agg,test_single_group_row_groupby_with_variant[0-by_col_data1-expected_groupby_col1],TypeError: unhashable type: 'list',failed -18568,tests.integ.modin.frame.test_merge,test_merge_left_on_right_on[outer-False-left_i-A],KeyError: 'left_i',failed -18570,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_False-dropna_True-basic_snowpark_pandas_df_with_missing_values-index_cols11-None-level11-indices],ValueError: Cannot remove 2 levels from an index with 2 levels: at least one level must be left.,failed -18572,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_False-dropna_True-basic_snowpark_pandas_df_with_missing_values-col3-col1-None-indices],"AssertionError: Actual type is not the same as expected type , and instead is type . Actual value is {0.0: [3, 5], 1.0: [1, 2]}",failed -18580,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_False-dropna_True-basic_snowpark_pandas_df_with_missing_values-col3-by3-None-groups],"AssertionError: Actual and expected dicts have different lengths 5 and 3 respectively. -Actual dict: {(nan, 4.0): [3.1, 4.0], (0.0, 5.0): [nan], (0.0, 7.0): [10.0], (1.0, 5.0): [8.0], (1.0, nan): [12.0]} -Expected dict: {(0.0, 5.0): [nan], (0.0, 7.0): [10.0], (1.0, 5.0): [8.0]}",failed -18581,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_False-dropna_True-basic_snowpark_pandas_df_with_missing_values-index_cols12-None-level12-groups],ValueError: Cannot remove 2 levels from an index with 2 levels: at least one level must be left.,failed -18590,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_False-dropna_True-basic_snowpark_pandas_df_with_missing_values-col3-by3-None-indices],TypeError: assert_array_equal() got an unexpected keyword argument 'strict',failed -18591,tests.integ.modin.frame.test_merge,test_merge_left_on_right_on[outer-False-B-right_i],KeyError: 'right_i',failed -18594,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_False-dropna_True-basic_snowpark_pandas_df_with_missing_values-index_cols12-None-level12-indices],ValueError: Cannot remove 2 levels from an index with 2 levels: at least one level must be left.,failed -18600,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_False-dropna_False-basic_snowpark_pandas_df-None-col1-None-groups],"AssertionError: Actual dict has the wrong key at position 0. Actual key 0 is not equal to expected key 2. +15202,tests.integ.modin.frame.test_astype,test_astype_from_timestamp_ltz[uint16],"TypeError: Converting from datetime64[ns, America/Los_Angeles] to uint16 is not supported. Do obj.astype('int64').astype(dtype) instead",failed +15205,tests.integ.modin.frame.test_set_index,test_set_index_raise_keys_negative[True-False-frame_of_ints-keys1],"AssertionError: Snowpark pandas Exception 'X' doesn't match pandas Exception ""None of ['X'] are in the columns""",failed +15206,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_False-dropna_True-basic_snowpark_pandas_df_with_missing_values-index_cols10-col3-None-indices],"AssertionError: Actual type is not the same as expected type , and instead is type . Actual value is {3.1: [0], 4.0: [4], 8.0: [1], 10.0: [3], 12.0: [2]}",failed +15210,tests.integ.modin.frame.test_reindex,test_reindex_index_fill_method_pandas_negative[2-backfill],ValueError: limit argument for 'backfill' method only well-defined if index and target are monotonic,failed +15214,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_False-dropna_True-basic_snowpark_pandas_df_with_missing_values-index_cols11-None-level11-groups],ValueError: Cannot remove 2 levels from an index with 2 levels: at least one level must be left.,failed +15219,tests.integ.modin.frame.test_set_index,test_set_index_raise_keys_negative[True-False-frame_of_ints_and_timedelta-keys1],"AssertionError: Snowpark pandas Exception 'X' doesn't match pandas Exception ""None of ['X'] are in the columns""",failed +15224,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_False-dropna_True-basic_snowpark_pandas_df_with_missing_values-index_cols11-None-level11-indices],ValueError: Cannot remove 2 levels from an index with 2 levels: at least one level must be left.,failed +15225,tests.integ.modin.frame.test_reindex,test_reindex_index_fill_method_pandas_negative[2-pad],ValueError: limit argument for 'pad' method only well-defined if index and target are monotonic,failed +15244,tests.integ.modin.frame.test_to_dynamic_table,test_to_dynamic_table_index[function-False-None-expected_index_columns2],"NotImplementedError: Modin supports the method DataFrame.to_dynamic_table on the Snowflake backend, but not on the backend Pandas.",failed +15257,tests.integ.modin.groupby.test_groupby_apply,test_numpy_ints_in_result[result2-include_groups_True],"[XPASS(strict)] SNOW-1229760: np.int64 is nested inside the single value of the dataframe, so we don't find it or convert it to int.",failed +15260,tests.integ.modin.groupby.test_groupby_apply,test_numpy_ints_in_result[result2-include_groups_False],"[XPASS(strict)] SNOW-1229760: np.int64 is nested inside the single value of the dataframe, so we don't find it or convert it to int.",failed +15267,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_False-dropna_True-basic_snowpark_pandas_df_with_missing_values-index_cols12-None-level12-groups],ValueError: Cannot remove 2 levels from an index with 2 levels: at least one level must be left.,failed +15269,tests.integ.modin.frame.test_reindex,test_reindex_index_fill_method_pandas_negative[2-ffill],ValueError: limit argument for 'pad' method only well-defined if index and target are monotonic,failed +15280,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_False-dropna_True-basic_snowpark_pandas_df_with_missing_values-index_cols12-None-level12-indices],ValueError: Cannot remove 2 levels from an index with 2 levels: at least one level must be left.,failed +15286,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_False-dropna_False-basic_snowpark_pandas_df-None-col1-None-groups],"AssertionError: Actual dict has the wrong key at position 0. Actual key 0 is not equal to expected key 2. Actual dict: {0: [3, 5], 1: [1, 2], 2: [0, 4]} Expected dict: {2: [0, 4], 1: [1, 2], 0: [3, 5]}",failed -18604,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_False-dropna_True-basic_snowpark_pandas_df_with_missing_values-index_cols4-col1-None-indices],"AssertionError: Actual type is not the same as expected type , and instead is type . Actual value is {0.0: [3, 5], 1.0: [1, 2]}",failed -18606,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_False-dropna_False-basic_snowpark_pandas_df-None-col1-None-indices],"AssertionError: Actual dict has the wrong key at position 0. Actual key 0 is not equal to expected key 2. -Actual dict: {0: array([3, 5]), 1: array([1, 2]), 2: array([0, 4])} +15287,tests.integ.modin.frame.test_reindex,test_reindex_index_fill_method_pandas_negative[100-bfill],ValueError: limit argument for 'backfill' method only well-defined if index and target are monotonic,failed +15291,tests.integ.modin.groupby.test_groupby_apply,test_duplicate_index_groupby_mismatch_with_pandas[include_groups_True],KeyError: 'index',failed +15297,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_False-dropna_False-basic_snowpark_pandas_df-None-col1-None-indices],"AssertionError: Actual dict has the wrong key at position 0. Actual key 0 is not equal to expected key 2. +Actual dict: {np.int64(0): array([3, 5]), np.int64(1): array([1, 2]), np.int64(2): array([0, 4])} Expected dict: {2: array([0, 4]), 1: array([1, 2]), 0: array([3, 5])}",failed -18608,tests.integ.modin.frame.test_merge,test_merge_left_on_right_on[outer-False-left_on9-right_on9],KeyError: 'right_i',failed -18613,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_False-dropna_True-basic_snowpark_pandas_df_with_missing_values-index_cols5-by5-None-groups],"AssertionError: Actual and expected dicts have different lengths 5 and 3 respectively. -Actual dict: {(nan, 4.0): [(3.1, 17.0), (4.0, nan)], (0.0, 5.0): [(nan, nan)], (0.0, 7.0): [(10.0, 15.0)], (1.0, 5.0): [(8.0, 3.0)], (1.0, nan): [(12.0, 16.0)]} -Expected dict: {(0.0, 5.0): [(nan, nan)], (0.0, 7.0): [(10.0, 15.0)], (1.0, 5.0): [(8.0, 3.0)]}",failed -18614,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_False-dropna_False-basic_snowpark_pandas_df-None-by1-None-groups],TypeError: assert_array_equal() got an unexpected keyword argument 'strict',failed -18623,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_False-dropna_False-basic_snowpark_pandas_df-None-by1-None-indices],TypeError: assert_array_equal() got an unexpected keyword argument 'strict',failed -18624,tests.integ.modin.groupby.test_groupby_transform,test_return_timedelta,[XPASS(strict)] SNOW-1619940,failed -18625,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_False-dropna_True-basic_snowpark_pandas_df_with_missing_values-index_cols5-by5-None-indices],TypeError: assert_array_equal() got an unexpected keyword argument 'strict',failed -18628,tests.integ.modin.frame.test_merge,test_merge_left_on_right_index[left-True-left_i],KeyError: 'left_i',failed -18629,tests.integ.modin.groupby.test_groupby_transform,test_timedelta_input[timedelta_column],[XPASS(strict)] ,failed -18631,tests.integ.modin.groupby.test_groupby_transform,test_timedelta_input[timedelta_index],[XPASS(strict)] ,failed -18634,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_False-dropna_False-basic_snowpark_pandas_df-col3-col1-None-groups],"AssertionError: Actual dict has the wrong key at position 0. Actual key 0 is not equal to expected key 2. +15301,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_False-dropna_False-basic_snowpark_pandas_df-None-by1-None-groups],"AssertionError: Actual dict has the wrong key at position 0. Actual key (0, 5) is not equal to expected key (2, 4). +Actual dict: {(0, 5): [5], (0, 7): [3], (1, 5): [1], (1, 36): [2], (2, 4): [0, 4]} +Expected dict: {(2, 4): [0, 4], (1, 5): [1], (1, 36): [2], (0, 7): [3], (0, 5): [5]}",failed +15304,tests.integ.modin.frame.test_reindex,test_reindex_index_fill_method_pandas_negative[100-backfill],ValueError: limit argument for 'backfill' method only well-defined if index and target are monotonic,failed +15306,tests.integ.modin.groupby.test_groupby_apply,test_duplicate_index_groupby_mismatch_with_pandas[include_groups_False],KeyError: 'index',failed +15308,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_False-dropna_False-basic_snowpark_pandas_df-None-by1-None-indices],"AssertionError: Actual dict has the wrong key at position 0. Actual key (np.int64(0), np.int64(5)) is not equal to expected key (2, 4). +Actual dict: {(np.int64(0), np.int64(5)): array([5]), (np.int64(0), np.int64(7)): array([3]), (np.int64(1), np.int64(5)): array([1]), (np.int64(1), np.int64(36)): array([2]), (np.int64(2), np.int64(4)): array([0, 4])} +Expected dict: {(2, 4): array([0, 4]), (1, 5): array([1]), (1, 36): array([2]), (0, 7): array([3]), (0, 5): array([5])}",failed +15315,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_False-dropna_False-basic_snowpark_pandas_df-col3-col1-None-groups],"AssertionError: Actual dict has the wrong key at position 0. Actual key 0 is not equal to expected key 2. Actual dict: {0: [10.0, 1.1], 1: [8.0, 12.0], 2: [3.1, 4.0]} Expected dict: {2: [3.1, 4.0], 1: [8.0, 12.0], 0: [10.0, 1.1]}",failed -18639,tests.integ.modin.frame.test_merge,test_merge_left_on_right_index[left-True-A],KeyError: 'None of [None] are in the columns',failed -18651,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_False-dropna_False-basic_snowpark_pandas_df-col3-col1-None-indices],"AssertionError: Actual dict has the wrong key at position 0. Actual key 0 is not equal to expected key 2. -Actual dict: {0: array([3, 5]), 1: array([1, 2]), 2: array([0, 4])} +15318,tests.integ.modin.frame.test_set_index,test_set_index_with_index_series_name[sample0],"AssertionError: DataFrame.index are different + +Attribute ""names"" are different +[left]: [None] +[right]: ['num']",failed +15322,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_False-dropna_False-basic_snowpark_pandas_df-col3-col1-None-indices],"AssertionError: Actual dict has the wrong key at position 0. Actual key 0 is not equal to expected key 2. +Actual dict: {np.int64(0): array([3, 5]), np.int64(1): array([1, 2]), np.int64(2): array([0, 4])} Expected dict: {2: array([0, 4]), 1: array([1, 2]), 0: array([3, 5])}",failed -18654,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_False-dropna_True-basic_snowpark_pandas_df_with_missing_values-None-None-0-indices],"AssertionError: Actual type is not the same as expected type , and instead is type . Actual value is {0: [0], 1: [1], 2: [2], 3: [3], 4: [4], 5: [5]}",failed -18682,tests.integ.modin.groupby.test_groupby_transform,test_groupby_transform_single_output_col,ValueError: transform must return a scalar value for each group,failed -18683,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_False-dropna_False-basic_snowpark_pandas_df-col3-by3-None-groups],TypeError: assert_array_equal() got an unexpected keyword argument 'strict',failed -18691,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_False-dropna_True-basic_snowpark_pandas_df_with_missing_values-col3-col3-None-indices],"AssertionError: Actual type is not the same as expected type , and instead is type . Actual value is {3.1: [0], 4.0: [4], 8.0: [1], 10.0: [3], 12.0: [2]}",failed -18692,tests.integ.modin.frame.test_merge,test_merge_left_on_right_index[left-True-B],KeyError: 'None of [None] are in the columns',failed -18694,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_False-dropna_False-basic_snowpark_pandas_df-col3-by3-None-indices],TypeError: assert_array_equal() got an unexpected keyword argument 'strict',failed -18715,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_False-dropna_False-basic_snowpark_pandas_df-index_cols4-col1-None-groups],"AssertionError: Actual dict has the wrong key at position 0. Actual key 0 is not equal to expected key 2. +15330,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_False-dropna_False-basic_snowpark_pandas_df-col3-by3-None-groups],"AssertionError: Actual dict has the wrong key at position 0. Actual key (0, 5) is not equal to expected key (2, 4). +Actual dict: {(0, 5): [1.1], (0, 7): [10.0], (1, 5): [8.0], (1, 36): [12.0], (2, 4): [3.1, 4.0]} +Expected dict: {(2, 4): [3.1, 4.0], (1, 5): [8.0], (1, 36): [12.0], (0, 7): [10.0], (0, 5): [1.1]}",failed +15334,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_False-dropna_False-basic_snowpark_pandas_df-col3-by3-None-indices],"AssertionError: Actual dict has the wrong key at position 0. Actual key (np.int64(0), np.int64(5)) is not equal to expected key (2, 4). +Actual dict: {(np.int64(0), np.int64(5)): array([5]), (np.int64(0), np.int64(7)): array([3]), (np.int64(1), np.int64(5)): array([1]), (np.int64(1), np.int64(36)): array([2]), (np.int64(2), np.int64(4)): array([0, 4])} +Expected dict: {(2, 4): array([0, 4]), (1, 5): array([1]), (1, 36): array([2]), (0, 7): array([3]), (0, 5): array([5])}",failed +15338,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_False-dropna_False-basic_snowpark_pandas_df-index_cols4-col1-None-groups],"AssertionError: Actual dict has the wrong key at position 0. Actual key 0 is not equal to expected key 2. Actual dict: {0: [(10.0, 15), (1.1, 6)], 1: [(8.0, 3), (12.0, 16)], 2: [(3.1, 17), (4.0, 5)]} Expected dict: {2: [(3.1, 17), (4.0, 5)], 1: [(8.0, 3), (12.0, 16)], 0: [(10.0, 15), (1.1, 6)]}",failed -18718,tests.integ.modin.groupby.test_groupby_basic_agg,test_single_group_row_groupby_with_variant[1-by_col_data1-expected_groupby_col1],TypeError: unhashable type: 'list',failed -18730,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_False-dropna_False-basic_snowpark_pandas_df-index_cols4-col1-None-indices],"AssertionError: Actual dict has the wrong key at position 0. Actual key 0 is not equal to expected key 2. -Actual dict: {0: array([3, 5]), 1: array([1, 2]), 2: array([0, 4])} +15343,tests.integ.modin.frame.test_reindex,test_reindex_index_fill_method_pandas_negative[100-pad],ValueError: limit argument for 'pad' method only well-defined if index and target are monotonic,failed +15347,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_False-dropna_False-basic_snowpark_pandas_df-index_cols4-col1-None-indices],"AssertionError: Actual dict has the wrong key at position 0. Actual key 0 is not equal to expected key 2. +Actual dict: {np.int64(0): array([3, 5]), np.int64(1): array([1, 2]), np.int64(2): array([0, 4])} Expected dict: {2: array([0, 4]), 1: array([1, 2]), 0: array([3, 5])}",failed -18732,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_False-dropna_True-basic_snowpark_pandas_df_with_missing_values-col3-None-0-indices],"AssertionError: Actual type is not the same as expected type , and instead is type . Actual value is {3.1: [0], 4.0: [4], 8.0: [1], 10.0: [3], 12.0: [2]}",failed -18741,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_False-dropna_False-basic_snowpark_pandas_df-index_cols5-by5-None-groups],TypeError: assert_array_equal() got an unexpected keyword argument 'strict',failed -18749,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_False-dropna_False-basic_snowpark_pandas_df-index_cols5-by5-None-indices],TypeError: assert_array_equal() got an unexpected keyword argument 'strict',failed -18750,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_False-dropna_True-basic_snowpark_pandas_df_with_missing_values-col3-None-col3-indices],"AssertionError: Actual type is not the same as expected type , and instead is type . Actual value is {3.1: [0], 4.0: [4], 8.0: [1], 10.0: [3], 12.0: [2]}",failed -18753,tests.integ.modin.frame.test_merge,test_merge_left_on_right_index[left-False-left_i],KeyError: 'left_i',failed -18756,tests.integ.modin.groupby.test_groupby_unique,test_all_params[index-True-True-False-animal-None],AttributeError: 'DataFrameGroupBy' object has no attribute 'unique'. Did you mean: 'nunique'?,failed -18760,tests.integ.modin.groupby.test_groupby_unique,test_all_params[index-True-True-False-by1-None],AttributeError: 'DataFrameGroupBy' object has no attribute 'unique'. Did you mean: 'nunique'?,failed -18762,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_False-dropna_False-basic_snowpark_pandas_df-None-None-0-indices],TypeError: assert_array_equal() got an unexpected keyword argument 'strict',failed -18764,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_False-dropna_True-basic_snowpark_pandas_df_with_missing_values-index_cols10-col3-None-indices],"AssertionError: Actual type is not the same as expected type , and instead is type . Actual value is {3.1: [0], 4.0: [4], 8.0: [1], 10.0: [3], 12.0: [2]}",failed -18765,tests.integ.modin.groupby.test_groupby_unique,test_all_params[index-True-True-False-by2-None],AttributeError: 'DataFrameGroupBy' object has no attribute 'unique'. Did you mean: 'nunique'?,failed -18767,tests.integ.modin.frame.test_merge,test_merge_left_on_right_index[left-False-A],KeyError: 'None of [None] are in the columns',failed -18768,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_False-dropna_False-basic_snowpark_pandas_df-col3-col3-None-groups],"AssertionError: Actual dict has the wrong key at position 0. Actual key 1.1 is not equal to expected key 3.1. +15354,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_False-dropna_False-basic_snowpark_pandas_df-index_cols5-by5-None-groups],"AssertionError: Actual dict has the wrong key at position 0. Actual key (0, 5) is not equal to expected key (2, 4). +Actual dict: {(0, 5): [(1.1, 6)], (0, 7): [(10.0, 15)], (1, 5): [(8.0, 3)], (1, 36): [(12.0, 16)], (2, 4): [(3.1, 17), (4.0, 5)]} +Expected dict: {(2, 4): [(3.1, 17), (4.0, 5)], (1, 5): [(8.0, 3)], (1, 36): [(12.0, 16)], (0, 7): [(10.0, 15)], (0, 5): [(1.1, 6)]}",failed +15362,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_False-dropna_False-basic_snowpark_pandas_df-index_cols5-by5-None-indices],"AssertionError: Actual dict has the wrong key at position 0. Actual key (np.int64(0), np.int64(5)) is not equal to expected key (2, 4). +Actual dict: {(np.int64(0), np.int64(5)): array([5]), (np.int64(0), np.int64(7)): array([3]), (np.int64(1), np.int64(5)): array([1]), (np.int64(1), np.int64(36)): array([2]), (np.int64(2), np.int64(4)): array([0, 4])} +Expected dict: {(2, 4): array([0, 4]), (1, 5): array([1]), (1, 36): array([2]), (0, 7): array([3]), (0, 5): array([5])}",failed +15364,tests.integ.modin.frame.test_reindex,test_reindex_index_fill_method_pandas_negative[100-ffill],ValueError: limit argument for 'pad' method only well-defined if index and target are monotonic,failed +15382,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_False-dropna_False-basic_snowpark_pandas_df-col3-col3-None-groups],"AssertionError: Actual dict has the wrong key at position 0. Actual key 1.1 is not equal to expected key 3.1. Actual dict: {1.1: [1.1], 3.1: [3.1], 4.0: [4.0], 8.0: [8.0], 10.0: [10.0], 12.0: [12.0]} Expected dict: {3.1: [3.1], 8.0: [8.0], 12.0: [12.0], 10.0: [10.0], 4.0: [4.0], 1.1: [1.1]}",failed -18771,tests.integ.modin.groupby.test_groupby_unique,test_all_params[index-True-True-False-None-level3],AttributeError: 'DataFrameGroupBy' object has no attribute 'unique'. Did you mean: 'nunique'?,failed -18775,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_False-dropna_False-basic_snowpark_pandas_df-col3-col3-None-indices],"AssertionError: Actual dict has the wrong key at position 0. Actual key 1.1 is not equal to expected key 3.1. -Actual dict: {1.1: array([5]), 3.1: array([0]), 4.0: array([4]), 8.0: array([1]), 10.0: array([3]), 12.0: array([2])} +15392,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_False-dropna_False-basic_snowpark_pandas_df-col3-col3-None-indices],"AssertionError: Actual dict has the wrong key at position 0. Actual key 1.1 is not equal to expected key 3.1. +Actual dict: {np.float64(1.1): array([5]), np.float64(3.1): array([0]), np.float64(4.0): array([4]), np.float64(8.0): array([1]), np.float64(10.0): array([3]), np.float64(12.0): array([2])} Expected dict: {3.1: array([0]), 8.0: array([1]), 12.0: array([2]), 10.0: array([3]), 4.0: array([4]), 1.1: array([5])}",failed -18776,tests.integ.modin.groupby.test_groupby_unique,test_all_params[index-True-True-False-None-level4],AttributeError: 'DataFrameGroupBy' object has no attribute 'unique'. Did you mean: 'nunique'?,failed -18779,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_False-dropna_True-basic_snowpark_pandas_df_with_missing_values-index_cols11-None-level11-groups],ValueError: Cannot remove 2 levels from an index with 2 levels: at least one level must be left.,failed -18783,tests.integ.modin.groupby.test_groupby_unique,test_all_params[index-True-True-False-None-animal_index],AttributeError: 'DataFrameGroupBy' object has no attribute 'unique'. Did you mean: 'nunique'?,failed -18785,tests.integ.modin.frame.test_merge,test_merge_left_on_right_index[left-False-B],KeyError: 'None of [None] are in the columns',failed -18787,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_False-dropna_False-basic_snowpark_pandas_df-col3-None-0-groups],"AssertionError: Actual dict has the wrong key at position 0. Actual key 1.1 is not equal to expected key 3.1. +15400,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_False-dropna_False-basic_snowpark_pandas_df-col3-None-0-groups],"AssertionError: Actual dict has the wrong key at position 0. Actual key 1.1 is not equal to expected key 3.1. Actual dict: {1.1: [1.1], 3.1: [3.1], 4.0: [4.0], 8.0: [8.0], 10.0: [10.0], 12.0: [12.0]} Expected dict: {3.1: [3.1], 8.0: [8.0], 12.0: [12.0], 10.0: [10.0], 4.0: [4.0], 1.1: [1.1]}",failed -18794,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_False-dropna_False-basic_snowpark_pandas_df-col3-None-0-indices],"AssertionError: Actual dict has the wrong key at position 0. Actual key 1.1 is not equal to expected key 3.1. -Actual dict: {1.1: array([5]), 3.1: array([0]), 4.0: array([4]), 8.0: array([1]), 10.0: array([3]), 12.0: array([2])} +15405,tests.integ.modin.frame.test_to_dynamic_table,test_to_dynamic_table_index[function-False-index_labels3-expected_index_columns3],"NotImplementedError: Modin supports the method DataFrame.to_dynamic_table on the Snowflake backend, but not on the backend Pandas.",failed +15412,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_False-dropna_False-basic_snowpark_pandas_df-col3-None-0-indices],"AssertionError: Actual dict has the wrong key at position 0. Actual key 1.1 is not equal to expected key 3.1. +Actual dict: {np.float64(1.1): array([5]), np.float64(3.1): array([0]), np.float64(4.0): array([4]), np.float64(8.0): array([1]), np.float64(10.0): array([3]), np.float64(12.0): array([2])} Expected dict: {3.1: array([0]), 8.0: array([1]), 12.0: array([2]), 10.0: array([3]), 4.0: array([4]), 1.1: array([5])}",failed -18795,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_False-dropna_True-basic_snowpark_pandas_df_with_missing_values-index_cols11-None-level11-indices],ValueError: Cannot remove 2 levels from an index with 2 levels: at least one level must be left.,failed -18803,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_False-dropna_False-basic_snowpark_pandas_df-col3-None-col3-groups],"AssertionError: Actual dict has the wrong key at position 0. Actual key 1.1 is not equal to expected key 3.1. +15422,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_False-dropna_False-basic_snowpark_pandas_df-col3-None-col3-groups],"AssertionError: Actual dict has the wrong key at position 0. Actual key 1.1 is not equal to expected key 3.1. Actual dict: {1.1: [1.1], 3.1: [3.1], 4.0: [4.0], 8.0: [8.0], 10.0: [10.0], 12.0: [12.0]} Expected dict: {3.1: [3.1], 8.0: [8.0], 12.0: [12.0], 10.0: [10.0], 4.0: [4.0], 1.1: [1.1]}",failed -18809,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_False-dropna_True-basic_snowpark_pandas_df_with_missing_values-index_cols12-None-level12-groups],ValueError: Cannot remove 2 levels from an index with 2 levels: at least one level must be left.,failed -18810,tests.integ.modin.frame.test_merge,test_merge_left_on_right_index[inner-True-left_i],KeyError: 'left_i',failed -18813,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_False-dropna_False-basic_snowpark_pandas_df-col3-None-col3-indices],"AssertionError: Actual dict has the wrong key at position 0. Actual key 1.1 is not equal to expected key 3.1. -Actual dict: {1.1: array([5]), 3.1: array([0]), 4.0: array([4]), 8.0: array([1]), 10.0: array([3]), 12.0: array([2])} +15429,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_False-dropna_False-basic_snowpark_pandas_df-col3-None-col3-indices],"AssertionError: Actual dict has the wrong key at position 0. Actual key 1.1 is not equal to expected key 3.1. +Actual dict: {np.float64(1.1): array([5]), np.float64(3.1): array([0]), np.float64(4.0): array([4]), np.float64(8.0): array([1]), np.float64(10.0): array([3]), np.float64(12.0): array([2])} Expected dict: {3.1: array([0]), 8.0: array([1]), 12.0: array([2]), 10.0: array([3]), 4.0: array([4]), 1.1: array([5])}",failed -18814,tests.integ.modin.groupby.test_groupby_unique,test_all_params[index-True-False-False-animal-None],AttributeError: 'DataFrameGroupBy' object has no attribute 'unique'. Did you mean: 'nunique'?,failed -18818,tests.integ.modin.groupby.test_groupby_unique,test_all_params[index-True-False-False-by1-None],AttributeError: 'DataFrameGroupBy' object has no attribute 'unique'. Did you mean: 'nunique'?,failed -18820,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_False-dropna_False-basic_snowpark_pandas_df-index_cols10-col3-None-groups],"AssertionError: Actual dict has the wrong key at position 0. Actual key 1.1 is not equal to expected key 3.1. +15433,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_False-dropna_False-basic_snowpark_pandas_df-index_cols10-col3-None-groups],"AssertionError: Actual dict has the wrong key at position 0. Actual key 1.1 is not equal to expected key 3.1. Actual dict: {1.1: [(1.1, 6)], 3.1: [(3.1, 17)], 4.0: [(4.0, 5)], 8.0: [(8.0, 3)], 10.0: [(10.0, 15)], 12.0: [(12.0, 16)]} Expected dict: {3.1: [(3.1, 17)], 8.0: [(8.0, 3)], 12.0: [(12.0, 16)], 10.0: [(10.0, 15)], 4.0: [(4.0, 5)], 1.1: [(1.1, 6)]}",failed -18823,tests.integ.modin.groupby.test_groupby_unique,test_all_params[index-True-False-False-by2-None],AttributeError: 'DataFrameGroupBy' object has no attribute 'unique'. Did you mean: 'nunique'?,failed -18827,tests.integ.modin.frame.test_merge,test_merge_left_on_right_index[inner-True-A],KeyError: 'None of [None] are in the columns',failed -18829,tests.integ.modin.groupby.test_groupby_unique,test_all_params[index-True-False-False-None-level3],AttributeError: 'DataFrameGroupBy' object has no attribute 'unique'. Did you mean: 'nunique'?,failed -18830,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_False-dropna_False-basic_snowpark_pandas_df-index_cols10-col3-None-indices],"AssertionError: Actual dict has the wrong key at position 0. Actual key 1.1 is not equal to expected key 3.1. -Actual dict: {1.1: array([5]), 3.1: array([0]), 4.0: array([4]), 8.0: array([1]), 10.0: array([3]), 12.0: array([2])} +15435,tests.integ.modin.frame.test_setitem,test_df_setitem_df_value[int-key1],ValueError: Columns must be same length as key,failed +15440,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_False-dropna_False-basic_snowpark_pandas_df-index_cols10-col3-None-indices],"AssertionError: Actual dict has the wrong key at position 0. Actual key 1.1 is not equal to expected key 3.1. +Actual dict: {np.float64(1.1): array([5]), np.float64(3.1): array([0]), np.float64(4.0): array([4]), np.float64(8.0): array([1]), np.float64(10.0): array([3]), np.float64(12.0): array([2])} Expected dict: {3.1: array([0]), 8.0: array([1]), 12.0: array([2]), 10.0: array([3]), 4.0: array([4]), 1.1: array([5])}",failed -18834,tests.integ.modin.groupby.test_groupby_unique,test_all_params[index-True-False-False-None-level4],AttributeError: 'DataFrameGroupBy' object has no attribute 'unique'. Did you mean: 'nunique'?,failed -18838,tests.integ.modin.groupby.test_groupby_unique,test_all_params[index-True-False-False-None-animal_index],AttributeError: 'DataFrameGroupBy' object has no attribute 'unique'. Did you mean: 'nunique'?,failed -18840,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_False-dropna_False-basic_snowpark_pandas_df-index_cols11-None-level11-groups],ValueError: Cannot remove 2 levels from an index with 2 levels: at least one level must be left.,failed -18844,tests.integ.modin.frame.test_merge,test_merge_left_on_right_index[inner-True-B],KeyError: 'None of [None] are in the columns',failed -18847,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_False-dropna_True-basic_snowpark_pandas_df_with_missing_values-index_cols12-None-level12-indices],ValueError: Cannot remove 2 levels from an index with 2 levels: at least one level must be left.,failed -18865,tests.integ.modin.frame.test_merge,test_merge_left_on_right_index[inner-False-left_i],KeyError: 'left_i',failed -18866,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_False-dropna_False-basic_snowpark_pandas_df-None-col1-None-indices],TypeError: assert_array_equal() got an unexpected keyword argument 'strict',failed -18869,tests.integ.modin.groupby.test_groupby_unique,test_all_params[index-False-True-False-animal-None],AttributeError: 'DataFrameGroupBy' object has no attribute 'unique'. Did you mean: 'nunique'?,failed -18874,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_False-dropna_False-basic_snowpark_pandas_df-None-by1-None-groups],TypeError: assert_array_equal() got an unexpected keyword argument 'strict',failed -18875,tests.integ.modin.groupby.test_groupby_basic_agg,test_single_group_row_groupby_with_variant[2-by_col_data1-expected_groupby_col1],TypeError: unhashable type: 'list',failed -18878,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_False-dropna_False-basic_snowpark_pandas_df-index_cols11-None-level11-indices],ValueError: Cannot remove 2 levels from an index with 2 levels: at least one level must be left.,failed -18883,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_False-dropna_False-basic_snowpark_pandas_df-None-by1-None-indices],TypeError: assert_array_equal() got an unexpected keyword argument 'strict',failed -18884,tests.integ.modin.frame.test_merge,test_merge_left_on_right_index[inner-False-A],KeyError: 'None of [None] are in the columns',failed -18892,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_False-dropna_False-basic_snowpark_pandas_df-index_cols12-None-level12-groups],ValueError: Cannot remove 2 levels from an index with 2 levels: at least one level must be left.,failed -18893,tests.integ.modin.groupby.test_groupby_unique,test_all_params[index-False-True-False-by1-None],AttributeError: 'DataFrameGroupBy' object has no attribute 'unique'. Did you mean: 'nunique'?,failed -18899,tests.integ.modin.groupby.test_groupby_unique,test_all_params[index-False-True-False-by2-None],AttributeError: 'DataFrameGroupBy' object has no attribute 'unique'. Did you mean: 'nunique'?,failed -18900,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_False-dropna_False-basic_snowpark_pandas_df-col3-col1-None-indices],TypeError: assert_array_equal() got an unexpected keyword argument 'strict',failed -18903,tests.integ.modin.groupby.test_groupby_unique,test_all_params[index-False-True-False-None-level3],AttributeError: 'DataFrameGroupBy' object has no attribute 'unique'. Did you mean: 'nunique'?,failed -18904,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_False-dropna_False-basic_snowpark_pandas_df-index_cols12-None-level12-indices],ValueError: Cannot remove 2 levels from an index with 2 levels: at least one level must be left.,failed -18907,tests.integ.modin.groupby.test_groupby_unique,test_all_params[index-False-True-False-None-level4],AttributeError: 'DataFrameGroupBy' object has no attribute 'unique'. Did you mean: 'nunique'?,failed -18910,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_False-dropna_False-basic_snowpark_pandas_df-col3-by3-None-groups],TypeError: assert_array_equal() got an unexpected keyword argument 'strict',failed -18913,tests.integ.modin.groupby.test_groupby_unique,test_all_params[index-False-True-False-None-animal_index],AttributeError: 'DataFrameGroupBy' object has no attribute 'unique'. Did you mean: 'nunique'?,failed -18915,tests.integ.modin.frame.test_merge,test_merge_left_on_right_index[inner-False-B],KeyError: 'None of [None] are in the columns',failed -18918,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_False-dropna_False-basic_snowpark_pandas_df_with_missing_values-None-col1-None-groups],ValueError: Categorical categories cannot be null,failed -18921,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_False-dropna_False-basic_snowpark_pandas_df-col3-by3-None-indices],TypeError: assert_array_equal() got an unexpected keyword argument 'strict',failed -18928,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_False-dropna_False-basic_snowpark_pandas_df_with_missing_values-None-col1-None-indices],"AssertionError: Actual dict has the wrong key at position 0. Actual key 0.0 is not equal to expected key nan. -Actual dict: {0.0: array([3, 5]), 1.0: array([1, 2]), nan: array([0, 4])} +15441,tests.integ.modin.frame.test_reindex,test_reindex_index_fill_method_with_old_na_values_pandas_negative[bfill-1],Cannot qualify window in fillna.,xfailed +15449,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_False-dropna_False-basic_snowpark_pandas_df-index_cols11-None-level11-groups],ValueError: Cannot remove 2 levels from an index with 2 levels: at least one level must be left.,failed +15452,tests.integ.modin.frame.test_setitem,test_df_setitem_df_value[int-key2],TypeError: unhashable type: 'Series',failed +15459,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_False-dropna_False-basic_snowpark_pandas_df-index_cols11-None-level11-indices],ValueError: Cannot remove 2 levels from an index with 2 levels: at least one level must be left.,failed +15470,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_False-dropna_False-basic_snowpark_pandas_df-index_cols12-None-level12-groups],ValueError: Cannot remove 2 levels from an index with 2 levels: at least one level must be left.,failed +15472,tests.integ.modin.groupby.test_groupby_apply,test_non_series_or_dataframe_return_types[None-include_groups_True],AssertionError,failed +15474,tests.integ.modin.groupby.test_groupby_apply,test_non_series_or_dataframe_return_types[None-include_groups_False],AssertionError,failed +15477,tests.integ.modin.frame.test_reindex,test_reindex_index_fill_method_with_old_na_values_pandas_negative[bfill-2],Cannot qualify window in fillna.,xfailed +15478,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_False-dropna_False-basic_snowpark_pandas_df-index_cols12-None-level12-indices],ValueError: Cannot remove 2 levels from an index with 2 levels: at least one level must be left.,failed +15480,tests.integ.modin.frame.test_setitem,test_df_setitem_df_value[int-key5],TypeError: unhashable type: 'Series',failed +15491,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_False-dropna_False-basic_snowpark_pandas_df_with_missing_values-None-col1-None-groups],ValueError: Categorical categories cannot be null,failed +15495,tests.integ.modin.frame.test_reindex,test_reindex_index_fill_method_with_old_na_values_pandas_negative[bfill-100],Cannot qualify window in fillna.,xfailed +15499,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_False-dropna_False-basic_snowpark_pandas_df_with_missing_values-None-col1-None-indices],"AssertionError: Actual dict has the wrong key at position 0. Actual key 0.0 is not equal to expected key nan. +Actual dict: {np.float64(0.0): array([3, 5]), np.float64(1.0): array([1, 2]), np.float64(nan): array([0, 4])} Expected dict: {nan: array([0, 4]), 1.0: array([1, 2]), 0.0: array([3, 5])}",failed -18937,tests.integ.modin.frame.test_reindex,test_reindex_index_non_overlapping_different_types_index_negative,Failed: DID NOT RAISE ,failed -18939,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_False-dropna_False-basic_snowpark_pandas_df_with_missing_values-None-by1-None-groups],TypeError: assert_array_equal() got an unexpected keyword argument 'strict',failed -18941,tests.integ.modin.frame.test_merge,test_merge_left_on_right_index[right-True-left_i],KeyError: 'left_i',failed -18942,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_False-dropna_False-basic_snowpark_pandas_df-index_cols4-col1-None-indices],TypeError: assert_array_equal() got an unexpected keyword argument 'strict',failed -18945,tests.integ.modin.groupby.test_groupby_unique,test_all_params[index-False-False-False-animal-None],AttributeError: 'DataFrameGroupBy' object has no attribute 'unique'. Did you mean: 'nunique'?,failed -18947,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_False-dropna_False-basic_snowpark_pandas_df_with_missing_values-None-by1-None-indices],TypeError: assert_array_equal() got an unexpected keyword argument 'strict',failed -18950,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_False-dropna_False-basic_snowpark_pandas_df-index_cols5-by5-None-groups],TypeError: assert_array_equal() got an unexpected keyword argument 'strict',failed -18951,tests.integ.modin.groupby.test_groupby_unique,test_all_params[index-False-False-False-by1-None],AttributeError: 'DataFrameGroupBy' object has no attribute 'unique'. Did you mean: 'nunique'?,failed -18955,tests.integ.modin.frame.test_reindex,test_reindex_index_duplicate_values[new_index0],ValueError: cannot reindex on an axis with duplicate labels,failed -18956,tests.integ.modin.groupby.test_groupby_unique,test_all_params[index-False-False-False-by2-None],AttributeError: 'DataFrameGroupBy' object has no attribute 'unique'. Did you mean: 'nunique'?,failed -18960,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_False-dropna_False-basic_snowpark_pandas_df-index_cols5-by5-None-indices],TypeError: assert_array_equal() got an unexpected keyword argument 'strict',failed -18962,tests.integ.modin.groupby.test_groupby_unique,test_all_params[index-False-False-False-None-level3],AttributeError: 'DataFrameGroupBy' object has no attribute 'unique'. Did you mean: 'nunique'?,failed -18963,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_False-dropna_False-basic_snowpark_pandas_df_with_missing_values-col3-col1-None-groups],ValueError: Categorical categories cannot be null,failed -18966,tests.integ.modin.frame.test_merge,test_merge_left_on_right_index[right-True-A],KeyError: 'None of [None] are in the columns',failed -18968,tests.integ.modin.groupby.test_groupby_unique,test_all_params[index-False-False-False-None-level4],AttributeError: 'DataFrameGroupBy' object has no attribute 'unique'. Did you mean: 'nunique'?,failed -18970,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_False-dropna_False-basic_snowpark_pandas_df_with_missing_values-col3-col1-None-indices],"AssertionError: Actual dict has the wrong key at position 0. Actual key 0.0 is not equal to expected key nan. -Actual dict: {0.0: array([3, 5]), 1.0: array([1, 2]), nan: array([0, 4])} +15506,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_False-dropna_False-basic_snowpark_pandas_df_with_missing_values-None-by1-None-groups],"AssertionError: Actual dict has the wrong key at position 1. Actual key (0.0, 5.0) is not equal to expected key (1.0, 5.0). +Actual dict: {(nan, 4.0): [0, 4], (0.0, 5.0): [5], (0.0, 7.0): [3], (1.0, 5.0): [1], (1.0, nan): [2]} +Expected dict: {(nan, 4.0): [0, 4], (1.0, 5.0): [1], (1.0, nan): [2], (0.0, 7.0): [3], (0.0, 5.0): [5]}",failed +15511,tests.integ.modin.groupby.test_groupby_apply,test_non_series_or_dataframe_return_types[date-include_groups_True],[XPASS(strict)] SNOW-1217565,failed +15512,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_False-dropna_False-basic_snowpark_pandas_df_with_missing_values-None-by1-None-indices],"AssertionError: Actual dict has the wrong key at position 0. Actual key (np.float64(0.0), np.float64(5.0)) is not equal to expected key (nan, 4.0). +Actual dict: {(np.float64(0.0), np.float64(5.0)): array([5]), (np.float64(0.0), np.float64(7.0)): array([3]), (np.float64(1.0), np.float64(5.0)): array([1]), (np.float64(1.0), np.float64(nan)): array([2]), (np.float64(nan), np.float64(4.0)): array([0, 4])} +Expected dict: {(nan, 4.0): array([0, 4]), (1.0, 5.0): array([1]), (1.0, nan): array([2]), (0.0, 7.0): array([3]), (0.0, 5.0): array([5])}",failed +15514,tests.integ.modin.groupby.test_groupby_apply,test_non_series_or_dataframe_return_types[date-include_groups_False],[XPASS(strict)] SNOW-1217565,failed +15519,tests.integ.modin.frame.test_setitem,test_df_setitem_df_value[int-key6],TypeError: unhashable type: 'Series',failed +15521,tests.integ.modin.groupby.test_groupby_apply,test_return_timedelta[include_groups_True],[XPASS(strict)] SNOW-1619940,failed +15522,tests.integ.modin.groupby.test_groupby_apply,test_return_timedelta[include_groups_False],[XPASS(strict)] SNOW-1619940,failed +15525,tests.integ.modin.groupby.test_groupby_apply,test_timedelta_input[timedelta_column-include_groups_True],[XPASS(strict)] ,failed +15528,tests.integ.modin.groupby.test_groupby_apply,test_timedelta_input[timedelta_column-include_groups_False],[XPASS(strict)] ,failed +15529,tests.integ.modin.groupby.test_groupby_apply,test_timedelta_input[timedelta_index-include_groups_True],[XPASS(strict)] ,failed +15531,tests.integ.modin.groupby.test_groupby_apply,test_timedelta_input[timedelta_index-include_groups_False],[XPASS(strict)] ,failed +15532,tests.integ.modin.frame.test_setitem,test_df_setitem_df_value[timedelta64[ns]-key1],ValueError: Columns must be same length as key,failed +15535,tests.integ.modin.frame.test_reindex,test_reindex_index_fill_method_with_old_na_values_pandas_negative[backfill-1],Cannot qualify window in fillna.,xfailed +15546,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_False-dropna_False-basic_snowpark_pandas_df_with_missing_values-col3-col1-None-groups],ValueError: Categorical categories cannot be null,failed +15547,tests.integ.modin.frame.test_setitem,test_df_setitem_df_value[timedelta64[ns]-key2],TypeError: unhashable type: 'Series',failed +15550,tests.integ.modin.frame.test_reindex,test_reindex_index_fill_method_with_old_na_values_pandas_negative[backfill-2],Cannot qualify window in fillna.,xfailed +15551,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_False-dropna_False-basic_snowpark_pandas_df_with_missing_values-col3-col1-None-indices],"AssertionError: Actual dict has the wrong key at position 0. Actual key 0.0 is not equal to expected key nan. +Actual dict: {np.float64(0.0): array([3, 5]), np.float64(1.0): array([1, 2]), np.float64(nan): array([0, 4])} Expected dict: {nan: array([0, 4]), 1.0: array([1, 2]), 0.0: array([3, 5])}",failed -18971,tests.integ.modin.frame.test_reindex,test_reindex_index_duplicate_values[new_index1],ValueError: cannot reindex on an axis with duplicate labels,failed -18973,tests.integ.modin.groupby.test_groupby_unique,test_all_params[index-False-False-False-None-animal_index],AttributeError: 'DataFrameGroupBy' object has no attribute 'unique'. Did you mean: 'nunique'?,failed -18974,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_False-dropna_False-basic_snowpark_pandas_df-None-None-0-indices],TypeError: assert_array_equal() got an unexpected keyword argument 'strict',failed -18977,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_False-dropna_False-basic_snowpark_pandas_df_with_missing_values-col3-by3-None-groups],TypeError: assert_array_equal() got an unexpected keyword argument 'strict',failed -18978,tests.integ.modin.frame.test_merge,test_merge_left_on_right_index[right-True-B],KeyError: 'None of [None] are in the columns',failed -18984,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_False-dropna_False-basic_snowpark_pandas_df_with_missing_values-col3-by3-None-indices],TypeError: assert_array_equal() got an unexpected keyword argument 'strict',failed -18988,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_False-dropna_False-basic_snowpark_pandas_df-col3-col3-None-indices],TypeError: assert_array_equal() got an unexpected keyword argument 'strict',failed -18994,tests.integ.modin.frame.test_merge,test_merge_left_on_right_index[right-False-left_i],KeyError: 'left_i',failed -18995,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_False-dropna_False-basic_snowpark_pandas_df_with_missing_values-index_cols4-col1-None-groups],ValueError: Categorical categories cannot be null,failed -18998,tests.integ.modin.groupby.test_groupby_unique,test_all_params[0-True-True-False-animal-None],AttributeError: 'DataFrameGroupBy' object has no attribute 'unique'. Did you mean: 'nunique'?,failed -19002,tests.integ.modin.groupby.test_groupby_basic_agg,test_single_group_row_groupby_with_variant[3-by_col_data1-expected_groupby_col1],TypeError: unhashable type: 'list',failed -19003,tests.integ.modin.groupby.test_groupby_unique,test_all_params[0-True-True-False-by1-None],AttributeError: 'DataFrameGroupBy' object has no attribute 'unique'. Did you mean: 'nunique'?,failed -19004,tests.integ.modin.frame.test_reindex,test_reindex_index_duplicate_values[new_index2],ValueError: cannot reindex on an axis with duplicate labels,failed -19005,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_False-dropna_False-basic_snowpark_pandas_df_with_missing_values-index_cols4-col1-None-indices],"AssertionError: Actual dict has the wrong key at position 0. Actual key 0.0 is not equal to expected key nan. -Actual dict: {0.0: array([3, 5]), 1.0: array([1, 2]), nan: array([0, 4])} +15559,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_False-dropna_False-basic_snowpark_pandas_df_with_missing_values-col3-by3-None-groups],"AssertionError: Actual dict has the wrong key at position 1. Actual key (0.0, 5.0) is not equal to expected key (1.0, 5.0). +Actual dict: {(nan, 4.0): [3.1, 4.0], (0.0, 5.0): [nan], (0.0, 7.0): [10.0], (1.0, 5.0): [8.0], (1.0, nan): [12.0]} +Expected dict: {(nan, 4.0): [3.1, 4.0], (1.0, 5.0): [8.0], (1.0, nan): [12.0], (0.0, 7.0): [10.0], (0.0, 5.0): [nan]}",failed +15563,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_False-dropna_False-basic_snowpark_pandas_df_with_missing_values-col3-by3-None-indices],"AssertionError: Actual dict has the wrong key at position 0. Actual key (np.float64(0.0), np.float64(5.0)) is not equal to expected key (nan, 4.0). +Actual dict: {(np.float64(0.0), np.float64(5.0)): array([5]), (np.float64(0.0), np.float64(7.0)): array([3]), (np.float64(1.0), np.float64(5.0)): array([1]), (np.float64(1.0), np.float64(nan)): array([2]), (np.float64(nan), np.float64(4.0)): array([0, 4])} +Expected dict: {(nan, 4.0): array([0, 4]), (1.0, 5.0): array([1]), (1.0, nan): array([2]), (0.0, 7.0): array([3]), (0.0, 5.0): array([5])}",failed +15565,tests.integ.modin.frame.test_setitem,test_df_setitem_df_value[timedelta64[ns]-key5],TypeError: unhashable type: 'Series',failed +15573,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_False-dropna_False-basic_snowpark_pandas_df_with_missing_values-index_cols4-col1-None-groups],ValueError: Categorical categories cannot be null,failed +15574,tests.integ.modin.frame.test_reindex,test_reindex_index_fill_method_with_old_na_values_pandas_negative[backfill-100],Cannot qualify window in fillna.,xfailed +15577,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_False-dropna_False-basic_snowpark_pandas_df_with_missing_values-index_cols4-col1-None-indices],"AssertionError: Actual dict has the wrong key at position 0. Actual key 0.0 is not equal to expected key nan. +Actual dict: {np.float64(0.0): array([3, 5]), np.float64(1.0): array([1, 2]), np.float64(nan): array([0, 4])} Expected dict: {nan: array([0, 4]), 1.0: array([1, 2]), 0.0: array([3, 5])}",failed -19008,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_False-dropna_False-basic_snowpark_pandas_df-col3-None-0-indices],TypeError: assert_array_equal() got an unexpected keyword argument 'strict',failed -19010,tests.integ.modin.groupby.test_groupby_unique,test_all_params[0-True-True-False-by2-None],AttributeError: 'DataFrameGroupBy' object has no attribute 'unique'. Did you mean: 'nunique'?,failed -19012,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_False-dropna_False-basic_snowpark_pandas_df_with_missing_values-index_cols5-by5-None-groups],TypeError: assert_array_equal() got an unexpected keyword argument 'strict',failed -19015,tests.integ.modin.groupby.test_groupby_unique,test_all_params[0-True-True-False-None-level3],AttributeError: 'DataFrameGroupBy' object has no attribute 'unique'. Did you mean: 'nunique'?,failed -19016,tests.integ.modin.frame.test_merge,test_merge_left_on_right_index[right-False-A],KeyError: 'None of [None] are in the columns',failed -19020,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_False-dropna_False-basic_snowpark_pandas_df_with_missing_values-index_cols5-by5-None-indices],TypeError: assert_array_equal() got an unexpected keyword argument 'strict',failed -19021,tests.integ.modin.groupby.test_groupby_unique,test_all_params[0-True-True-False-None-level4],AttributeError: 'DataFrameGroupBy' object has no attribute 'unique'. Did you mean: 'nunique'?,failed -19023,tests.integ.modin.frame.test_reindex,test_reindex_index_duplicate_values[new_index3],ValueError: cannot reindex on an axis with duplicate labels,failed -19027,tests.integ.modin.groupby.test_groupby_unique,test_all_params[0-True-True-False-None-animal_index],AttributeError: 'DataFrameGroupBy' object has no attribute 'unique'. Did you mean: 'nunique'?,failed -19028,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_False-dropna_False-basic_snowpark_pandas_df-col3-None-col3-indices],TypeError: assert_array_equal() got an unexpected keyword argument 'strict',failed -19040,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_False-dropna_False-basic_snowpark_pandas_df_with_missing_values-None-None-0-indices],TypeError: assert_array_equal() got an unexpected keyword argument 'strict',failed -19043,tests.integ.modin.frame.test_merge,test_merge_left_on_right_index[right-False-B],KeyError: 'None of [None] are in the columns',failed -19053,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_False-dropna_False-basic_snowpark_pandas_df-index_cols10-col3-None-indices],TypeError: assert_array_equal() got an unexpected keyword argument 'strict',failed -19060,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_False-dropna_False-basic_snowpark_pandas_df_with_missing_values-col3-col3-None-groups],ValueError: Categorical categories cannot be null,failed -19062,tests.integ.modin.groupby.test_groupby_unique,test_all_params[0-True-False-False-animal-None],AttributeError: 'DataFrameGroupBy' object has no attribute 'unique'. Did you mean: 'nunique'?,failed -19068,tests.integ.modin.groupby.test_groupby_unique,test_all_params[0-True-False-False-by1-None],AttributeError: 'DataFrameGroupBy' object has no attribute 'unique'. Did you mean: 'nunique'?,failed -19069,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_False-dropna_False-basic_snowpark_pandas_df_with_missing_values-col3-col3-None-indices],TypeError: assert_array_equal() got an unexpected keyword argument 'strict',failed -19072,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_False-dropna_False-basic_snowpark_pandas_df-index_cols11-None-level11-groups],ValueError: Cannot remove 2 levels from an index with 2 levels: at least one level must be left.,failed -19077,tests.integ.modin.groupby.test_groupby_unique,test_all_params[0-True-False-False-by2-None],AttributeError: 'DataFrameGroupBy' object has no attribute 'unique'. Did you mean: 'nunique'?,failed -19083,tests.integ.modin.groupby.test_groupby_unique,test_all_params[0-True-False-False-None-level3],AttributeError: 'DataFrameGroupBy' object has no attribute 'unique'. Did you mean: 'nunique'?,failed -19088,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_False-dropna_False-basic_snowpark_pandas_df_with_missing_values-col3-None-0-groups],ValueError: Categorical categories cannot be null,failed -19090,tests.integ.modin.groupby.test_groupby_unique,test_all_params[0-True-False-False-None-level4],AttributeError: 'DataFrameGroupBy' object has no attribute 'unique'. Did you mean: 'nunique'?,failed -19091,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_False-dropna_False-basic_snowpark_pandas_df-index_cols11-None-level11-indices],ValueError: Cannot remove 2 levels from an index with 2 levels: at least one level must be left.,failed -19094,tests.integ.modin.frame.test_merge,test_merge_left_on_right_index[outer-True-left_i],KeyError: 'left_i',failed -19097,tests.integ.modin.groupby.test_groupby_unique,test_all_params[0-True-False-False-None-animal_index],AttributeError: 'DataFrameGroupBy' object has no attribute 'unique'. Did you mean: 'nunique'?,failed -19100,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_False-dropna_False-basic_snowpark_pandas_df_with_missing_values-col3-None-0-indices],TypeError: assert_array_equal() got an unexpected keyword argument 'strict',failed -19110,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_False-dropna_False-basic_snowpark_pandas_df-index_cols12-None-level12-groups],ValueError: Cannot remove 2 levels from an index with 2 levels: at least one level must be left.,failed -19123,tests.integ.modin.frame.test_merge,test_merge_left_on_right_index[outer-True-A],KeyError: 'None of [None] are in the columns',failed -19128,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_False-dropna_False-basic_snowpark_pandas_df-index_cols12-None-level12-indices],ValueError: Cannot remove 2 levels from an index with 2 levels: at least one level must be left.,failed -19135,tests.integ.modin.groupby.test_groupby_unique,test_all_params[0-False-True-False-animal-None],AttributeError: 'DataFrameGroupBy' object has no attribute 'unique'. Did you mean: 'nunique'?,failed -19136,tests.integ.modin.frame.test_merge,test_merge_left_on_right_index[outer-True-B],KeyError: 'None of [None] are in the columns',failed -19141,tests.integ.modin.groupby.test_groupby_unique,test_all_params[0-False-True-False-by1-None],AttributeError: 'DataFrameGroupBy' object has no attribute 'unique'. Did you mean: 'nunique'?,failed -19144,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_False-dropna_False-basic_snowpark_pandas_df_with_missing_values-None-col1-None-groups],ValueError: Categorical categories cannot be null,failed -19147,tests.integ.modin.groupby.test_groupby_unique,test_all_params[0-False-True-False-by2-None],AttributeError: 'DataFrameGroupBy' object has no attribute 'unique'. Did you mean: 'nunique'?,failed -19152,tests.integ.modin.groupby.test_groupby_unique,test_all_params[0-False-True-False-None-level3],AttributeError: 'DataFrameGroupBy' object has no attribute 'unique'. Did you mean: 'nunique'?,failed -19156,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_False-dropna_False-basic_snowpark_pandas_df_with_missing_values-col3-None-col3-groups],ValueError: Categorical categories cannot be null,failed -19157,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_False-dropna_False-basic_snowpark_pandas_df_with_missing_values-None-col1-None-indices],TypeError: assert_array_equal() got an unexpected keyword argument 'strict',failed -19164,tests.integ.modin.frame.test_merge,test_merge_left_on_right_index[outer-False-left_i],KeyError: 'left_i',failed -19166,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_False-dropna_False-basic_snowpark_pandas_df_with_missing_values-col3-None-col3-indices],TypeError: assert_array_equal() got an unexpected keyword argument 'strict',failed -19167,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_False-dropna_False-basic_snowpark_pandas_df_with_missing_values-None-by1-None-groups],TypeError: assert_array_equal() got an unexpected keyword argument 'strict',failed -19178,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_False-dropna_False-basic_snowpark_pandas_df_with_missing_values-None-by1-None-indices],TypeError: assert_array_equal() got an unexpected keyword argument 'strict',failed -19181,tests.integ.modin.frame.test_merge,test_merge_left_on_right_index[outer-False-A],KeyError: 'None of [None] are in the columns',failed -19182,tests.integ.modin.groupby.test_groupby_unique,test_all_params[0-False-True-False-None-level4],AttributeError: 'DataFrameGroupBy' object has no attribute 'unique'. Did you mean: 'nunique'?,failed -19186,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_False-dropna_False-basic_snowpark_pandas_df_with_missing_values-index_cols10-col3-None-groups],ValueError: Categorical categories cannot be null,failed -19192,tests.integ.modin.groupby.test_groupby_unique,test_all_params[0-False-True-False-None-animal_index],AttributeError: 'DataFrameGroupBy' object has no attribute 'unique'. Did you mean: 'nunique'?,failed -19194,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_False-dropna_False-basic_snowpark_pandas_df_with_missing_values-index_cols10-col3-None-indices],TypeError: assert_array_equal() got an unexpected keyword argument 'strict',failed -19199,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_False-dropna_False-basic_snowpark_pandas_df_with_missing_values-col3-col1-None-groups],ValueError: Categorical categories cannot be null,failed -19205,tests.integ.modin.groupby.test_groupby_basic_agg,test_single_group_row_groupby_with_variant[4-by_col_data1-expected_groupby_col1],TypeError: unhashable type: 'list',failed -19211,tests.integ.modin.frame.test_merge,test_merge_left_on_right_index[outer-False-B],KeyError: 'None of [None] are in the columns',failed -19213,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_False-dropna_False-basic_snowpark_pandas_df_with_missing_values-col3-col1-None-indices],TypeError: assert_array_equal() got an unexpected keyword argument 'strict',failed -19215,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_False-dropna_False-basic_snowpark_pandas_df_with_missing_values-index_cols11-None-level11-groups],ValueError: Cannot remove 2 levels from an index with 2 levels: at least one level must be left.,failed -19224,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_False-dropna_False-basic_snowpark_pandas_df_with_missing_values-col3-by3-None-groups],TypeError: assert_array_equal() got an unexpected keyword argument 'strict',failed -19227,tests.integ.modin.groupby.test_groupby_unique,test_all_params[0-False-False-False-animal-None],AttributeError: 'DataFrameGroupBy' object has no attribute 'unique'. Did you mean: 'nunique'?,failed -19230,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_False-dropna_False-basic_snowpark_pandas_df_with_missing_values-index_cols11-None-level11-indices],ValueError: Cannot remove 2 levels from an index with 2 levels: at least one level must be left.,failed -19234,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_False-dropna_False-basic_snowpark_pandas_df_with_missing_values-col3-by3-None-indices],TypeError: assert_array_equal() got an unexpected keyword argument 'strict',failed -19235,tests.integ.modin.groupby.test_groupby_unique,test_all_params[0-False-False-False-by1-None],AttributeError: 'DataFrameGroupBy' object has no attribute 'unique'. Did you mean: 'nunique'?,failed -19236,tests.integ.modin.frame.test_merge,test_merge_left_index_right_on[left-True-right_i],KeyError: 'right_i',failed -19241,tests.integ.modin.groupby.test_groupby_unique,test_all_params[0-False-False-False-by2-None],AttributeError: 'DataFrameGroupBy' object has no attribute 'unique'. Did you mean: 'nunique'?,failed -19243,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_False-dropna_False-basic_snowpark_pandas_df_with_missing_values-index_cols12-None-level12-groups],ValueError: Cannot remove 2 levels from an index with 2 levels: at least one level must be left.,failed -19247,tests.integ.modin.groupby.test_groupby_unique,test_all_params[0-False-False-False-None-level3],AttributeError: 'DataFrameGroupBy' object has no attribute 'unique'. Did you mean: 'nunique'?,failed -19251,tests.integ.modin.groupby.test_groupby_unique,test_all_params[0-False-False-False-None-level4],AttributeError: 'DataFrameGroupBy' object has no attribute 'unique'. Did you mean: 'nunique'?,failed -19254,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_False-dropna_False-basic_snowpark_pandas_df_with_missing_values-index_cols12-None-level12-indices],ValueError: Cannot remove 2 levels from an index with 2 levels: at least one level must be left.,failed -19257,tests.integ.modin.groupby.test_groupby_unique,test_all_params[0-False-False-False-None-animal_index],AttributeError: 'DataFrameGroupBy' object has no attribute 'unique'. Did you mean: 'nunique'?,failed -19260,tests.integ.modin.groupby.test_groupby_unique,test_aggregating_string_column_with_nulls,[XPASS(strict)] SNOW-1859090,failed -19262,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_True-dropna_True-basic_snowpark_pandas_df-None-col1-None-groups],"AssertionError: Actual dict has the wrong key at position 0. Actual key 0 is not equal to expected key 2. +15580,tests.integ.modin.frame.test_setitem,test_df_setitem_df_value[timedelta64[ns]-key6],TypeError: unhashable type: 'Series',failed +15583,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_False-dropna_False-basic_snowpark_pandas_df_with_missing_values-index_cols5-by5-None-groups],"AssertionError: Actual dict has the wrong key at position 1. Actual key (0.0, 5.0) is not equal to expected key (1.0, 5.0). +Actual dict: {(nan, 4.0): [(3.1, 17.0), (4.0, nan)], (0.0, 5.0): [(nan, nan)], (0.0, 7.0): [(10.0, 15.0)], (1.0, 5.0): [(8.0, 3.0)], (1.0, nan): [(12.0, 16.0)]} +Expected dict: {(nan, 4.0): [(3.1, 17.0), (4.0, nan)], (1.0, 5.0): [(8.0, 3.0)], (1.0, nan): [(12.0, 16.0)], (0.0, 7.0): [(10.0, 15.0)], (0.0, 5.0): [(nan, nan)]}",failed +15586,tests.integ.modin.frame.test_setitem,test_df_setitem_df_value_dedup_columns[list-key0],"AssertionError: DataFrame are different + +DataFrame shape mismatch +[left]: (3, 3) +[right]: (3, 2)",failed +15587,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_False-dropna_False-basic_snowpark_pandas_df_with_missing_values-index_cols5-by5-None-indices],"AssertionError: Actual dict has the wrong key at position 0. Actual key (np.float64(0.0), np.float64(5.0)) is not equal to expected key (nan, 4.0). +Actual dict: {(np.float64(0.0), np.float64(5.0)): array([5]), (np.float64(0.0), np.float64(7.0)): array([3]), (np.float64(1.0), np.float64(5.0)): array([1]), (np.float64(1.0), np.float64(nan)): array([2]), (np.float64(nan), np.float64(4.0)): array([0, 4])} +Expected dict: {(nan, 4.0): array([0, 4]), (1.0, 5.0): array([1]), (1.0, nan): array([2]), (0.0, 7.0): array([3]), (0.0, 5.0): array([5])}",failed +15592,tests.integ.modin.frame.test_setitem,test_df_setitem_df_value_dedup_columns[list-key1],"AssertionError: DataFrame are different + +DataFrame shape mismatch +[left]: (3, 4) +[right]: (3, 3)",failed +15597,tests.integ.modin.frame.test_reindex,test_reindex_index_fill_method_with_old_na_values_pandas_negative[pad-1],Cannot qualify window in fillna.,xfailed +15604,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_False-dropna_False-basic_snowpark_pandas_df_with_missing_values-col3-col3-None-groups],ValueError: Categorical categories cannot be null,failed +15606,tests.integ.modin.frame.test_to_dynamic_table,test_to_dynamic_table_multiindex[method],"NotImplementedError: Modin supports the method DataFrame.to_dynamic_table on the Snowflake backend, but not on the backend Pandas.",failed +15609,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_False-dropna_False-basic_snowpark_pandas_df_with_missing_values-col3-col3-None-indices],"AssertionError: Actual dict has the wrong key at position 1. Actual key 4.0 is not equal to expected key 8.0. +Actual dict: {np.float64(3.1): array([0]), np.float64(4.0): array([4]), np.float64(8.0): array([1]), np.float64(10.0): array([3]), np.float64(12.0): array([2]), np.float64(nan): array([5])} +Expected dict: {3.1: array([0]), 8.0: array([1]), 12.0: array([2]), 10.0: array([3]), 4.0: array([4]), nan: array([5])}",failed +15610,tests.integ.modin.frame.test_reindex,test_reindex_index_fill_method_with_old_na_values_pandas_negative[pad-2],Cannot qualify window in fillna.,xfailed +15617,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_False-dropna_False-basic_snowpark_pandas_df_with_missing_values-col3-None-0-groups],ValueError: Categorical categories cannot be null,failed +15619,tests.integ.modin.groupby.test_groupby_resample,test_groupby_resample_by_b[max-3-min],AssertionError: Got type: ,failed +15622,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_False-dropna_False-basic_snowpark_pandas_df_with_missing_values-col3-None-0-indices],"AssertionError: Actual dict has the wrong key at position 1. Actual key 4.0 is not equal to expected key 8.0. +Actual dict: {np.float64(3.1): array([0]), np.float64(4.0): array([4]), np.float64(8.0): array([1]), np.float64(10.0): array([3]), np.float64(12.0): array([2]), np.float64(nan): array([5])} +Expected dict: {3.1: array([0]), 8.0: array([1]), 12.0: array([2]), 10.0: array([3]), 4.0: array([4]), nan: array([5])}",failed +15624,tests.integ.modin.frame.test_reindex,test_reindex_index_fill_method_with_old_na_values_pandas_negative[pad-100],Cannot qualify window in fillna.,xfailed +15627,tests.integ.modin.frame.test_setitem,test_df_setitem_df_value_dedup_columns[series-key0],TypeError: unhashable type: 'Series',failed +15629,tests.integ.modin.groupby.test_groupby_resample,test_groupby_resample_by_b[max-3-h],AssertionError: Got type: ,failed +15633,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_False-dropna_False-basic_snowpark_pandas_df_with_missing_values-col3-None-col3-groups],ValueError: Categorical categories cannot be null,failed +15635,tests.integ.modin.groupby.test_groupby_resample,test_groupby_resample_by_b[max-3-D],AssertionError: Got type: ,failed +15637,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_False-dropna_False-basic_snowpark_pandas_df_with_missing_values-col3-None-col3-indices],"AssertionError: Actual dict has the wrong key at position 1. Actual key 4.0 is not equal to expected key 8.0. +Actual dict: {np.float64(3.1): array([0]), np.float64(4.0): array([4]), np.float64(8.0): array([1]), np.float64(10.0): array([3]), np.float64(12.0): array([2]), np.float64(nan): array([5])} +Expected dict: {3.1: array([0]), 8.0: array([1]), 12.0: array([2]), 10.0: array([3]), 4.0: array([4]), nan: array([5])}",failed +15639,tests.integ.modin.frame.test_setitem,test_df_setitem_df_value_dedup_columns[series-key1],TypeError: unhashable type: 'Series',failed +15642,tests.integ.modin.groupby.test_groupby_resample,test_groupby_resample_by_b[max-5-s],AssertionError: Got type: ,failed +15644,tests.integ.modin.frame.test_merge,test_merge_on_index_columns[left-True-left_i],KeyError: 'left_i',failed +15647,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_False-dropna_False-basic_snowpark_pandas_df_with_missing_values-index_cols10-col3-None-groups],ValueError: Categorical categories cannot be null,failed +15650,tests.integ.modin.groupby.test_groupby_resample,test_groupby_resample_by_b[max-5-min],AssertionError: Got type: ,failed +15652,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_False-dropna_False-basic_snowpark_pandas_df_with_missing_values-index_cols10-col3-None-indices],"AssertionError: Actual dict has the wrong key at position 1. Actual key 4.0 is not equal to expected key 8.0. +Actual dict: {np.float64(3.1): array([0]), np.float64(4.0): array([4]), np.float64(8.0): array([1]), np.float64(10.0): array([3]), np.float64(12.0): array([2]), np.float64(nan): array([5])} +Expected dict: {3.1: array([0]), 8.0: array([1]), 12.0: array([2]), 10.0: array([3]), 4.0: array([4]), nan: array([5])}",failed +15653,tests.integ.modin.frame.test_setitem,test_df_setitem_df_value_dedup_columns[series-key2],TypeError: unhashable type: 'Series',failed +15655,tests.integ.modin.frame.test_reindex,test_reindex_index_fill_method_with_old_na_values_pandas_negative[ffill-1],Cannot qualify window in fillna.,xfailed +15657,tests.integ.modin.frame.test_setitem,test_df_setitem_slice_key_df_value[int-key0],"AssertionError: DataFrame.iloc[:, 1] (column name=""b"") are different + +DataFrame.iloc[:, 1] (column name=""b"") values are different (33.33333 %) +[index]: [0, 1, 2] +[left]: [nan, 5.0, 6.0] +[right]: [40, 5, 6]",failed +15661,tests.integ.modin.frame.test_setitem,test_df_setitem_slice_key_df_value[int-key1],"AssertionError: DataFrame.iloc[:, 1] (column name=""b"") are different + +DataFrame.iloc[:, 1] (column name=""b"") values are different (66.66667 %) +[index]: [0, 1, 2] +[left]: [nan, nan, 6.0] +[right]: [40, 50, 6]",failed +15662,tests.integ.modin.groupby.test_groupby_resample,test_groupby_resample_by_b[max-5-h],AssertionError: Got type: ,failed +15663,tests.integ.modin.frame.test_merge,test_merge_on_index_columns[left-True-right_i],KeyError: 'right_i',failed +15664,tests.integ.modin.frame.test_setitem,test_df_setitem_slice_key_df_value[int-key2],"AssertionError: DataFrame.iloc[:, 1] (column name=""b"") are different + +DataFrame.iloc[:, 1] (column name=""b"") values are different (66.66667 %) +[index]: [0, 1, 2] +[left]: [nan, nan, 6.0] +[right]: [40, 50, 6]",failed +15665,tests.integ.modin.frame.test_reindex,test_reindex_index_fill_method_with_old_na_values_pandas_negative[ffill-2],Cannot qualify window in fillna.,xfailed +15667,tests.integ.modin.groupby.test_groupby_resample,test_groupby_resample_by_b[max-5-D],AssertionError: Got type: ,failed +15668,tests.integ.modin.frame.test_setitem,test_df_setitem_slice_key_df_value[int-key4],"AssertionError: DataFrame.iloc[:, 1] (column name=""b"") are different + +DataFrame.iloc[:, 1] (column name=""b"") values are different (100.0 %) +[index]: [0, 1, 2] +[left]: [nan, nan, nan] +[right]: [40, 50, 60]",failed +15669,tests.integ.modin.frame.test_setitem,test_df_setitem_slice_key_df_value[int-key5],"AssertionError: DataFrame.iloc[:, 1] (column name=""b"") are different + +DataFrame.iloc[:, 1] (column name=""b"") values are different (33.33333 %) +[index]: [0, 1, 2] +[left]: [nan, 5.0, 6.0] +[right]: [40, 5, 6]",failed +15670,tests.integ.modin.groupby.test_groupby_resample,test_groupby_resample_by_b[max-15-s],AssertionError: Got type: ,failed +15671,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_False-dropna_False-basic_snowpark_pandas_df_with_missing_values-index_cols11-None-level11-groups],ValueError: Cannot remove 2 levels from an index with 2 levels: at least one level must be left.,failed +15672,tests.integ.modin.frame.test_merge,test_merge_on_index_columns[left-False-left_i],KeyError: 'left_i',failed +15673,tests.integ.modin.frame.test_setitem,test_df_setitem_slice_key_df_value[int-key6],"AssertionError: DataFrame.iloc[:, 1] (column name=""b"") are different + +DataFrame.iloc[:, 1] (column name=""b"") values are different (66.66667 %) +[index]: [0, 1, 2] +[left]: [4.0, nan, nan] +[right]: [4, 50, 60]",failed +15675,tests.integ.modin.groupby.test_groupby_resample,test_groupby_resample_by_b[max-15-min],AssertionError: Got type: ,failed +15676,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_False-dropna_False-basic_snowpark_pandas_df_with_missing_values-index_cols11-None-level11-indices],ValueError: Cannot remove 2 levels from an index with 2 levels: at least one level must be left.,failed +15677,tests.integ.modin.frame.test_setitem,test_df_setitem_slice_key_df_value[int-key8],"AssertionError: DataFrame.iloc[:, 1] (column name=""b"") are different + +DataFrame.iloc[:, 1] (column name=""b"") values are different (66.66667 %) +[index]: [0, 1, 2] +[left]: [nan, 5.0, nan] +[right]: [40, 5, 60]",failed +15678,tests.integ.modin.groupby.test_groupby_resample,test_groupby_resample_by_b[max-15-h],AssertionError: Got type: ,failed +15679,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_False-dropna_False-basic_snowpark_pandas_df_with_missing_values-index_cols12-None-level12-groups],ValueError: Cannot remove 2 levels from an index with 2 levels: at least one level must be left.,failed +15680,tests.integ.modin.frame.test_setitem,test_df_setitem_slice_key_df_value[int-key9],"AssertionError: DataFrame.iloc[:, 1] (column name=""b"") are different + +DataFrame.iloc[:, 1] (column name=""b"") values are different (66.66667 %) +[index]: [0, 1, 2] +[left]: [nan, nan, 6.0] +[right]: [40, 50, 6]",failed +15681,tests.integ.modin.frame.test_reindex,test_reindex_index_fill_method_with_old_na_values_pandas_negative[ffill-100],Cannot qualify window in fillna.,xfailed +15682,tests.integ.modin.groupby.test_groupby_resample,test_groupby_resample_by_b[max-15-D],AssertionError: Got type: ,failed +15683,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_True-group_series_False-dropna_False-basic_snowpark_pandas_df_with_missing_values-index_cols12-None-level12-indices],ValueError: Cannot remove 2 levels from an index with 2 levels: at least one level must be left.,failed +15684,tests.integ.modin.groupby.test_groupby_resample,test_groupby_resample_by_b[mean-1-s],AssertionError: Got type: ,failed +15685,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_True-dropna_True-basic_snowpark_pandas_df-None-col1-None-groups],"AssertionError: Actual dict has the wrong key at position 0. Actual key 0 is not equal to expected key 2. Actual dict: {0: [3, 5], 1: [1, 2], 2: [0, 4]} Expected dict: {2: [0, 4], 1: [1, 2], 0: [3, 5]}",failed -19265,tests.integ.modin.groupby.test_groupby_unique,test_axis_1,Failed: DID NOT RAISE ,failed -19269,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_True-dropna_True-basic_snowpark_pandas_df-None-col1-None-indices],"AssertionError: Actual type is not the same as expected type , and instead is type . Actual value is {0: [3, 5], 1: [1, 2], 2: [0, 4]}",failed -19272,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_False-dropna_False-basic_snowpark_pandas_df_with_missing_values-index_cols4-col1-None-groups],ValueError: Categorical categories cannot be null,failed -19273,tests.integ.modin.frame.test_merge,test_merge_left_index_right_on[left-True-A],KeyError: 'None of [None] are in the columns',failed -19276,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_True-dropna_True-basic_snowpark_pandas_df-None-by1-None-groups],TypeError: assert_array_equal() got an unexpected keyword argument 'strict',failed -19281,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_False-dropna_False-basic_snowpark_pandas_df_with_missing_values-index_cols4-col1-None-indices],TypeError: assert_array_equal() got an unexpected keyword argument 'strict',failed -19284,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_True-dropna_True-basic_snowpark_pandas_df-None-by1-None-indices],TypeError: assert_array_equal() got an unexpected keyword argument 'strict',failed -19288,tests.integ.modin.frame.test_merge,test_merge_left_index_right_on[left-True-B],KeyError: 'None of [None] are in the columns',failed -19290,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_False-dropna_False-basic_snowpark_pandas_df_with_missing_values-index_cols5-by5-None-groups],TypeError: assert_array_equal() got an unexpected keyword argument 'strict',failed -19292,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_True-dropna_True-basic_snowpark_pandas_df-col3-col1-None-groups],"AssertionError: Actual dict has the wrong key at position 0. Actual key 0 is not equal to expected key 2. +15686,tests.integ.modin.frame.test_merge,test_merge_on_index_columns[left-False-right_i],KeyError: 'right_i',failed +15687,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_True-dropna_True-basic_snowpark_pandas_df-None-col1-None-indices],"AssertionError: Actual type is not the same as expected type , and instead is type . Actual value is {0: [3, 5], 1: [1, 2], 2: [0, 4]}",failed +15688,tests.integ.modin.frame.test_setitem,test_df_setitem_slice_key_df_value[timedelta64[ns]-key0],"AssertionError: DataFrame.iloc[:, 1] (column name=""b"") are different + +DataFrame.iloc[:, 1] (column name=""b"") values are different (33.33333 %) +[index]: [0, 1, 2] +[left]: [-9223372036854775808, 5, 6] +[right]: [40, 5, 6]",failed +15689,tests.integ.modin.groupby.test_groupby_basic_agg,test_single_group_row_groupby_with_variant[0-by_col_data1-expected_groupby_col1],TypeError: unhashable type: 'list',failed +15690,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_True-dropna_True-basic_snowpark_pandas_df-None-by1-None-groups],"AssertionError: Actual dict has the wrong key at position 0. Actual key (0, 5) is not equal to expected key (2, 4). +Actual dict: {(0, 5): [5], (0, 7): [3], (1, 5): [1], (1, 36): [2], (2, 4): [0, 4]} +Expected dict: {(2, 4): [0, 4], (1, 5): [1], (1, 36): [2], (0, 7): [3], (0, 5): [5]}",failed +15691,tests.integ.modin.groupby.test_groupby_resample,test_groupby_resample_by_b[mean-1-min],AssertionError: Got type: ,failed +15692,tests.integ.modin.frame.test_setitem,test_df_setitem_slice_key_df_value[timedelta64[ns]-key1],"AssertionError: DataFrame.iloc[:, 1] (column name=""b"") are different + +DataFrame.iloc[:, 1] (column name=""b"") values are different (66.66667 %) +[index]: [0, 1, 2] +[left]: [-9223372036854775808, -9223372036854775808, 6] +[right]: [40, 50, 6]",failed +15693,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_True-dropna_True-basic_snowpark_pandas_df-None-by1-None-indices],"AssertionError: Actual dict has the wrong key at position 0. Actual key (np.int64(0), np.int64(5)) is not equal to expected key (2, 4). +Actual dict: {(np.int64(0), np.int64(5)): array([5]), (np.int64(0), np.int64(7)): array([3]), (np.int64(1), np.int64(5)): array([1]), (np.int64(1), np.int64(36)): array([2]), (np.int64(2), np.int64(4)): array([0, 4])} +Expected dict: {(2, 4): array([0, 4]), (1, 5): array([1]), (1, 36): array([2]), (0, 7): array([3]), (0, 5): array([5])}",failed +15695,tests.integ.modin.frame.test_setitem,test_df_setitem_slice_key_df_value[timedelta64[ns]-key2],"AssertionError: DataFrame.iloc[:, 1] (column name=""b"") are different + +DataFrame.iloc[:, 1] (column name=""b"") values are different (66.66667 %) +[index]: [0, 1, 2] +[left]: [-9223372036854775808, -9223372036854775808, 6] +[right]: [40, 50, 6]",failed +15696,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_True-dropna_True-basic_snowpark_pandas_df-col3-col1-None-groups],"AssertionError: Actual dict has the wrong key at position 0. Actual key 0 is not equal to expected key 2. Actual dict: {0: [10.0, 1.1], 1: [8.0, 12.0], 2: [3.1, 4.0]} Expected dict: {2: [3.1, 4.0], 1: [8.0, 12.0], 0: [10.0, 1.1]}",failed -19297,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_False-dropna_False-basic_snowpark_pandas_df_with_missing_values-index_cols5-by5-None-indices],TypeError: assert_array_equal() got an unexpected keyword argument 'strict',failed -19299,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_True-dropna_True-basic_snowpark_pandas_df-col3-col1-None-indices],"AssertionError: Actual type is not the same as expected type , and instead is type . Actual value is {0: [3, 5], 1: [1, 2], 2: [0, 4]}",failed -19308,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_True-dropna_True-basic_snowpark_pandas_df-col3-by3-None-groups],TypeError: assert_array_equal() got an unexpected keyword argument 'strict',failed -19311,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_False-dropna_False-basic_snowpark_pandas_df_with_missing_values-None-None-0-indices],TypeError: assert_array_equal() got an unexpected keyword argument 'strict',failed -19313,tests.integ.modin.groupby.test_groupby_with_grouper,test_groupby_nunique_with_grouper[by2],"KeyError: Grouper(level=1, axis=0, sort=False, dropna=True)",failed -19315,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_True-dropna_True-basic_snowpark_pandas_df-col3-by3-None-indices],TypeError: assert_array_equal() got an unexpected keyword argument 'strict',failed -19323,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_True-dropna_True-basic_snowpark_pandas_df-index_cols4-col1-None-groups],"AssertionError: Actual dict has the wrong key at position 0. Actual key 0 is not equal to expected key 2. +15697,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_True-dropna_True-basic_snowpark_pandas_df-index_cols10-col3-None-indices],"AssertionError: Actual type is not the same as expected type , and instead is type . Actual value is {1.1: [5], 3.1: [0], 4.0: [4], 8.0: [1], 10.0: [3], 12.0: [2]}",failed +15698,tests.integ.modin.groupby.test_groupby_resample,test_groupby_resample_by_b[mean-1-h],AssertionError: Got type: ,failed +15700,tests.integ.modin.frame.test_merge,test_merge_on_index_columns[inner-True-left_i],KeyError: 'left_i',failed +15701,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_True-dropna_True-basic_snowpark_pandas_df-col3-col1-None-indices],"AssertionError: Actual type is not the same as expected type , and instead is type . Actual value is {0: [3, 5], 1: [1, 2], 2: [0, 4]}",failed +15702,tests.integ.modin.frame.test_setitem,test_df_setitem_slice_key_df_value[timedelta64[ns]-key4],"AssertionError: DataFrame.iloc[:, 1] (column name=""b"") are different + +DataFrame.iloc[:, 1] (column name=""b"") values are different (100.0 %) +[index]: [0, 1, 2] +[left]: [-9223372036854775808, -9223372036854775808, -9223372036854775808] +[right]: [40, 50, 60]",failed +15703,tests.integ.modin.groupby.test_groupby_resample,test_groupby_resample_by_b[mean-1-D],AssertionError: Got type: ,failed +15704,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_True-dropna_True-basic_snowpark_pandas_df-index_cols11-None-level11-groups],ValueError: Cannot remove 2 levels from an index with 2 levels: at least one level must be left.,failed +15705,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_True-dropna_True-basic_snowpark_pandas_df-col3-by3-None-groups],"AssertionError: Actual dict has the wrong key at position 0. Actual key (0, 5) is not equal to expected key (2, 4). +Actual dict: {(0, 5): [1.1], (0, 7): [10.0], (1, 5): [8.0], (1, 36): [12.0], (2, 4): [3.1, 4.0]} +Expected dict: {(2, 4): [3.1, 4.0], (1, 5): [8.0], (1, 36): [12.0], (0, 7): [10.0], (0, 5): [1.1]}",failed +15706,tests.integ.modin.frame.test_setitem,test_df_setitem_slice_key_df_value[timedelta64[ns]-key5],"AssertionError: DataFrame.iloc[:, 1] (column name=""b"") are different + +DataFrame.iloc[:, 1] (column name=""b"") values are different (33.33333 %) +[index]: [0, 1, 2] +[left]: [-9223372036854775808, 5, 6] +[right]: [40, 5, 6]",failed +15707,tests.integ.modin.groupby.test_groupby_resample,test_groupby_resample_by_b[mean-3-s],AssertionError: Got type: ,failed +15708,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_True-dropna_True-basic_snowpark_pandas_df-col3-by3-None-indices],"AssertionError: Actual dict has the wrong key at position 0. Actual key (np.int64(0), np.int64(5)) is not equal to expected key (2, 4). +Actual dict: {(np.int64(0), np.int64(5)): array([5]), (np.int64(0), np.int64(7)): array([3]), (np.int64(1), np.int64(5)): array([1]), (np.int64(1), np.int64(36)): array([2]), (np.int64(2), np.int64(4)): array([0, 4])} +Expected dict: {(2, 4): array([0, 4]), (1, 5): array([1]), (1, 36): array([2]), (0, 7): array([3]), (0, 5): array([5])}",failed +15709,tests.integ.modin.frame.test_setitem,test_df_setitem_slice_key_df_value[timedelta64[ns]-key6],"AssertionError: DataFrame.iloc[:, 1] (column name=""b"") are different + +DataFrame.iloc[:, 1] (column name=""b"") values are different (66.66667 %) +[index]: [0, 1, 2] +[left]: [4, -9223372036854775808, -9223372036854775808] +[right]: [4, 50, 60]",failed +15710,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_True-dropna_True-basic_snowpark_pandas_df-index_cols11-None-level11-indices],ValueError: Cannot remove 2 levels from an index with 2 levels: at least one level must be left.,failed +15712,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_True-dropna_True-basic_snowpark_pandas_df-index_cols4-col1-None-groups],"AssertionError: Actual dict has the wrong key at position 0. Actual key 0 is not equal to expected key 2. Actual dict: {0: [(10.0, 15), (1.1, 6)], 1: [(8.0, 3), (12.0, 16)], 2: [(3.1, 17), (4.0, 5)]} Expected dict: {2: [(3.1, 17), (4.0, 5)], 1: [(8.0, 3), (12.0, 16)], 0: [(10.0, 15), (1.1, 6)]}",failed -19327,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_False-dropna_False-basic_snowpark_pandas_df_with_missing_values-col3-col3-None-groups],ValueError: Categorical categories cannot be null,failed -19329,tests.integ.modin.frame.test_merge,test_merge_left_index_right_on[left-False-right_i],KeyError: 'right_i',failed -19331,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_True-dropna_True-basic_snowpark_pandas_df-index_cols4-col1-None-indices],"AssertionError: Actual type is not the same as expected type , and instead is type . Actual value is {0: [3, 5], 1: [1, 2], 2: [0, 4]}",failed -19337,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_False-dropna_False-basic_snowpark_pandas_df_with_missing_values-col3-col3-None-indices],TypeError: assert_array_equal() got an unexpected keyword argument 'strict',failed -19341,tests.integ.modin.groupby.test_groupby_with_grouper,test_groupby_agg_level_resample[by1],"KeyError: TimeGrouper(level=1, freq=<90 * Seconds>, axis=0, sort=True, dropna=True, closed='left', label='left', how='mean', convention='e', origin='start_day')",failed -19342,tests.integ.modin.groupby.test_groupby_basic_agg,test_single_group_row_groupby_with_variant[5-by_col_data1-expected_groupby_col1],TypeError: unhashable type: 'list',failed -19343,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_True-dropna_True-basic_snowpark_pandas_df-index_cols5-by5-None-groups],TypeError: assert_array_equal() got an unexpected keyword argument 'strict',failed -19350,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_True-dropna_True-basic_snowpark_pandas_df-index_cols5-by5-None-indices],TypeError: assert_array_equal() got an unexpected keyword argument 'strict',failed -19352,tests.integ.modin.frame.test_merge,test_merge_left_index_right_on[left-False-A],KeyError: 'None of [None] are in the columns',failed -19354,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_False-dropna_False-basic_snowpark_pandas_df_with_missing_values-col3-None-0-groups],ValueError: Categorical categories cannot be null,failed -19367,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_False-dropna_False-basic_snowpark_pandas_df_with_missing_values-col3-None-0-indices],TypeError: assert_array_equal() got an unexpected keyword argument 'strict',failed -19369,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_True-dropna_True-basic_snowpark_pandas_df-None-None-0-indices],"AssertionError: Actual type is not the same as expected type , and instead is type . Actual value is {0: [0], 1: [1], 2: [2], 3: [3], 4: [4], 5: [5]}",failed -19370,tests.integ.modin.frame.test_merge,test_merge_left_index_right_on[left-False-B],KeyError: 'None of [None] are in the columns',failed -19376,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_True-dropna_True-basic_snowpark_pandas_df-col3-col3-None-groups],"AssertionError: Actual dict has the wrong key at position 0. Actual key 1.1 is not equal to expected key 3.1. -Actual dict: {1.1: [1.1], 3.1: [3.1], 4.0: [4.0], 8.0: [8.0], 10.0: [10.0], 12.0: [12.0]} +15713,tests.integ.modin.frame.test_merge,test_merge_on_index_columns[inner-True-right_i],KeyError: 'right_i',failed +15714,tests.integ.modin.groupby.test_groupby_resample,test_groupby_resample_by_b[mean-3-min],AssertionError: Got type: ,failed +15716,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_True-dropna_True-basic_snowpark_pandas_df-index_cols12-None-level12-groups],ValueError: Cannot remove 2 levels from an index with 2 levels: at least one level must be left.,failed +15717,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_True-dropna_True-basic_snowpark_pandas_df-index_cols4-col1-None-indices],"AssertionError: Actual type is not the same as expected type , and instead is type . Actual value is {0: [3, 5], 1: [1, 2], 2: [0, 4]}",failed +15718,tests.integ.modin.frame.test_setitem,test_df_setitem_slice_key_df_value[timedelta64[ns]-key8],"AssertionError: DataFrame.iloc[:, 1] (column name=""b"") are different + +DataFrame.iloc[:, 1] (column name=""b"") values are different (66.66667 %) +[index]: [0, 1, 2] +[left]: [-9223372036854775808, 5, -9223372036854775808] +[right]: [40, 5, 60]",failed +15719,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_True-dropna_True-basic_snowpark_pandas_df-index_cols5-by5-None-groups],"AssertionError: Actual dict has the wrong key at position 0. Actual key (0, 5) is not equal to expected key (2, 4). +Actual dict: {(0, 5): [(1.1, 6)], (0, 7): [(10.0, 15)], (1, 5): [(8.0, 3)], (1, 36): [(12.0, 16)], (2, 4): [(3.1, 17), (4.0, 5)]} +Expected dict: {(2, 4): [(3.1, 17), (4.0, 5)], (1, 5): [(8.0, 3)], (1, 36): [(12.0, 16)], (0, 7): [(10.0, 15)], (0, 5): [(1.1, 6)]}",failed +15720,tests.integ.modin.groupby.test_groupby_resample,test_groupby_resample_by_b[mean-3-h],AssertionError: Got type: ,failed +15721,tests.integ.modin.frame.test_setitem,test_df_setitem_slice_key_df_value[timedelta64[ns]-key9],"AssertionError: DataFrame.iloc[:, 1] (column name=""b"") are different + +DataFrame.iloc[:, 1] (column name=""b"") values are different (66.66667 %) +[index]: [0, 1, 2] +[left]: [-9223372036854775808, -9223372036854775808, 6] +[right]: [40, 50, 6]",failed +15722,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_True-dropna_True-basic_snowpark_pandas_df-index_cols5-by5-None-indices],"AssertionError: Actual dict has the wrong key at position 0. Actual key (np.int64(0), np.int64(5)) is not equal to expected key (2, 4). +Actual dict: {(np.int64(0), np.int64(5)): array([5]), (np.int64(0), np.int64(7)): array([3]), (np.int64(1), np.int64(5)): array([1]), (np.int64(1), np.int64(36)): array([2]), (np.int64(2), np.int64(4)): array([0, 4])} +Expected dict: {(2, 4): array([0, 4]), (1, 5): array([1]), (1, 36): array([2]), (0, 7): array([3]), (0, 5): array([5])}",failed +15723,tests.integ.modin.frame.test_merge,test_merge_on_index_columns[inner-False-left_i],KeyError: 'left_i',failed +15724,tests.integ.modin.groupby.test_groupby_resample,test_groupby_resample_by_b[mean-3-D],AssertionError: Got type: ,failed +15727,tests.integ.modin.frame.test_setitem,test_df_setitem_df_single_value[int-key0-val_columns0-val_index0],pandas.errors.InvalidIndexError: Reindexing only valid with uniquely valued Index objects,failed +15728,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_True-dropna_True-basic_snowpark_pandas_df-None-None-0-indices],"AssertionError: Actual type is not the same as expected type , and instead is type . Actual value is {0: [0], 1: [1], 2: [2], 3: [3], 4: [4], 5: [5]}",failed +15729,tests.integ.modin.frame.test_to_dynamic_table,test_to_dynamic_table_multiindex[function],"NotImplementedError: Modin supports the method DataFrame.to_dynamic_table on the Snowflake backend, but not on the backend Pandas.",failed +15730,tests.integ.modin.groupby.test_groupby_resample,test_groupby_resample_by_b[mean-5-s],AssertionError: Got type: ,failed +15731,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_True-dropna_True-basic_snowpark_pandas_df-index_cols12-None-level12-indices],ValueError: Cannot remove 2 levels from an index with 2 levels: at least one level must be left.,failed +15732,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_True-dropna_True-basic_snowpark_pandas_df-col3-col3-None-groups],"AssertionError: Actual dict has the wrong key at position 0. Actual key 1.1 is not equal to expected key 3.1. +Actual dict: {1.1: [1.1], 3.1: [3.1], 4.0: [4.0], 8.0: [8.0], 10.0: [10.0], 12.0: [12.0]} Expected dict: {3.1: [3.1], 8.0: [8.0], 12.0: [12.0], 10.0: [10.0], 4.0: [4.0], 1.1: [1.1]}",failed -19381,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_False-dropna_False-basic_snowpark_pandas_df_with_missing_values-col3-None-col3-groups],ValueError: Categorical categories cannot be null,failed -19384,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_True-dropna_True-basic_snowpark_pandas_df-col3-col3-None-indices],"AssertionError: Actual type is not the same as expected type , and instead is type . Actual value is {1.1: [5], 3.1: [0], 4.0: [4], 8.0: [1], 10.0: [3], 12.0: [2]}",failed -19388,tests.integ.modin.frame.test_merge,test_merge_left_index_right_on[inner-True-right_i],KeyError: 'right_i',failed -19391,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_False-dropna_False-basic_snowpark_pandas_df_with_missing_values-col3-None-col3-indices],TypeError: assert_array_equal() got an unexpected keyword argument 'strict',failed -19392,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_True-dropna_True-basic_snowpark_pandas_df-col3-None-0-groups],"AssertionError: Actual dict has the wrong key at position 0. Actual key 1.1 is not equal to expected key 3.1. +15734,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_True-dropna_True-basic_snowpark_pandas_df-col3-col3-None-indices],"AssertionError: Actual type is not the same as expected type , and instead is type . Actual value is {1.1: [5], 3.1: [0], 4.0: [4], 8.0: [1], 10.0: [3], 12.0: [2]}",failed +15735,tests.integ.modin.frame.test_setitem,test_df_setitem_df_single_value[int-key0-val_columns0-val_index1],pandas.errors.InvalidIndexError: Reindexing only valid with uniquely valued Index objects,failed +15736,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_True-dropna_True-basic_snowpark_pandas_df_with_missing_values-None-col1-None-indices],"AssertionError: Actual type is not the same as expected type , and instead is type . Actual value is {0.0: [3, 5], 1.0: [1, 2]}",failed +15737,tests.integ.modin.groupby.test_groupby_resample,test_groupby_resample_by_b[mean-5-min],AssertionError: Got type: ,failed +15738,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_True-dropna_True-basic_snowpark_pandas_df-col3-None-0-groups],"AssertionError: Actual dict has the wrong key at position 0. Actual key 1.1 is not equal to expected key 3.1. Actual dict: {1.1: [1.1], 3.1: [3.1], 4.0: [4.0], 8.0: [8.0], 10.0: [10.0], 12.0: [12.0]} Expected dict: {3.1: [3.1], 8.0: [8.0], 12.0: [12.0], 10.0: [10.0], 4.0: [4.0], 1.1: [1.1]}",failed -19399,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_True-dropna_True-basic_snowpark_pandas_df-col3-None-0-indices],"AssertionError: Actual type is not the same as expected type , and instead is type . Actual value is {1.1: [5], 3.1: [0], 4.0: [4], 8.0: [1], 10.0: [3], 12.0: [2]}",failed -19400,tests.integ.modin.groupby.test_value_counts,test_value_counts_basic[False-subset2-False-True-False-by-test_data1],"AssertionError: Series are different - -Series length are different -[left]: 3, MultiIndex([('key 1', nan), - ('key 1', 'value'), - ('key 2', 'value')], - names=['by', 'value2']) -[right]: 4, MultiIndex([( nan, nan), - ('key 1', nan), - ('key 1', 'value'), - ('key 2', 'value')], - names=['by', 'value2'])",failed -19407,tests.integ.modin.frame.test_merge,test_merge_left_index_right_on[inner-True-A],KeyError: 'None of [None] are in the columns',failed -19408,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_False-dropna_False-basic_snowpark_pandas_df_with_missing_values-index_cols10-col3-None-groups],ValueError: Categorical categories cannot be null,failed -19411,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_True-dropna_True-basic_snowpark_pandas_df-col3-None-col3-groups],"AssertionError: Actual dict has the wrong key at position 0. Actual key 1.1 is not equal to expected key 3.1. +15739,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_True-dropna_True-basic_snowpark_pandas_df_with_missing_values-None-by1-None-groups],KeyError: 'col1',failed +15740,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_True-dropna_True-basic_snowpark_pandas_df-col3-None-0-indices],"AssertionError: Actual type is not the same as expected type , and instead is type . Actual value is {1.1: [5], 3.1: [0], 4.0: [4], 8.0: [1], 10.0: [3], 12.0: [2]}",failed +15741,tests.integ.modin.frame.test_setitem,test_df_setitem_df_single_value[int-key0-val_columns1-val_index0],pandas.errors.InvalidIndexError: Reindexing only valid with uniquely valued Index objects,failed +15742,tests.integ.modin.groupby.test_groupby_resample,test_groupby_resample_by_b[mean-5-h],AssertionError: Got type: ,failed +15744,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_True-dropna_True-basic_snowpark_pandas_df-col3-None-col3-groups],"AssertionError: Actual dict has the wrong key at position 0. Actual key 1.1 is not equal to expected key 3.1. Actual dict: {1.1: [1.1], 3.1: [3.1], 4.0: [4.0], 8.0: [8.0], 10.0: [10.0], 12.0: [12.0]} Expected dict: {3.1: [3.1], 8.0: [8.0], 12.0: [12.0], 10.0: [10.0], 4.0: [4.0], 1.1: [1.1]}",failed -19412,tests.integ.modin.groupby.test_value_counts,test_value_counts_basic[False-subset2-False-True-False-by1-test_data1],"AssertionError: Series are different - -Series length are different -[left]: 1, MultiIndex([('value', 'key 1', nan)], - names=['value1', 'by', 'value2']) -[right]: 6, MultiIndex([( nan, 'key 1', 'value'), - ('value', nan, nan), - ( nan, nan, nan), - ( nan, 'key 1', nan), - ( nan, 'key 2', 'value'), - ('value', 'key 1', nan)], - names=['value1', 'by', 'value2'])",failed -19417,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_False-dropna_False-basic_snowpark_pandas_df_with_missing_values-index_cols10-col3-None-indices],TypeError: assert_array_equal() got an unexpected keyword argument 'strict',failed -19418,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_True-dropna_True-basic_snowpark_pandas_df-col3-None-col3-indices],"AssertionError: Actual type is not the same as expected type , and instead is type . Actual value is {1.1: [5], 3.1: [0], 4.0: [4], 8.0: [1], 10.0: [3], 12.0: [2]}",failed -19420,tests.integ.modin.groupby.test_groupby_with_grouper,test_groupby_invalid_resample,"TypeError: Only valid with DatetimeIndex, TimedeltaIndex or PeriodIndex, but got an instance of 'Index'",failed -19424,tests.integ.modin.groupby.test_groupby_with_grouper,test_groupby_double_resample_unsupported,Failed: DID NOT RAISE ,failed -19427,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_True-dropna_True-basic_snowpark_pandas_df-index_cols10-col3-None-groups],"AssertionError: Actual dict has the wrong key at position 0. Actual key 1.1 is not equal to expected key 3.1. +15745,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_True-dropna_True-basic_snowpark_pandas_df_with_missing_values-None-by1-None-indices],KeyError: 'col1',failed +15746,tests.integ.modin.frame.test_merge,test_merge_on_index_columns[inner-False-right_i],KeyError: 'right_i',failed +15748,tests.integ.modin.groupby.test_groupby_resample,test_groupby_resample_by_b[mean-5-D],AssertionError: Got type: ,failed +15749,tests.integ.modin.frame.test_setitem,test_df_setitem_df_single_value[int-key0-val_columns1-val_index1],pandas.errors.InvalidIndexError: Reindexing only valid with uniquely valued Index objects,failed +15750,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_True-dropna_True-basic_snowpark_pandas_df-col3-None-col3-indices],"AssertionError: Actual type is not the same as expected type , and instead is type . Actual value is {1.1: [5], 3.1: [0], 4.0: [4], 8.0: [1], 10.0: [3], 12.0: [2]}",failed +15751,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_True-dropna_True-basic_snowpark_pandas_df_with_missing_values-col3-col1-None-indices],"AssertionError: Actual type is not the same as expected type , and instead is type . Actual value is {0.0: [3, 5], 1.0: [1, 2]}",failed +15752,tests.integ.modin.groupby.test_groupby_resample,test_groupby_resample_by_b[mean-15-s],AssertionError: Got type: ,failed +15753,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_True-dropna_True-basic_snowpark_pandas_df-index_cols10-col3-None-groups],"AssertionError: Actual dict has the wrong key at position 0. Actual key 1.1 is not equal to expected key 3.1. Actual dict: {1.1: [(1.1, 6)], 3.1: [(3.1, 17)], 4.0: [(4.0, 5)], 8.0: [(8.0, 3)], 10.0: [(10.0, 15)], 12.0: [(12.0, 16)]} Expected dict: {3.1: [(3.1, 17)], 8.0: [(8.0, 3)], 12.0: [(12.0, 16)], 10.0: [(10.0, 15)], 4.0: [(4.0, 5)], 1.1: [(1.1, 6)]}",failed -19429,tests.integ.modin.frame.test_merge,test_merge_left_index_right_on[inner-True-B],KeyError: 'None of [None] are in the columns',failed -19432,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_False-dropna_False-basic_snowpark_pandas_df_with_missing_values-index_cols11-None-level11-groups],ValueError: Cannot remove 2 levels from an index with 2 levels: at least one level must be left.,failed -19433,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_True-dropna_True-basic_snowpark_pandas_df-index_cols10-col3-None-indices],"AssertionError: Actual type is not the same as expected type , and instead is type . Actual value is {1.1: [5], 3.1: [0], 4.0: [4], 8.0: [1], 10.0: [3], 12.0: [2]}",failed -19435,tests.integ.modin.groupby.test_value_counts,test_value_counts_basic[False-subset2-False-False-True-by-test_data1],"AssertionError: Series are different - -Series length are different -[left]: 3, MultiIndex([('key 1', 'value'), - ('key 1', nan), - ('key 2', 'value')], - names=['by', 'value2']) -[right]: 4, MultiIndex([('key 1', 'value'), - ('key 1', nan), - ('key 2', 'value'), - ( nan, nan)], - names=['by', 'value2'])",failed -19442,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_True-dropna_True-basic_snowpark_pandas_df-index_cols11-None-level11-groups],ValueError: Cannot remove 2 levels from an index with 2 levels: at least one level must be left.,failed -19443,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_False-dropna_False-basic_snowpark_pandas_df_with_missing_values-index_cols11-None-level11-indices],ValueError: Cannot remove 2 levels from an index with 2 levels: at least one level must be left.,failed -19444,tests.integ.modin.groupby.test_value_counts,test_value_counts_basic[False-subset2-False-False-True-by1-test_data1],"AssertionError: Series are different - -Series length are different -[left]: 1, MultiIndex([('value', 'key 1', nan)], - names=['value1', 'by', 'value2']) -[right]: 6, MultiIndex([('value', 'key 1', nan), - ('value', nan, nan), - ( nan, 'key 1', 'value'), - ( nan, 'key 1', nan), - ( nan, 'key 2', 'value'), - ( nan, nan, nan)], - names=['value1', 'by', 'value2'])",failed -19447,tests.integ.modin.frame.test_merge,test_merge_left_index_right_on[inner-False-right_i],KeyError: 'right_i',failed -19454,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_True-dropna_True-basic_snowpark_pandas_df-index_cols11-None-level11-indices],ValueError: Cannot remove 2 levels from an index with 2 levels: at least one level must be left.,failed -19461,tests.integ.modin.groupby.test_value_counts,test_value_counts_basic[False-subset2-False-False-False-by-test_data1],"AssertionError: Series are different - -Series length are different -[left]: 3, MultiIndex([('key 1', 'value'), - ('key 1', nan), - ('key 2', 'value')], - names=['by', 'value2']) -[right]: 4, MultiIndex([('key 1', 'value'), - ( nan, nan), - ('key 1', nan), - ('key 2', 'value')], - names=['by', 'value2'])",failed -19462,tests.integ.modin.groupby.test_grouping,test_column_select[col3-by2],ValueError: Grouper for 'col2' not 1-dimensional,failed -19464,tests.integ.modin.groupby.test_groupby_basic_agg,test_single_group_row_groupby_with_variant[6-by_col_data1-expected_groupby_col1],TypeError: unhashable type: 'list',failed -19471,tests.integ.modin.groupby.test_value_counts,test_value_counts_basic[False-subset2-False-False-False-by1-test_data1],"AssertionError: Series are different - -Series length are different -[left]: 1, MultiIndex([('value', 'key 1', nan)], - names=['value1', 'by', 'value2']) -[right]: 6, MultiIndex([( nan, 'key 1', 'value'), - ('value', nan, nan), - ( nan, nan, nan), - ( nan, 'key 1', nan), - ( nan, 'key 2', 'value'), - ('value', 'key 1', nan)], - names=['value1', 'by', 'value2'])",failed -19477,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_False-dropna_False-basic_snowpark_pandas_df_with_missing_values-index_cols12-None-level12-groups],ValueError: Cannot remove 2 levels from an index with 2 levels: at least one level must be left.,failed -19478,tests.integ.modin.frame.test_merge,test_merge_left_index_right_on[inner-False-A],KeyError: 'None of [None] are in the columns',failed -19479,tests.integ.modin.groupby.test_grouping,test_column_select[cols2-col1],"AssertionError: DataFrame are different - -DataFrame shape mismatch -[left]: (3, 2) -[right]: (3, 3)",failed -19484,tests.integ.modin.groupby.test_grouping,test_column_select[cols2-by1],"AssertionError: DataFrame are different - -DataFrame shape mismatch -[left]: (5, 2) -[right]: (5, 3)",failed -19487,tests.integ.modin.groupby.test_grouping,test_column_select[cols2-by2],"AssertionError: DataFrame are different - -DataFrame shape mismatch -[left]: (4, 2) -[right]: (4, 3)",failed -19488,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_True-dropna_True-basic_snowpark_pandas_df-index_cols12-None-level12-groups],ValueError: Cannot remove 2 levels from an index with 2 levels: at least one level must be left.,failed -19491,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_False-dropna_False-basic_snowpark_pandas_df_with_missing_values-index_cols12-None-level12-indices],ValueError: Cannot remove 2 levels from an index with 2 levels: at least one level must be left.,failed -19494,tests.integ.modin.groupby.test_grouping,test_column_select[cols3-col1],"AssertionError: DataFrame are different - -DataFrame shape mismatch -[left]: (3, 3) -[right]: (3, 4)",failed -19495,tests.integ.modin.groupby.test_value_counts,test_value_counts_basic[False-subset3-True-True-True-by-test_data1],"AssertionError: Series are different - -Series length are different -[left]: 4, MultiIndex([('key 1', 'value', nan), - ('key 1', nan, 'value'), - ('key 1', nan, nan), - ('key 2', nan, 'value')], - names=['by', 'value1', 'value2']) -[right]: 6, MultiIndex([('key 1', 'value', nan), - ('key 1', nan, 'value'), - ('key 1', nan, nan), - ('key 2', nan, 'value'), - ( nan, 'value', nan), - ( nan, nan, nan)], - names=['by', 'value1', 'value2'])",failed -19498,tests.integ.modin.frame.test_merge,test_merge_left_index_right_on[inner-False-B],KeyError: 'None of [None] are in the columns',failed -19499,tests.integ.modin.groupby.test_grouping,test_column_select[cols3-by1],"AssertionError: DataFrame are different - -DataFrame shape mismatch -[left]: (5, 3) -[right]: (5, 4)",failed -19503,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_True-dropna_True-basic_snowpark_pandas_df-index_cols12-None-level12-indices],ValueError: Cannot remove 2 levels from an index with 2 levels: at least one level must be left.,failed -19505,tests.integ.modin.groupby.test_grouping,test_column_select[cols3-by2],"AssertionError: DataFrame are different - -DataFrame shape mismatch -[left]: (4, 3) -[right]: (4, 4)",failed -19509,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_False-group_series_True-dropna_True-basic_snowpark_pandas_df-None-col1-None-indices],"AssertionError: Actual type is not the same as expected type , and instead is type . Actual value is {0: [3, 5], 1: [1, 2], 2: [0, 4]}",failed -19512,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_True-dropna_True-basic_snowpark_pandas_df_with_missing_values-None-col1-None-groups],"AssertionError: Actual dict has the wrong key at position 0. Actual key 0.0 is not equal to expected key 1.0. +15754,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_True-dropna_True-basic_snowpark_pandas_df-index_cols10-col3-None-indices],"AssertionError: Actual type is not the same as expected type , and instead is type . Actual value is {1.1: [5], 3.1: [0], 4.0: [4], 8.0: [1], 10.0: [3], 12.0: [2]}",failed +15755,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_True-dropna_True-basic_snowpark_pandas_df_with_missing_values-col3-by3-None-groups],KeyError: 'col1',failed +15757,tests.integ.modin.groupby.test_groupby_resample,test_groupby_resample_by_b[mean-15-min],AssertionError: Got type: ,failed +15758,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_True-dropna_True-basic_snowpark_pandas_df_with_missing_values-col3-by3-None-indices],KeyError: 'col1',failed +15759,tests.integ.modin.frame.test_merge,test_merge_on_index_columns[right-True-left_i],KeyError: 'left_i',failed +15760,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_True-dropna_True-basic_snowpark_pandas_df-index_cols11-None-level11-groups],ValueError: Cannot remove 2 levels from an index with 2 levels: at least one level must be left.,failed +15761,tests.integ.modin.groupby.test_groupby_resample,test_groupby_resample_by_b[mean-15-h],AssertionError: Got type: ,failed +15763,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_True-dropna_True-basic_snowpark_pandas_df_with_missing_values-index_cols4-col1-None-indices],"AssertionError: Actual type is not the same as expected type , and instead is type . Actual value is {0.0: [3, 5], 1.0: [1, 2]}",failed +15764,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_True-dropna_True-basic_snowpark_pandas_df-index_cols11-None-level11-indices],ValueError: Cannot remove 2 levels from an index with 2 levels: at least one level must be left.,failed +15765,tests.integ.modin.groupby.test_groupby_resample,test_groupby_resample_by_b[mean-15-D],AssertionError: Got type: ,failed +15766,tests.integ.modin.frame.test_setitem,test_df_setitem_df_single_value[int-A-val_columns0-val_index0],ValueError: Length of values (1) does not match length of index (4),failed +15767,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_True-dropna_True-basic_snowpark_pandas_df_with_missing_values-index_cols5-by5-None-groups],KeyError: 'col1',failed +15769,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_True-dropna_True-basic_snowpark_pandas_df-index_cols12-None-level12-groups],ValueError: Cannot remove 2 levels from an index with 2 levels: at least one level must be left.,failed +15770,tests.integ.modin.frame.test_merge,test_merge_on_index_columns[right-True-right_i],KeyError: 'right_i',failed +15771,tests.integ.modin.groupby.test_groupby_resample,test_groupby_resample_by_b[median-1-s],AssertionError: Got type: ,failed +15772,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_True-dropna_True-basic_snowpark_pandas_df_with_missing_values-index_cols5-by5-None-indices],KeyError: 'col1',failed +15773,tests.integ.modin.frame.test_setitem,test_df_setitem_df_single_value[int-A-val_columns0-val_index1],ValueError: Length of values (1) does not match length of index (4),failed +15774,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_True-dropna_True-basic_snowpark_pandas_df-index_cols12-None-level12-indices],ValueError: Cannot remove 2 levels from an index with 2 levels: at least one level must be left.,failed +15776,tests.integ.modin.groupby.test_groupby_resample,test_groupby_resample_by_b[median-1-min],AssertionError: Got type: ,failed +15777,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_True-dropna_True-basic_snowpark_pandas_df_with_missing_values-None-None-0-indices],"AssertionError: Actual type is not the same as expected type , and instead is type . Actual value is {0: [0], 1: [1], 2: [2], 3: [3], 4: [4], 5: [5]}",failed +15778,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_True-dropna_True-basic_snowpark_pandas_df_with_missing_values-None-col1-None-groups],"AssertionError: Actual dict has the wrong key at position 0. Actual key 0.0 is not equal to expected key 1.0. Actual dict: {0.0: [3, 5], 1.0: [1, 2]} Expected dict: {1.0: [1, 2], 0.0: [3, 5]}",failed -19519,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_False-group_series_True-dropna_True-basic_snowpark_pandas_df-None-by1-None-groups],TypeError: assert_array_equal() got an unexpected keyword argument 'strict',failed -19520,tests.integ.modin.frame.test_merge,test_merge_left_index_right_on[right-True-right_i],KeyError: 'right_i',failed -19522,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_True-dropna_True-basic_snowpark_pandas_df_with_missing_values-None-col1-None-indices],"AssertionError: Actual type is not the same as expected type , and instead is type . Actual value is {0.0: [3, 5], 1.0: [1, 2]}",failed -19529,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_True-dropna_True-basic_snowpark_pandas_df_with_missing_values-None-by1-None-groups],"AssertionError: Actual and expected dicts have different lengths 5 and 3 respectively. +15781,tests.integ.modin.groupby.test_groupby_resample,test_groupby_resample_by_b[median-1-h],AssertionError: Got type: ,failed +15783,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_True-dropna_True-basic_snowpark_pandas_df_with_missing_values-None-col1-None-indices],"AssertionError: Actual type is not the same as expected type , and instead is type . Actual value is {0.0: [3, 5], 1.0: [1, 2]}",failed +15784,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_True-dropna_True-basic_snowpark_pandas_df_with_missing_values-col3-col3-None-indices],"AssertionError: Actual type is not the same as expected type , and instead is type . Actual value is {3.1: [0], 4.0: [4], 8.0: [1], 10.0: [3], 12.0: [2]}",failed +15785,tests.integ.modin.frame.test_setitem,test_df_setitem_df_single_value[int-A-val_columns1-val_index0],ValueError: Length of values (1) does not match length of index (4),failed +15786,tests.integ.modin.frame.test_merge,test_merge_on_index_columns[right-False-left_i],KeyError: 'left_i',failed +15787,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_True-dropna_True-basic_snowpark_pandas_df_with_missing_values-None-by1-None-groups],"AssertionError: Actual and expected dicts have different lengths 5 and 3 respectively. Actual dict: {(nan, 4.0): [0, 4], (0.0, 5.0): [5], (0.0, 7.0): [3], (1.0, 5.0): [1], (1.0, nan): [2]} Expected dict: {(1.0, 5.0): [1], (0.0, 7.0): [3], (0.0, 5.0): [5]}",failed -19530,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_False-group_series_True-dropna_True-basic_snowpark_pandas_df-None-by1-None-indices],TypeError: assert_array_equal() got an unexpected keyword argument 'strict',failed -19531,tests.integ.modin.groupby.test_value_counts,test_value_counts_basic[False-subset3-True-True-False-by-test_data1],"AssertionError: Series are different - -Series length are different -[left]: 4, MultiIndex([('key 1', nan, 'value'), - ('key 1', nan, nan), - ('key 2', nan, 'value'), - ('key 1', 'value', nan)], - names=['by', 'value1', 'value2']) -[right]: 6, MultiIndex([('key 1', nan, 'value'), - ( nan, 'value', nan), - ( nan, nan, nan), - ('key 1', nan, nan), - ('key 2', nan, 'value'), - ('key 1', 'value', nan)], - names=['by', 'value1', 'value2'])",failed -19538,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_True-dropna_True-basic_snowpark_pandas_df_with_missing_values-None-by1-None-indices],TypeError: assert_array_equal() got an unexpected keyword argument 'strict',failed -19542,tests.integ.modin.frame.test_merge,test_merge_left_index_right_on[right-True-A],KeyError: 'None of [None] are in the columns',failed -19549,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_True-dropna_True-basic_snowpark_pandas_df_with_missing_values-col3-col1-None-groups],"AssertionError: Actual dict has the wrong key at position 0. Actual key 0.0 is not equal to expected key 1.0. +15789,tests.integ.modin.groupby.test_groupby_resample,test_groupby_resample_by_b[median-1-D],AssertionError: Got type: ,failed +15790,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_True-dropna_True-basic_snowpark_pandas_df_with_missing_values-None-by1-None-indices],"AssertionError: Actual dict has the wrong key at position 0. Actual key (np.float64(0.0), np.float64(5.0)) is not equal to expected key (1.0, 5.0). +Actual dict: {(np.float64(0.0), np.float64(5.0)): array([5]), (np.float64(0.0), np.float64(7.0)): array([3]), (np.float64(1.0), np.float64(5.0)): array([1])} +Expected dict: {(1.0, 5.0): array([1]), (0.0, 7.0): array([3]), (0.0, 5.0): array([5])}",failed +15791,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_True-dropna_True-basic_snowpark_pandas_df_with_missing_values-col3-None-0-indices],"AssertionError: Actual type is not the same as expected type , and instead is type . Actual value is {3.1: [0], 4.0: [4], 8.0: [1], 10.0: [3], 12.0: [2]}",failed +15793,tests.integ.modin.frame.test_setitem,test_df_setitem_df_single_value[int-A-val_columns1-val_index1],ValueError: Length of values (1) does not match length of index (4),failed +15794,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_True-dropna_True-basic_snowpark_pandas_df_with_missing_values-col3-col1-None-groups],"AssertionError: Actual dict has the wrong key at position 0. Actual key 0.0 is not equal to expected key 1.0. Actual dict: {0.0: [10.0, nan], 1.0: [8.0, 12.0]} Expected dict: {1.0: [8.0, 12.0], 0.0: [10.0, nan]}",failed -19551,tests.integ.modin.groupby.test_grouping,test_column_select_with_level[cols3-0],"AssertionError: DataFrame are different - -DataFrame shape mismatch -[left]: (2, 2) -[right]: (2, 3)",failed -19552,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_False-group_series_True-dropna_True-basic_snowpark_pandas_df-col3-col1-None-indices],"AssertionError: Actual type is not the same as expected type , and instead is type . Actual value is {0: [3, 5], 1: [1, 2], 2: [0, 4]}",failed -19556,tests.integ.modin.groupby.test_grouping,test_column_select_with_level[cols3-level1],"AssertionError: DataFrame are different - -DataFrame shape mismatch -[left]: (6, 2) -[right]: (6, 3)",failed -19559,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_True-dropna_True-basic_snowpark_pandas_df_with_missing_values-col3-col1-None-indices],"AssertionError: Actual type is not the same as expected type , and instead is type . Actual value is {0.0: [3, 5], 1.0: [1, 2]}",failed -19560,tests.integ.modin.frame.test_merge,test_merge_left_index_right_on[right-True-B],KeyError: 'None of [None] are in the columns',failed -19562,tests.integ.modin.groupby.test_grouping,test_column_select_with_level[cols3-level2],"AssertionError: DataFrame are different - -DataFrame shape mismatch -[left]: (3, 2) -[right]: (3, 3)",failed -19565,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_False-group_series_True-dropna_True-basic_snowpark_pandas_df-col3-by3-None-groups],TypeError: assert_array_equal() got an unexpected keyword argument 'strict',failed -19570,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_True-dropna_True-basic_snowpark_pandas_df_with_missing_values-col3-by3-None-groups],"AssertionError: Actual and expected dicts have different lengths 5 and 3 respectively. +15795,tests.integ.modin.groupby.test_groupby_resample,test_groupby_resample_by_b[median-3-s],AssertionError: Got type: ,failed +15796,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_True-dropna_True-basic_snowpark_pandas_df_with_missing_values-col3-None-col3-indices],"AssertionError: Actual type is not the same as expected type , and instead is type . Actual value is {3.1: [0], 4.0: [4], 8.0: [1], 10.0: [3], 12.0: [2]}",failed +15798,tests.integ.modin.frame.test_astype,test_astype_from_timestamp_ltz[int8],"TypeError: Converting from datetime64[ns, America/Los_Angeles] to int8 is not supported. Do obj.astype('int64').astype(dtype) instead",failed +15800,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_True-dropna_True-basic_snowpark_pandas_df_with_missing_values-col3-col1-None-indices],"AssertionError: Actual type is not the same as expected type , and instead is type . Actual value is {0.0: [3, 5], 1.0: [1, 2]}",failed +15801,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_True-dropna_True-basic_snowpark_pandas_df_with_missing_values-index_cols10-col3-None-indices],"AssertionError: Actual type is not the same as expected type , and instead is type . Actual value is {3.1: [0], 4.0: [4], 8.0: [1], 10.0: [3], 12.0: [2]}",failed +15802,tests.integ.modin.frame.test_setitem,test_df_setitem_df_single_value[timedelta64[ns]-key0-val_columns0-val_index0],pandas.errors.InvalidIndexError: Reindexing only valid with uniquely valued Index objects,failed +15803,tests.integ.modin.frame.test_merge,test_merge_on_index_columns[right-False-right_i],KeyError: 'right_i',failed +15804,tests.integ.modin.groupby.test_groupby_resample,test_groupby_resample_by_b[median-3-min],AssertionError: Got type: ,failed +15805,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_True-dropna_True-basic_snowpark_pandas_df_with_missing_values-col3-by3-None-groups],"AssertionError: Actual and expected dicts have different lengths 5 and 3 respectively. Actual dict: {(nan, 4.0): [3.1, 4.0], (0.0, 5.0): [nan], (0.0, 7.0): [10.0], (1.0, 5.0): [8.0], (1.0, nan): [12.0]} Expected dict: {(1.0, 5.0): [8.0], (0.0, 7.0): [10.0], (0.0, 5.0): [nan]}",failed -19571,tests.integ.modin.groupby.test_value_counts,test_value_counts_basic[False-subset3-True-False-True-by-test_data1],"AssertionError: Series are different - -Series length are different -[left]: 4, MultiIndex([('key 1', 'value', nan), - ('key 1', nan, 'value'), - ('key 1', nan, nan), - ('key 2', nan, 'value')], - names=['by', 'value1', 'value2']) -[right]: 6, MultiIndex([('key 1', 'value', nan), - ('key 1', nan, 'value'), - ('key 1', nan, nan), - ('key 2', nan, 'value'), - ( nan, 'value', nan), - ( nan, nan, nan)], - names=['by', 'value1', 'value2'])",failed -19576,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_False-group_series_True-dropna_True-basic_snowpark_pandas_df-col3-by3-None-indices],TypeError: assert_array_equal() got an unexpected keyword argument 'strict',failed -19579,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_True-dropna_True-basic_snowpark_pandas_df_with_missing_values-col3-by3-None-indices],TypeError: assert_array_equal() got an unexpected keyword argument 'strict',failed -19582,tests.integ.modin.frame.test_merge,test_merge_left_index_right_on[right-False-right_i],KeyError: 'right_i',failed -19586,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_True-dropna_True-basic_snowpark_pandas_df_with_missing_values-index_cols4-col1-None-groups],"AssertionError: Actual dict has the wrong key at position 0. Actual key 0.0 is not equal to expected key 1.0. +15807,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_True-dropna_True-basic_snowpark_pandas_df_with_missing_values-col3-by3-None-indices],"AssertionError: Actual dict has the wrong key at position 0. Actual key (np.float64(0.0), np.float64(5.0)) is not equal to expected key (1.0, 5.0). +Actual dict: {(np.float64(0.0), np.float64(5.0)): array([5]), (np.float64(0.0), np.float64(7.0)): array([3]), (np.float64(1.0), np.float64(5.0)): array([1])} +Expected dict: {(1.0, 5.0): array([1]), (0.0, 7.0): array([3]), (0.0, 5.0): array([5])}",failed +15808,tests.integ.modin.groupby.test_groupby_resample,test_groupby_resample_by_b[median-3-h],AssertionError: Got type: ,failed +15810,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_True-dropna_True-basic_snowpark_pandas_df_with_missing_values-index_cols4-col1-None-groups],"AssertionError: Actual dict has the wrong key at position 0. Actual key 0.0 is not equal to expected key 1.0. Actual dict: {0.0: [(10.0, 15.0), (nan, nan)], 1.0: [(8.0, 3.0), (12.0, 16.0)]} Expected dict: {1.0: [(8.0, 3.0), (12.0, 16.0)], 0.0: [(10.0, 15.0), (nan, nan)]}",failed -19591,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_False-group_series_True-dropna_True-basic_snowpark_pandas_df-index_cols4-col1-None-indices],"AssertionError: Actual type is not the same as expected type , and instead is type . Actual value is {0: [3, 5], 1: [1, 2], 2: [0, 4]}",failed -19593,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_True-dropna_True-basic_snowpark_pandas_df_with_missing_values-index_cols4-col1-None-indices],"AssertionError: Actual type is not the same as expected type , and instead is type . Actual value is {0.0: [3, 5], 1.0: [1, 2]}",failed -19596,tests.integ.modin.groupby.test_groupby_basic_agg,test_single_group_row_groupby_with_variant[7-by_col_data1-expected_groupby_col1],TypeError: unhashable type: 'list',failed -19599,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_False-group_series_True-dropna_True-basic_snowpark_pandas_df-index_cols5-by5-None-groups],TypeError: assert_array_equal() got an unexpected keyword argument 'strict',failed -19600,tests.integ.modin.frame.test_merge,test_merge_left_index_right_on[right-False-A],KeyError: 'None of [None] are in the columns',failed -19603,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_True-dropna_True-basic_snowpark_pandas_df_with_missing_values-index_cols5-by5-None-groups],"AssertionError: Actual and expected dicts have different lengths 5 and 3 respectively. +15814,tests.integ.modin.groupby.test_groupby_resample,test_groupby_resample_by_b[median-3-D],AssertionError: Got type: ,failed +15815,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_True-dropna_True-basic_snowpark_pandas_df_with_missing_values-index_cols4-col1-None-indices],"AssertionError: Actual type is not the same as expected type , and instead is type . Actual value is {0.0: [3, 5], 1.0: [1, 2]}",failed +15816,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_True-dropna_True-basic_snowpark_pandas_df_with_missing_values-index_cols5-by5-None-groups],"AssertionError: Actual and expected dicts have different lengths 5 and 3 respectively. Actual dict: {(nan, 4.0): [(3.1, 17.0), (4.0, nan)], (0.0, 5.0): [(nan, nan)], (0.0, 7.0): [(10.0, 15.0)], (1.0, 5.0): [(8.0, 3.0)], (1.0, nan): [(12.0, 16.0)]} Expected dict: {(1.0, 5.0): [(8.0, 3.0)], (0.0, 7.0): [(10.0, 15.0)], (0.0, 5.0): [(nan, nan)]}",failed -19604,tests.integ.modin.groupby.test_value_counts,test_value_counts_basic[False-subset3-True-False-False-by-test_data1],"AssertionError: Series are different - -Series length are different -[left]: 4, MultiIndex([('key 1', nan, 'value'), - ('key 1', nan, nan), - ('key 2', nan, 'value'), - ('key 1', 'value', nan)], - names=['by', 'value1', 'value2']) -[right]: 6, MultiIndex([('key 1', nan, 'value'), - ( nan, 'value', nan), - ( nan, nan, nan), - ('key 1', nan, nan), - ('key 2', nan, 'value'), - ('key 1', 'value', nan)], - names=['by', 'value1', 'value2'])",failed -19605,tests.integ.modin.hybrid.test_switch_operations,test_groupby_agg_post_op_switch[tail],"pd.DataFrame([[0, 1], [2, 3]]).groupby(0)[1].tail() fails with some indexing error.",xfailed -19611,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_True-dropna_True-basic_snowpark_pandas_df_with_missing_values-index_cols5-by5-None-indices],TypeError: assert_array_equal() got an unexpected keyword argument 'strict',failed -19614,tests.integ.modin.groupby.test_grouping,test_column_select_via_attr[by2],ValueError: Grouper for 'col2' not 1-dimensional,failed -19615,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_False-group_series_True-dropna_True-basic_snowpark_pandas_df-index_cols5-by5-None-indices],TypeError: assert_array_equal() got an unexpected keyword argument 'strict',failed -19620,tests.integ.modin.frame.test_merge,test_merge_left_index_right_on[right-False-B],KeyError: 'None of [None] are in the columns',failed -19624,tests.integ.modin.groupby.test_grouping,test_getitem_single_tuple_of_columns,SNOW-1057810: Indexing groupby with unwrapped lists should fail,xfailed -19629,tests.integ.modin.groupby.test_grouping,test_select_bad_cols_raise[C],Failed: DID NOT RAISE ,failed -19630,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_True-dropna_True-basic_snowpark_pandas_df_with_missing_values-None-None-0-indices],"AssertionError: Actual type is not the same as expected type , and instead is type . Actual value is {0: [0], 1: [1], 2: [2], 3: [3], 4: [4], 5: [5]}",failed -19633,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_False-group_series_True-dropna_True-basic_snowpark_pandas_df-None-None-0-indices],"AssertionError: Actual type is not the same as expected type , and instead is type . Actual value is {0: [0], 1: [1], 2: [2], 3: [3], 4: [4], 5: [5]}",failed -19634,tests.integ.modin.groupby.test_grouping,test_select_bad_cols_raise[cols1],Failed: DID NOT RAISE ,failed -19638,tests.integ.modin.groupby.test_grouping,test_select_overlapped_by_cols_raise,Failed: DID NOT RAISE ,failed -19640,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_True-dropna_True-basic_snowpark_pandas_df_with_missing_values-col3-col3-None-groups],"AssertionError: Actual dict has the wrong key at position 1. Actual key 4.0 is not equal to expected key 8.0. +15817,tests.integ.modin.groupby.test_groupby_resample,test_groupby_resample_by_b[median-5-s],AssertionError: Got type: ,failed +15818,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_True-dropna_True-basic_snowpark_pandas_df_with_missing_values-index_cols11-None-level11-groups],ValueError: Cannot remove 2 levels from an index with 2 levels: at least one level must be left.,failed +15819,tests.integ.modin.frame.test_setitem,test_df_setitem_df_single_value[timedelta64[ns]-key0-val_columns0-val_index1],pandas.errors.InvalidIndexError: Reindexing only valid with uniquely valued Index objects,failed +15821,tests.integ.modin.groupby.test_groupby_resample,test_groupby_resample_by_b[median-5-min],AssertionError: Got type: ,failed +15822,tests.integ.modin.frame.test_merge,test_merge_on_index_columns[outer-True-left_i],KeyError: 'left_i',failed +15823,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_True-dropna_True-basic_snowpark_pandas_df_with_missing_values-index_cols11-None-level11-indices],ValueError: Cannot remove 2 levels from an index with 2 levels: at least one level must be left.,failed +15825,tests.integ.modin.groupby.test_groupby_resample,test_groupby_resample_by_b[median-5-h],AssertionError: Got type: ,failed +15826,tests.integ.modin.frame.test_setitem,test_df_setitem_df_single_value[timedelta64[ns]-key0-val_columns1-val_index0],pandas.errors.InvalidIndexError: Reindexing only valid with uniquely valued Index objects,failed +15827,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_True-dropna_True-basic_snowpark_pandas_df_with_missing_values-index_cols12-None-level12-groups],ValueError: Cannot remove 2 levels from an index with 2 levels: at least one level must be left.,failed +15829,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_True-dropna_True-basic_snowpark_pandas_df_with_missing_values-index_cols5-by5-None-indices],"AssertionError: Actual dict has the wrong key at position 0. Actual key (np.float64(0.0), np.float64(5.0)) is not equal to expected key (1.0, 5.0). +Actual dict: {(np.float64(0.0), np.float64(5.0)): array([5]), (np.float64(0.0), np.float64(7.0)): array([3]), (np.float64(1.0), np.float64(5.0)): array([1])} +Expected dict: {(1.0, 5.0): array([1]), (0.0, 7.0): array([3]), (0.0, 5.0): array([5])}",failed +15831,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_True-dropna_True-basic_snowpark_pandas_df_with_missing_values-index_cols12-None-level12-indices],ValueError: Cannot remove 2 levels from an index with 2 levels: at least one level must be left.,failed +15833,tests.integ.modin.frame.test_setitem,test_df_setitem_df_single_value[timedelta64[ns]-key0-val_columns1-val_index1],pandas.errors.InvalidIndexError: Reindexing only valid with uniquely valued Index objects,failed +15835,tests.integ.modin.groupby.test_groupby_resample,test_groupby_resample_by_b[median-5-D],AssertionError: Got type: ,failed +15837,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_True-dropna_True-basic_snowpark_pandas_df_with_missing_values-None-None-0-indices],"AssertionError: Actual type is not the same as expected type , and instead is type . Actual value is {0: [0], 1: [1], 2: [2], 3: [3], 4: [4], 5: [5]}",failed +15838,tests.integ.modin.frame.test_merge,test_merge_on_index_columns[outer-True-right_i],KeyError: 'right_i',failed +15840,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_True-dropna_True-basic_snowpark_pandas_df_with_missing_values-col3-col3-None-groups],"AssertionError: Actual dict has the wrong key at position 1. Actual key 4.0 is not equal to expected key 8.0. Actual dict: {3.1: [3.1], 4.0: [4.0], 8.0: [8.0], 10.0: [10.0], 12.0: [12.0]} Expected dict: {3.1: [3.1], 8.0: [8.0], 12.0: [12.0], 10.0: [10.0], 4.0: [4.0]}",failed -19642,tests.integ.modin.groupby.test_value_counts,test_value_counts_basic[False-subset3-False-True-True-by-test_data1],"AssertionError: Series are different - -Series length are different -[left]: 4, MultiIndex([('key 1', 'value', nan), - ('key 1', nan, 'value'), - ('key 1', nan, nan), - ('key 2', nan, 'value')], - names=['by', 'value1', 'value2']) -[right]: 6, MultiIndex([('key 1', 'value', nan), - ('key 1', nan, 'value'), - ('key 1', nan, nan), - ('key 2', nan, 'value'), - ( nan, 'value', nan), - ( nan, nan, nan)], - names=['by', 'value1', 'value2'])",failed -19644,tests.integ.modin.groupby.test_grouping,test_select_index_cols_raise,"AssertionError: Regex pattern did not match. - Regex: ""Columns not found: 'A'"" - Input: ""'A'""",failed -19646,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_True-dropna_True-basic_snowpark_pandas_df_with_missing_values-col3-col3-None-indices],"AssertionError: Actual type is not the same as expected type , and instead is type . Actual value is {3.1: [0], 4.0: [4], 8.0: [1], 10.0: [3], 12.0: [2]}",failed -19648,tests.integ.modin.groupby.test_grouping,test_select_cols_with_axis_1_raise,Failed: DID NOT RAISE ,failed -19649,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_False-group_series_True-dropna_True-basic_snowpark_pandas_df-col3-col3-None-indices],"AssertionError: Actual type is not the same as expected type , and instead is type . Actual value is {1.1: [5], 3.1: [0], 4.0: [4], 8.0: [1], 10.0: [3], 12.0: [2]}",failed -19654,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_True-dropna_True-basic_snowpark_pandas_df_with_missing_values-col3-None-0-groups],"AssertionError: Actual dict has the wrong key at position 1. Actual key 4.0 is not equal to expected key 8.0. +15841,tests.integ.modin.groupby.test_groupby_resample,test_groupby_resample_by_b[median-15-s],AssertionError: Got type: ,failed +15842,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_True-dropna_True-basic_snowpark_pandas_df_with_missing_values-col3-col3-None-indices],"AssertionError: Actual type is not the same as expected type , and instead is type . Actual value is {3.1: [0], 4.0: [4], 8.0: [1], 10.0: [3], 12.0: [2]}",failed +15843,tests.integ.modin.frame.test_setitem,test_df_setitem_df_single_value[timedelta64[ns]-A-val_columns0-val_index0],ValueError: Length of values (1) does not match length of index (4),failed +15844,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_True-dropna_False-basic_snowpark_pandas_df-None-by1-None-groups],KeyError: 'col1',failed +15846,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_True-dropna_True-basic_snowpark_pandas_df_with_missing_values-col3-None-0-groups],"AssertionError: Actual dict has the wrong key at position 1. Actual key 4.0 is not equal to expected key 8.0. Actual dict: {3.1: [3.1], 4.0: [4.0], 8.0: [8.0], 10.0: [10.0], 12.0: [12.0]} Expected dict: {3.1: [3.1], 8.0: [8.0], 12.0: [12.0], 10.0: [10.0], 4.0: [4.0]}",failed -19658,tests.integ.modin.frame.test_reindex,test_reindex_multiindex_negative[0],"ValueError: Buffer dtype mismatch, expected 'Python object' but got 'long'",failed -19662,tests.integ.modin.groupby.test_grouping,test_groupby_as_index_select_column_sum_empty_df,SNOW-1057819: Investigate whether groupby operations should drop df.columns.name,xfailed -19665,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_True-dropna_True-basic_snowpark_pandas_df_with_missing_values-col3-None-0-indices],"AssertionError: Actual type is not the same as expected type , and instead is type . Actual value is {3.1: [0], 4.0: [4], 8.0: [1], 10.0: [3], 12.0: [2]}",failed -19667,tests.integ.modin.frame.test_merge,test_merge_left_index_right_on[outer-True-right_i],KeyError: 'right_i',failed -19668,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_False-group_series_True-dropna_True-basic_snowpark_pandas_df-col3-None-0-indices],"AssertionError: Actual type is not the same as expected type , and instead is type . Actual value is {1.1: [5], 3.1: [0], 4.0: [4], 8.0: [1], 10.0: [3], 12.0: [2]}",failed -19675,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_True-dropna_True-basic_snowpark_pandas_df_with_missing_values-col3-None-col3-groups],"AssertionError: Actual dict has the wrong key at position 1. Actual key 4.0 is not equal to expected key 8.0. +15847,tests.integ.modin.groupby.test_groupby_resample,test_groupby_resample_by_b[median-15-min],AssertionError: Got type: ,failed +15848,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_True-dropna_True-basic_snowpark_pandas_df_with_missing_values-col3-None-0-indices],"AssertionError: Actual type is not the same as expected type , and instead is type . Actual value is {3.1: [0], 4.0: [4], 8.0: [1], 10.0: [3], 12.0: [2]}",failed +15850,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_True-dropna_False-basic_snowpark_pandas_df-None-by1-None-indices],KeyError: 'col1',failed +15852,tests.integ.modin.frame.test_merge,test_merge_on_index_columns[outer-False-left_i],KeyError: 'left_i',failed +15854,tests.integ.modin.frame.test_setitem,test_df_setitem_df_single_value[timedelta64[ns]-A-val_columns0-val_index1],ValueError: Length of values (1) does not match length of index (4),failed +15855,tests.integ.modin.groupby.test_groupby_resample,test_groupby_resample_by_b[median-15-h],AssertionError: Got type: ,failed +15857,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_True-dropna_True-basic_snowpark_pandas_df_with_missing_values-col3-None-col3-groups],"AssertionError: Actual dict has the wrong key at position 1. Actual key 4.0 is not equal to expected key 8.0. Actual dict: {3.1: [3.1], 4.0: [4.0], 8.0: [8.0], 10.0: [10.0], 12.0: [12.0]} Expected dict: {3.1: [3.1], 8.0: [8.0], 12.0: [12.0], 10.0: [10.0], 4.0: [4.0]}",failed -19676,tests.integ.modin.frame.test_reindex,test_reindex_multiindex_negative[1],"ValueError: Buffer dtype mismatch, expected 'Python object' but got 'long'",failed -19677,tests.integ.modin.groupby.test_value_counts,test_value_counts_basic[False-subset3-False-True-False-by-test_data1],"AssertionError: Series are different - -Series length are different -[left]: 4, MultiIndex([('key 1', nan, 'value'), - ('key 1', nan, nan), - ('key 2', nan, 'value'), - ('key 1', 'value', nan)], - names=['by', 'value1', 'value2']) -[right]: 6, MultiIndex([('key 1', nan, 'value'), - ( nan, 'value', nan), - ( nan, nan, nan), - ('key 1', nan, nan), - ('key 2', nan, 'value'), - ('key 1', 'value', nan)], - names=['by', 'value1', 'value2'])",failed -19679,tests.integ.modin.frame.test_reindex,test_reindex_timedelta_axis_0_negative,[XPASS(strict)] ,failed -19681,tests.integ.modin.frame.test_reindex,test_reindex_timedelta_axis_1_negative,[XPASS(strict)] ,failed -19684,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_True-dropna_True-basic_snowpark_pandas_df_with_missing_values-col3-None-col3-indices],"AssertionError: Actual type is not the same as expected type , and instead is type . Actual value is {3.1: [0], 4.0: [4], 8.0: [1], 10.0: [3], 12.0: [2]}",failed -19686,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_False-group_series_True-dropna_True-basic_snowpark_pandas_df-col3-None-col3-indices],"AssertionError: Actual type is not the same as expected type , and instead is type . Actual value is {1.1: [5], 3.1: [0], 4.0: [4], 8.0: [1], 10.0: [3], 12.0: [2]}",failed -19687,tests.integ.modin.frame.test_merge,test_merge_left_index_right_on[outer-True-A],KeyError: 'None of [None] are in the columns',failed -19694,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_True-dropna_True-basic_snowpark_pandas_df_with_missing_values-index_cols10-col3-None-groups],"AssertionError: Actual dict has the wrong key at position 1. Actual key 4.0 is not equal to expected key 8.0. +15859,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_True-dropna_True-basic_snowpark_pandas_df_with_missing_values-col3-None-col3-indices],"AssertionError: Actual type is not the same as expected type , and instead is type . Actual value is {3.1: [0], 4.0: [4], 8.0: [1], 10.0: [3], 12.0: [2]}",failed +15860,tests.integ.modin.groupby.test_groupby_resample,test_groupby_resample_by_b[median-15-D],AssertionError: Got type: ,failed +15861,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_True-dropna_False-basic_snowpark_pandas_df-col3-by3-None-groups],KeyError: 'col1',failed +15862,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_True-dropna_True-basic_snowpark_pandas_df_with_missing_values-index_cols10-col3-None-groups],"AssertionError: Actual dict has the wrong key at position 1. Actual key 4.0 is not equal to expected key 8.0. Actual dict: {3.1: [(3.1, 17.0)], 4.0: [(4.0, nan)], 8.0: [(8.0, 3.0)], 10.0: [(10.0, 15.0)], 12.0: [(12.0, 16.0)]} Expected dict: {3.1: [(3.1, 17.0)], 8.0: [(8.0, 3.0)], 12.0: [(12.0, 16.0)], 10.0: [(10.0, 15.0)], 4.0: [(4.0, nan)]}",failed -19702,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_True-dropna_True-basic_snowpark_pandas_df_with_missing_values-index_cols10-col3-None-indices],"AssertionError: Actual type is not the same as expected type , and instead is type . Actual value is {3.1: [0], 4.0: [4], 8.0: [1], 10.0: [3], 12.0: [2]}",failed -19708,tests.integ.modin.frame.test_merge,test_merge_left_index_right_on[outer-True-B],KeyError: 'None of [None] are in the columns',failed -19710,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_False-group_series_True-dropna_True-basic_snowpark_pandas_df-index_cols10-col3-None-indices],"AssertionError: Actual type is not the same as expected type , and instead is type . Actual value is {1.1: [5], 3.1: [0], 4.0: [4], 8.0: [1], 10.0: [3], 12.0: [2]}",failed -19716,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_True-dropna_True-basic_snowpark_pandas_df_with_missing_values-index_cols11-None-level11-groups],ValueError: Cannot remove 2 levels from an index with 2 levels: at least one level must be left.,failed -19718,tests.integ.modin.groupby.test_value_counts,test_value_counts_basic[False-subset3-False-False-True-by-test_data1],"AssertionError: Series are different +15863,tests.integ.modin.frame.test_merge,test_merge_on_index_columns[outer-False-right_i],KeyError: 'right_i',failed +15865,tests.integ.modin.groupby.test_groupby_resample,test_groupby_resample_by_b[min-1-s],AssertionError: Got type: ,failed +15866,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_True-dropna_True-basic_snowpark_pandas_df_with_missing_values-index_cols10-col3-None-indices],"AssertionError: Actual type is not the same as expected type , and instead is type . Actual value is {3.1: [0], 4.0: [4], 8.0: [1], 10.0: [3], 12.0: [2]}",failed +15868,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_True-dropna_False-basic_snowpark_pandas_df-col3-by3-None-indices],KeyError: 'col1',failed +15869,tests.integ.modin.frame.test_merge,test_join_type_mismatch[index20-index11],"AssertionError: DataFrame.index are different -Series length are different -[left]: 4, MultiIndex([('key 1', 'value', nan), - ('key 1', nan, 'value'), - ('key 1', nan, nan), - ('key 2', nan, 'value')], - names=['by', 'value1', 'value2']) -[right]: 6, MultiIndex([('key 1', 'value', nan), - ('key 1', nan, 'value'), - ('key 1', nan, nan), - ('key 2', nan, 'value'), - ( nan, 'value', nan), - ( nan, nan, nan)], - names=['by', 'value1', 'value2'])",failed -19726,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_False-group_series_True-dropna_True-basic_snowpark_pandas_df-index_cols11-None-level11-groups],ValueError: Cannot remove 2 levels from an index with 2 levels: at least one level must be left.,failed -19730,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_True-dropna_True-basic_snowpark_pandas_df_with_missing_values-index_cols11-None-level11-indices],ValueError: Cannot remove 2 levels from an index with 2 levels: at least one level must be left.,failed -19732,tests.integ.modin.frame.test_merge,test_merge_left_index_right_on[outer-False-right_i],KeyError: 'right_i',failed -19741,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_False-group_series_True-dropna_True-basic_snowpark_pandas_df-index_cols11-None-level11-indices],ValueError: Cannot remove 2 levels from an index with 2 levels: at least one level must be left.,failed -19746,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_True-dropna_True-basic_snowpark_pandas_df_with_missing_values-index_cols12-None-level12-groups],ValueError: Cannot remove 2 levels from an index with 2 levels: at least one level must be left.,failed -19750,tests.integ.modin.frame.test_merge,test_merge_left_index_right_on[outer-False-A],KeyError: 'None of [None] are in the columns',failed -19756,tests.integ.modin.groupby.test_value_counts,test_value_counts_basic[False-subset3-False-False-False-by-test_data1],"AssertionError: Series are different +DataFrame.index values are different (66.66667 %) +[left]: Index([1.5, 8.0, 7.0], dtype='float64') +[right]: Index([1.5, 7.0, 8.0], dtype='float64') +At positional index 1, first diff: 8.0 != 7.0",failed +15871,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_True-dropna_True-basic_snowpark_pandas_df_with_missing_values-index_cols11-None-level11-groups],ValueError: Cannot remove 2 levels from an index with 2 levels: at least one level must be left.,failed +15874,tests.integ.modin.groupby.test_groupby_resample,test_groupby_resample_by_b[min-1-min],AssertionError: Got type: ,failed +15875,tests.integ.modin.frame.test_merge,test_join_type_mismatch[index20-index12],pandas.errors.InvalidIndexError: Reindexing only valid with uniquely valued Index objects,failed +15876,tests.integ.modin.frame.test_setitem,test_df_setitem_df_single_value[timedelta64[ns]-A-val_columns1-val_index0],ValueError: Length of values (1) does not match length of index (4),failed +15877,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_True-dropna_True-basic_snowpark_pandas_df_with_missing_values-index_cols11-None-level11-indices],ValueError: Cannot remove 2 levels from an index with 2 levels: at least one level must be left.,failed +15878,tests.integ.modin.groupby.test_groupby_resample,test_groupby_resample_by_b[min-1-h],AssertionError: Got type: ,failed +15879,tests.integ.modin.frame.test_merge,test_join_type_mismatch[index21-index10],"AssertionError: DataFrame.index are different -Series length are different -[left]: 4, MultiIndex([('key 1', nan, 'value'), - ('key 1', nan, nan), - ('key 2', nan, 'value'), - ('key 1', 'value', nan)], - names=['by', 'value1', 'value2']) -[right]: 6, MultiIndex([('key 1', nan, 'value'), - ( nan, 'value', nan), - ( nan, nan, nan), - ('key 1', nan, nan), - ('key 2', nan, 'value'), - ('key 1', 'value', nan)], - names=['by', 'value1', 'value2'])",failed -19757,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_False-group_series_True-dropna_True-basic_snowpark_pandas_df-index_cols12-None-level12-groups],ValueError: Cannot remove 2 levels from an index with 2 levels: at least one level must be left.,failed -19759,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_True-dropna_True-basic_snowpark_pandas_df_with_missing_values-index_cols12-None-level12-indices],ValueError: Cannot remove 2 levels from an index with 2 levels: at least one level must be left.,failed -19767,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_True-dropna_False-basic_snowpark_pandas_df-None-col1-None-groups],"AssertionError: Actual dict has the wrong key at position 0. Actual key 0 is not equal to expected key 2. +DataFrame.index values are different (100.0 %) +[left]: Index([3.0, 4.0, 1.5], dtype='float64') +[right]: Index([1.5, 3.0, 4.0], dtype='float64') +At positional index 0, first diff: 3.0 != 1.5",failed +15880,tests.integ.modin.frame.test_merge,test_join_type_mismatch[index21-index11],"AssertionError: DataFrame.index are different + +DataFrame.index values are different (66.66667 %) +[left]: Index([1.5, 8.0, 3.0], dtype='float64') +[right]: Index([1.5, 3.0, 8.0], dtype='float64') +At positional index 1, first diff: 8.0 != 3.0",failed +15881,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_True-dropna_True-basic_snowpark_pandas_df_with_missing_values-index_cols12-None-level12-groups],ValueError: Cannot remove 2 levels from an index with 2 levels: at least one level must be left.,failed +15882,tests.integ.modin.groupby.test_groupby_resample,test_groupby_resample_by_b[min-1-D],AssertionError: Got type: ,failed +15883,tests.integ.modin.frame.test_setitem,test_df_setitem_df_single_value[timedelta64[ns]-A-val_columns1-val_index1],ValueError: Length of values (1) does not match length of index (4),failed +15884,tests.integ.modin.frame.test_setitem,test_df_setitem_value_df_mismatch_num_col_negative,"AssertionError: Regex pattern did not match. + Regex: 'shape mismatch' + Input: 'Length of values (1) does not match length of index (4)'",failed +15885,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_True-dropna_True-basic_snowpark_pandas_df_with_missing_values-index_cols12-None-level12-indices],ValueError: Cannot remove 2 levels from an index with 2 levels: at least one level must be left.,failed +15888,tests.integ.modin.groupby.test_groupby_resample,test_groupby_resample_by_b[min-3-s],AssertionError: Got type: ,failed +15889,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_True-dropna_False-basic_snowpark_pandas_df-index_cols5-by5-None-groups],KeyError: 'col1',failed +15891,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_True-dropna_False-basic_snowpark_pandas_df-None-col1-None-groups],"AssertionError: Actual dict has the wrong key at position 0. Actual key 0 is not equal to expected key 2. Actual dict: {0: [3, 5], 1: [1, 2], 2: [0, 4]} Expected dict: {2: [0, 4], 1: [1, 2], 0: [3, 5]}",failed -19768,tests.integ.modin.frame.test_merge,test_merge_left_index_right_on[outer-False-B],KeyError: 'None of [None] are in the columns',failed -19776,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_False-group_series_True-dropna_True-basic_snowpark_pandas_df-index_cols12-None-level12-indices],ValueError: Cannot remove 2 levels from an index with 2 levels: at least one level must be left.,failed -19781,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_True-dropna_False-basic_snowpark_pandas_df-None-col1-None-indices],"AssertionError: Actual dict has the wrong key at position 0. Actual key 0 is not equal to expected key 2. -Actual dict: {0: array([3, 5]), 1: array([1, 2]), 2: array([0, 4])} +15892,tests.integ.modin.groupby.test_groupby_resample,test_groupby_resample_by_b[min-3-min],AssertionError: Got type: ,failed +15893,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_True-dropna_False-basic_snowpark_pandas_df-None-col1-None-indices],"AssertionError: Actual dict has the wrong key at position 0. Actual key 0 is not equal to expected key 2. +Actual dict: {np.int64(0): array([3, 5]), np.int64(1): array([1, 2]), np.int64(2): array([0, 4])} Expected dict: {2: array([0, 4]), 1: array([1, 2]), 0: array([3, 5])}",failed -19785,tests.integ.modin.frame.test_rename,test_rename_mi[DataFrame],Failed: DID NOT RAISE ,failed -19792,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_True-dropna_False-basic_snowpark_pandas_df-None-by1-None-groups],TypeError: assert_array_equal() got an unexpected keyword argument 'strict',failed -19800,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_False-group_series_True-dropna_True-basic_snowpark_pandas_df_with_missing_values-None-col1-None-indices],"AssertionError: Actual type is not the same as expected type , and instead is type . Actual value is {0.0: [3, 5], 1.0: [1, 2]}",failed -19803,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_True-dropna_False-basic_snowpark_pandas_df-None-by1-None-indices],TypeError: assert_array_equal() got an unexpected keyword argument 'strict',failed -19804,tests.integ.modin.groupby.test_min_max,test_groupby_min_count_string_nullable[3-min],"AssertionError: DataFrame.iloc[:, 0] (column name=""ts"") are different +15894,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_True-dropna_False-basic_snowpark_pandas_df-index_cols5-by5-None-indices],KeyError: 'col1',failed +15896,tests.integ.modin.frame.test_setitem,test_df_setitem_self_df_set_aligned_row_key[native_df0],TypeError: unhashable type: 'Series',failed +15897,tests.integ.modin.frame.test_merge,test_join_type_mismatch[index21-index12],pandas.errors.InvalidIndexError: Reindexing only valid with uniquely valued Index objects,failed +15898,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_True-dropna_False-basic_snowpark_pandas_df-None-by1-None-groups],"AssertionError: Actual dict has the wrong key at position 0. Actual key (0, 5) is not equal to expected key (2, 4). +Actual dict: {(0, 5): [5], (0, 7): [3], (1, 5): [1], (1, 36): [2], (2, 4): [0, 4]} +Expected dict: {(2, 4): [0, 4], (1, 5): [1], (1, 36): [2], (0, 7): [3], (0, 5): [5]}",failed +15899,tests.integ.modin.groupby.test_groupby_resample,test_groupby_resample_by_b[min-3-h],AssertionError: Got type: ,failed +15903,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_True-dropna_False-basic_snowpark_pandas_df-None-by1-None-indices],"AssertionError: Actual dict has the wrong key at position 0. Actual key (np.int64(0), np.int64(5)) is not equal to expected key (2, 4). +Actual dict: {(np.int64(0), np.int64(5)): array([5]), (np.int64(0), np.int64(7)): array([3]), (np.int64(1), np.int64(5)): array([1]), (np.int64(1), np.int64(36)): array([2]), (np.int64(2), np.int64(4)): array([0, 4])} +Expected dict: {(2, 4): array([0, 4]), (1, 5): array([1]), (1, 36): array([2]), (0, 7): array([3]), (0, 5): array([5])}",failed +15905,tests.integ.modin.groupby.test_groupby_resample,test_groupby_resample_by_b[min-3-D],AssertionError: Got type: ,failed +15906,tests.integ.modin.frame.test_merge,test_join_type_mismatch[index22-index10],pandas.errors.InvalidIndexError: Reindexing only valid with uniquely valued Index objects,failed +15907,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_True-dropna_False-basic_snowpark_pandas_df-col3-col1-None-groups],"AssertionError: Actual dict has the wrong key at position 0. Actual key 0 is not equal to expected key 2. +Actual dict: {0: [10.0, 1.1], 1: [8.0, 12.0], 2: [3.1, 4.0]} +Expected dict: {2: [3.1, 4.0], 1: [8.0, 12.0], 0: [10.0, 1.1]}",failed +15909,tests.integ.modin.frame.test_setitem,test_df_setitem_self_df_set_aligned_row_key[native_df1],TypeError: unhashable type: 'Series',failed +15911,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_True-dropna_False-basic_snowpark_pandas_df-col3-col1-None-indices],"AssertionError: Actual dict has the wrong key at position 0. Actual key 0 is not equal to expected key 2. +Actual dict: {np.int64(0): array([3, 5]), np.int64(1): array([1, 2]), np.int64(2): array([0, 4])} +Expected dict: {2: array([0, 4]), 1: array([1, 2]), 0: array([3, 5])}",failed +15912,tests.integ.modin.groupby.test_groupby_resample,test_groupby_resample_by_b[min-5-s],AssertionError: Got type: ,failed +15914,tests.integ.modin.frame.test_merge,test_join_type_mismatch[index22-index11],pandas.errors.InvalidIndexError: Reindexing only valid with uniquely valued Index objects,failed +15916,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_True-dropna_False-basic_snowpark_pandas_df-col3-by3-None-groups],"AssertionError: Actual dict has the wrong key at position 0. Actual key (0, 5) is not equal to expected key (2, 4). +Actual dict: {(0, 5): [1.1], (0, 7): [10.0], (1, 5): [8.0], (1, 36): [12.0], (2, 4): [3.1, 4.0]} +Expected dict: {(2, 4): [3.1, 4.0], (1, 5): [8.0], (1, 36): [12.0], (0, 7): [10.0], (0, 5): [1.1]}",failed +15918,tests.integ.modin.frame.test_setitem,test_df_setitem_self_df_set_aligned_row_key[native_df2],TypeError: unhashable type: 'Series',failed +15919,tests.integ.modin.groupby.test_groupby_resample,test_groupby_resample_by_b[min-5-min],AssertionError: Got type: ,failed +15920,tests.integ.modin.frame.test_merge,test_join_type_mismatch[index22-index12],"AssertionError: DataFrame are different -DataFrame.iloc[:, 0] (column name=""ts"") values are different (50.0 %) -[index]: [1, 2] -[left]: -[, 'a'] -Length: 2, dtype: string -[right]: [nan, nan] -At positional index 1, first diff: a != nan",failed -19808,tests.integ.modin.groupby.test_min_max,test_groupby_min_count_string_nullable[3-max],"AssertionError: DataFrame.iloc[:, 0] (column name=""ts"") are different +DataFrame shape mismatch +[left]: (2, 2) +[right]: (4, 2)",failed +15922,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_True-dropna_False-basic_snowpark_pandas_df-col3-by3-None-indices],"AssertionError: Actual dict has the wrong key at position 0. Actual key (np.int64(0), np.int64(5)) is not equal to expected key (2, 4). +Actual dict: {(np.int64(0), np.int64(5)): array([5]), (np.int64(0), np.int64(7)): array([3]), (np.int64(1), np.int64(5)): array([1]), (np.int64(1), np.int64(36)): array([2]), (np.int64(2), np.int64(4)): array([0, 4])} +Expected dict: {(2, 4): array([0, 4]), (1, 5): array([1]), (1, 36): array([2]), (0, 7): array([3]), (0, 5): array([5])}",failed +15926,tests.integ.modin.frame.test_merge,test_join_type_mismatch_negative[index10-index20],Failed: DID NOT RAISE ,failed +15928,tests.integ.modin.frame.test_merge,test_join_type_mismatch_negative[index11-index21],Failed: DID NOT RAISE ,failed +15929,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_True-dropna_False-basic_snowpark_pandas_df-index_cols4-col1-None-groups],"AssertionError: Actual dict has the wrong key at position 0. Actual key 0 is not equal to expected key 2. +Actual dict: {0: [(10.0, 15), (1.1, 6)], 1: [(8.0, 3), (12.0, 16)], 2: [(3.1, 17), (4.0, 5)]} +Expected dict: {2: [(3.1, 17), (4.0, 5)], 1: [(8.0, 3), (12.0, 16)], 0: [(10.0, 15), (1.1, 6)]}",failed +15930,tests.integ.modin.groupby.test_groupby_resample,test_groupby_resample_by_b[min-5-h],AssertionError: Got type: ,failed +15931,tests.integ.modin.frame.test_setitem,test_df_setitem_replace_column_with_single_column[a-column2],"AssertionError: DataFrame.iloc[:, 0] (column name=""a"") are different -DataFrame.iloc[:, 0] (column name=""ts"") values are different (50.0 %) -[index]: [1, 2] -[left]: -[, 'b'] -Length: 2, dtype: string -[right]: [nan, nan] -At positional index 1, first diff: b != nan",failed -19809,tests.integ.modin.frame.test_rename,test_rename,"AssertionError: Index are different +DataFrame.iloc[:, 0] (column name=""a"") values are different (66.66667 %) +[index]: [0, 1, 2] +[left]: [42, 42, 42] +[right]: [nan, nan, 42.0]",failed +15932,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_True-dropna_False-basic_snowpark_pandas_df-index_cols11-None-level11-groups],ValueError: Cannot remove 2 levels from an index with 2 levels: at least one level must be left.,failed +15933,tests.integ.modin.frame.test_merge,test_join_type_mismatch_negative[index12-index22],Failed: DID NOT RAISE ,failed +15934,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_True-dropna_False-basic_snowpark_pandas_df-index_cols4-col1-None-indices],"AssertionError: Actual dict has the wrong key at position 0. Actual key 0 is not equal to expected key 2. +Actual dict: {np.int64(0): array([3, 5]), np.int64(1): array([1, 2]), np.int64(2): array([0, 4])} +Expected dict: {2: array([0, 4]), 1: array([1, 2]), 0: array([3, 5])}",failed +15936,tests.integ.modin.frame.test_merge,test_join_type_mismatch_diff_with_native_pandas[index10-index20-expected_res0],"AssertionError: DataFrame are different + +DataFrame shape mismatch +[left]: (4, 2) +[right]: (3, 2)",failed +15937,tests.integ.modin.groupby.test_groupby_resample,test_groupby_resample_by_b[min-5-D],AssertionError: Got type: ,failed +15939,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_True-dropna_False-basic_snowpark_pandas_df-index_cols5-by5-None-groups],"AssertionError: Actual dict has the wrong key at position 0. Actual key (0, 5) is not equal to expected key (2, 4). +Actual dict: {(0, 5): [(1.1, 6)], (0, 7): [(10.0, 15)], (1, 5): [(8.0, 3)], (1, 36): [(12.0, 16)], (2, 4): [(3.1, 17), (4.0, 5)]} +Expected dict: {(2, 4): [(3.1, 17), (4.0, 5)], (1, 5): [(8.0, 3)], (1, 36): [(12.0, 16)], (0, 7): [(10.0, 15)], (0, 5): [(1.1, 6)]}",failed +15940,tests.integ.modin.frame.test_merge,test_join_type_mismatch_diff_with_native_pandas[index11-index21-expected_res1],"AssertionError: DataFrame.index are different + +Attribute ""inferred_type"" are different +[left]: mixed +[right]: string",failed +15941,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_True-dropna_False-basic_snowpark_pandas_df-index_cols11-None-level11-indices],ValueError: Cannot remove 2 levels from an index with 2 levels: at least one level must be left.,failed +15944,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_True-dropna_False-basic_snowpark_pandas_df-index_cols5-by5-None-indices],"AssertionError: Actual dict has the wrong key at position 0. Actual key (np.int64(0), np.int64(5)) is not equal to expected key (2, 4). +Actual dict: {(np.int64(0), np.int64(5)): array([5]), (np.int64(0), np.int64(7)): array([3]), (np.int64(1), np.int64(5)): array([1]), (np.int64(1), np.int64(36)): array([2]), (np.int64(2), np.int64(4)): array([0, 4])} +Expected dict: {(2, 4): array([0, 4]), (1, 5): array([1]), (1, 36): array([2]), (0, 7): array([3]), (0, 5): array([5])}",failed +15945,tests.integ.modin.groupby.test_groupby_resample,test_groupby_resample_by_b[min-15-s],AssertionError: Got type: ,failed +15947,tests.integ.modin.frame.test_setitem,test_df_setitem_replace_column_with_single_column[a-timedelta_type],Failed: DID NOT RAISE ,failed +15950,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_True-dropna_False-basic_snowpark_pandas_df-index_cols12-None-level12-groups],ValueError: Cannot remove 2 levels from an index with 2 levels: at least one level must be left.,failed +15953,tests.integ.modin.groupby.test_groupby_resample,test_groupby_resample_by_b[min-15-min],AssertionError: Got type: ,failed +15955,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_True-dropna_False-basic_snowpark_pandas_df-col3-col3-None-groups],"AssertionError: Actual dict has the wrong key at position 0. Actual key 1.1 is not equal to expected key 3.1. +Actual dict: {1.1: [1.1], 3.1: [3.1], 4.0: [4.0], 8.0: [8.0], 10.0: [10.0], 12.0: [12.0]} +Expected dict: {3.1: [3.1], 8.0: [8.0], 12.0: [12.0], 10.0: [10.0], 4.0: [4.0], 1.1: [1.1]}",failed +15956,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_True-dropna_False-basic_snowpark_pandas_df-index_cols12-None-level12-indices],ValueError: Cannot remove 2 levels from an index with 2 levels: at least one level must be left.,failed +15958,tests.integ.modin.groupby.test_groupby_resample,test_groupby_resample_by_b[min-15-h],AssertionError: Got type: ,failed +15959,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_True-dropna_False-basic_snowpark_pandas_df-col3-col3-None-indices],"AssertionError: Actual dict has the wrong key at position 0. Actual key 1.1 is not equal to expected key 3.1. +Actual dict: {np.float64(1.1): array([5]), np.float64(3.1): array([0]), np.float64(4.0): array([4]), np.float64(8.0): array([1]), np.float64(10.0): array([3]), np.float64(12.0): array([2])} +Expected dict: {3.1: array([0]), 8.0: array([1]), 12.0: array([2]), 10.0: array([3]), 4.0: array([4]), 1.1: array([5])}",failed +15961,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_True-dropna_False-basic_snowpark_pandas_df-col3-None-0-groups],"AssertionError: Actual dict has the wrong key at position 0. Actual key 1.1 is not equal to expected key 3.1. +Actual dict: {1.1: [1.1], 3.1: [3.1], 4.0: [4.0], 8.0: [8.0], 10.0: [10.0], 12.0: [12.0]} +Expected dict: {3.1: [3.1], 8.0: [8.0], 12.0: [12.0], 10.0: [10.0], 4.0: [4.0], 1.1: [1.1]}",failed +15963,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_True-dropna_False-basic_snowpark_pandas_df_with_missing_values-None-col1-None-groups],ValueError: Categorical categories cannot be null,failed +15966,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_True-dropna_False-basic_snowpark_pandas_df-col3-None-0-indices],"AssertionError: Actual dict has the wrong key at position 0. Actual key 1.1 is not equal to expected key 3.1. +Actual dict: {np.float64(1.1): array([5]), np.float64(3.1): array([0]), np.float64(4.0): array([4]), np.float64(8.0): array([1]), np.float64(10.0): array([3]), np.float64(12.0): array([2])} +Expected dict: {3.1: array([0]), 8.0: array([1]), 12.0: array([2]), 10.0: array([3]), 4.0: array([4]), 1.1: array([5])}",failed +15969,tests.integ.modin.groupby.test_groupby_resample,test_groupby_resample_by_b[min-15-D],AssertionError: Got type: ,failed +15972,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_True-dropna_False-basic_snowpark_pandas_df-col3-None-col3-groups],"AssertionError: Actual dict has the wrong key at position 0. Actual key 1.1 is not equal to expected key 3.1. +Actual dict: {1.1: [1.1], 3.1: [3.1], 4.0: [4.0], 8.0: [8.0], 10.0: [10.0], 12.0: [12.0]} +Expected dict: {3.1: [3.1], 8.0: [8.0], 12.0: [12.0], 10.0: [10.0], 4.0: [4.0], 1.1: [1.1]}",failed +15974,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_True-dropna_False-basic_snowpark_pandas_df_with_missing_values-None-by1-None-groups],KeyError: 'col1',failed +15975,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_True-dropna_False-basic_snowpark_pandas_df-col3-None-col3-indices],"AssertionError: Actual dict has the wrong key at position 0. Actual key 1.1 is not equal to expected key 3.1. +Actual dict: {np.float64(1.1): array([5]), np.float64(3.1): array([0]), np.float64(4.0): array([4]), np.float64(8.0): array([1]), np.float64(10.0): array([3]), np.float64(12.0): array([2])} +Expected dict: {3.1: array([0]), 8.0: array([1]), 12.0: array([2]), 10.0: array([3]), 4.0: array([4]), 1.1: array([5])}",failed +15977,tests.integ.modin.frame.test_reindex,test_reindex_index_non_overlapping_different_types_index_negative,Failed: DID NOT RAISE ,failed +15980,tests.integ.modin.groupby.test_groupby_resample,test_groupby_resample_by_b[sum-1-s],AssertionError: Got type: ,failed +15981,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_True-dropna_False-basic_snowpark_pandas_df-index_cols10-col3-None-groups],"AssertionError: Actual dict has the wrong key at position 0. Actual key 1.1 is not equal to expected key 3.1. +Actual dict: {1.1: [(1.1, 6)], 3.1: [(3.1, 17)], 4.0: [(4.0, 5)], 8.0: [(8.0, 3)], 10.0: [(10.0, 15)], 12.0: [(12.0, 16)]} +Expected dict: {3.1: [(3.1, 17)], 8.0: [(8.0, 3)], 12.0: [(12.0, 16)], 10.0: [(10.0, 15)], 4.0: [(4.0, 5)], 1.1: [(1.1, 6)]}",failed +15984,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_True-dropna_False-basic_snowpark_pandas_df-index_cols10-col3-None-indices],"AssertionError: Actual dict has the wrong key at position 0. Actual key 1.1 is not equal to expected key 3.1. +Actual dict: {np.float64(1.1): array([5]), np.float64(3.1): array([0]), np.float64(4.0): array([4]), np.float64(8.0): array([1]), np.float64(10.0): array([3]), np.float64(12.0): array([2])} +Expected dict: {3.1: array([0]), 8.0: array([1]), 12.0: array([2]), 10.0: array([3]), 4.0: array([4]), 1.1: array([5])}",failed +15985,tests.integ.modin.groupby.test_groupby_resample,test_groupby_resample_by_b[sum-1-min],AssertionError: Got type: ,failed +15986,tests.integ.modin.frame.test_reindex,test_reindex_index_duplicate_values[new_index0],ValueError: cannot reindex on an axis with duplicate labels,failed +15989,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_True-dropna_False-basic_snowpark_pandas_df-index_cols11-None-level11-groups],ValueError: Cannot remove 2 levels from an index with 2 levels: at least one level must be left.,failed +15991,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_True-dropna_False-basic_snowpark_pandas_df_with_missing_values-None-by1-None-indices],KeyError: 'col1',failed +15992,tests.integ.modin.groupby.test_groupby_resample,test_groupby_resample_by_b[sum-1-h],AssertionError: Got type: ,failed +15993,tests.integ.modin.frame.test_reindex,test_reindex_index_duplicate_values[new_index1],ValueError: cannot reindex on an axis with duplicate labels,failed +15994,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_True-dropna_False-basic_snowpark_pandas_df-index_cols11-None-level11-indices],ValueError: Cannot remove 2 levels from an index with 2 levels: at least one level must be left.,failed +15995,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_True-dropna_False-basic_snowpark_pandas_df_with_missing_values-col3-col1-None-groups],ValueError: Categorical categories cannot be null,failed +15998,tests.integ.modin.groupby.test_groupby_resample,test_groupby_resample_by_b[sum-1-D],AssertionError: Got type: ,failed +15999,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_True-dropna_False-basic_snowpark_pandas_df-index_cols12-None-level12-groups],ValueError: Cannot remove 2 levels from an index with 2 levels: at least one level must be left.,failed +16000,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_True-dropna_False-basic_snowpark_pandas_df_with_missing_values-col3-by3-None-groups],KeyError: 'col1',failed +16001,tests.integ.modin.groupby.test_groupby_resample,test_groupby_resample_by_b[sum-3-s],AssertionError: Got type: ,failed +16003,tests.integ.modin.frame.test_setitem,test_df_setitem_single_column_length_mismatch[a-value0],"AssertionError: Regex pattern did not match. + Regex: 'item to set is empty' + Input: 'Length of values (0) does not match length of index (3)'",failed +16004,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_True-dropna_False-basic_snowpark_pandas_df_with_missing_values-col3-by3-None-indices],KeyError: 'col1',failed +16005,tests.integ.modin.groupby.test_groupby_resample,test_groupby_resample_by_b[sum-3-min],AssertionError: Got type: ,failed +16006,tests.integ.modin.frame.test_setitem,test_df_setitem_single_column_length_mismatch[a-value1],ValueError: Length of values (2) does not match length of index (3),failed +16008,tests.integ.modin.frame.test_reindex,test_reindex_index_duplicate_values[new_index2],ValueError: cannot reindex on an axis with duplicate labels,failed +16009,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_True-dropna_False-basic_snowpark_pandas_df_with_missing_values-index_cols4-col1-None-groups],ValueError: Categorical categories cannot be null,failed +16011,tests.integ.modin.groupby.test_groupby_resample,test_groupby_resample_by_b[sum-3-h],AssertionError: Got type: ,failed +16012,tests.integ.modin.frame.test_setitem,test_df_setitem_single_column_length_mismatch[x-value0],"AssertionError: Regex pattern did not match. + Regex: 'item to set is empty' + Input: 'Length of values (0) does not match length of index (3)'",failed +16014,tests.integ.modin.frame.test_astype,test_astype_from_timestamp_ltz[uint8],"TypeError: Converting from datetime64[ns, America/Los_Angeles] to uint8 is not supported. Do obj.astype('int64').astype(dtype) instead",failed +16015,tests.integ.modin.frame.test_setitem,test_df_setitem_single_column_length_mismatch[x-value1],ValueError: Length of values (2) does not match length of index (3),failed +16016,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_True-dropna_False-basic_snowpark_pandas_df-index_cols12-None-level12-indices],ValueError: Cannot remove 2 levels from an index with 2 levels: at least one level must be left.,failed +16017,tests.integ.modin.groupby.test_groupby_resample,test_groupby_resample_by_b[sum-3-D],AssertionError: Got type: ,failed +16018,tests.integ.modin.frame.test_setitem,test_df_setitem_single_column_length_mismatch[x-value2],ValueError: Length of values (4) does not match length of index (3),failed +16019,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_True-dropna_False-basic_snowpark_pandas_df_with_missing_values-index_cols5-by5-None-groups],KeyError: 'col1',failed +16020,tests.integ.modin.frame.test_reindex,test_reindex_index_duplicate_values[new_index3],ValueError: cannot reindex on an axis with duplicate labels,failed +16024,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_True-dropna_False-basic_snowpark_pandas_df_with_missing_values-None-col1-None-groups],ValueError: Categorical categories cannot be null,failed +16026,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_True-dropna_False-basic_snowpark_pandas_df_with_missing_values-index_cols5-by5-None-indices],KeyError: 'col1',failed +16028,tests.integ.modin.groupby.test_groupby_resample,test_groupby_resample_by_b[sum-5-s],AssertionError: Got type: ,failed +16030,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_True-dropna_False-basic_snowpark_pandas_df_with_missing_values-None-col1-None-indices],"AssertionError: Actual dict has the wrong key at position 0. Actual key 0.0 is not equal to expected key nan. +Actual dict: {np.float64(0.0): array([3, 5]), np.float64(1.0): array([1, 2]), np.float64(nan): array([0, 4])} +Expected dict: {nan: array([0, 4]), 1.0: array([1, 2]), 0.0: array([3, 5])}",failed +16036,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_True-dropna_False-basic_snowpark_pandas_df_with_missing_values-None-by1-None-groups],"AssertionError: Actual dict has the wrong key at position 1. Actual key (0.0, 5.0) is not equal to expected key (1.0, 5.0). +Actual dict: {(nan, 4.0): [0, 4], (0.0, 5.0): [5], (0.0, 7.0): [3], (1.0, 5.0): [1], (1.0, nan): [2]} +Expected dict: {(nan, 4.0): [0, 4], (1.0, 5.0): [1], (1.0, nan): [2], (0.0, 7.0): [3], (0.0, 5.0): [5]}",failed +16040,tests.integ.modin.groupby.test_groupby_resample,test_groupby_resample_by_b[sum-5-min],AssertionError: Got type: ,failed +16042,tests.integ.modin.frame.test_setitem,test_df_setitem_with_unique_and_duplicate_index_values[index_values0-other_index_values0-False],"AssertionError: DataFrame.index are different Attribute ""names"" are different [left]: [None] -[right]: ['name']",failed -19812,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_True-dropna_False-basic_snowpark_pandas_df-col3-col1-None-groups],"AssertionError: Actual dict has the wrong key at position 0. Actual key 0 is not equal to expected key 2. +[right]: ['INDEX']",failed +16043,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_True-dropna_False-basic_snowpark_pandas_df_with_missing_values-None-by1-None-indices],"AssertionError: Actual dict has the wrong key at position 0. Actual key (np.float64(0.0), np.float64(5.0)) is not equal to expected key (nan, 4.0). +Actual dict: {(np.float64(0.0), np.float64(5.0)): array([5]), (np.float64(0.0), np.float64(7.0)): array([3]), (np.float64(1.0), np.float64(5.0)): array([1]), (np.float64(1.0), np.float64(nan)): array([2]), (np.float64(nan), np.float64(4.0)): array([0, 4])} +Expected dict: {(nan, 4.0): array([0, 4]), (1.0, 5.0): array([1]), (1.0, nan): array([2]), (0.0, 7.0): array([3]), (0.0, 5.0): array([5])}",failed +16048,tests.integ.modin.groupby.test_groupby_resample,test_groupby_resample_by_b[sum-5-h],AssertionError: Got type: ,failed +16052,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_True-dropna_False-basic_snowpark_pandas_df_with_missing_values-col3-col1-None-groups],ValueError: Categorical categories cannot be null,failed +16056,tests.integ.modin.groupby.test_groupby_resample,test_groupby_resample_by_b[sum-5-D],AssertionError: Got type: ,failed +16058,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_True-dropna_False-basic_snowpark_pandas_df_with_missing_values-col3-col1-None-indices],"AssertionError: Actual dict has the wrong key at position 0. Actual key 0.0 is not equal to expected key nan. +Actual dict: {np.float64(0.0): array([3, 5]), np.float64(1.0): array([1, 2]), np.float64(nan): array([0, 4])} +Expected dict: {nan: array([0, 4]), 1.0: array([1, 2]), 0.0: array([3, 5])}",failed +16060,tests.integ.modin.frame.test_setitem,test_df_setitem_with_unique_and_duplicate_index_values[index_values1-other_index_values1-False],"AssertionError: DataFrame.index are different + +Attribute ""names"" are different +[left]: [None] +[right]: ['INDEX']",failed +16063,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_True-dropna_False-basic_snowpark_pandas_df_with_missing_values-col3-col3-None-groups],ValueError: Categorical categories cannot be null,failed +16065,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_True-dropna_False-basic_snowpark_pandas_df_with_missing_values-col3-by3-None-groups],"AssertionError: Actual dict has the wrong key at position 1. Actual key (0.0, 5.0) is not equal to expected key (1.0, 5.0). +Actual dict: {(nan, 4.0): [3.1, 4.0], (0.0, 5.0): [nan], (0.0, 7.0): [10.0], (1.0, 5.0): [8.0], (1.0, nan): [12.0]} +Expected dict: {(nan, 4.0): [3.1, 4.0], (1.0, 5.0): [8.0], (1.0, nan): [12.0], (0.0, 7.0): [10.0], (0.0, 5.0): [nan]}",failed +16066,tests.integ.modin.groupby.test_groupby_resample,test_groupby_resample_by_b[sum-15-s],AssertionError: Got type: ,failed +16071,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_True-dropna_False-basic_snowpark_pandas_df_with_missing_values-col3-by3-None-indices],"AssertionError: Actual dict has the wrong key at position 0. Actual key (np.float64(0.0), np.float64(5.0)) is not equal to expected key (nan, 4.0). +Actual dict: {(np.float64(0.0), np.float64(5.0)): array([5]), (np.float64(0.0), np.float64(7.0)): array([3]), (np.float64(1.0), np.float64(5.0)): array([1]), (np.float64(1.0), np.float64(nan)): array([2]), (np.float64(nan), np.float64(4.0)): array([0, 4])} +Expected dict: {(nan, 4.0): array([0, 4]), (1.0, 5.0): array([1]), (1.0, nan): array([2]), (0.0, 7.0): array([3]), (0.0, 5.0): array([5])}",failed +16075,tests.integ.modin.groupby.test_groupby_resample,test_groupby_resample_by_b[sum-15-min],AssertionError: Got type: ,failed +16078,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_True-dropna_False-basic_snowpark_pandas_df_with_missing_values-col3-None-0-groups],ValueError: Categorical categories cannot be null,failed +16081,tests.integ.modin.frame.test_setitem,test_df_setitem_with_unique_and_duplicate_index_values[index_values2-other_index_values2-False],"AssertionError: DataFrame.index are different + +Attribute ""names"" are different +[left]: [None] +[right]: ['INDEX']",failed +16082,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_True-dropna_False-basic_snowpark_pandas_df_with_missing_values-index_cols4-col1-None-groups],ValueError: Categorical categories cannot be null,failed +16086,tests.integ.modin.groupby.test_groupby_resample,test_groupby_resample_by_b[sum-15-h],AssertionError: Got type: ,failed +16090,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_True-dropna_False-basic_snowpark_pandas_df_with_missing_values-index_cols4-col1-None-indices],"AssertionError: Actual dict has the wrong key at position 0. Actual key 0.0 is not equal to expected key nan. +Actual dict: {np.float64(0.0): array([3, 5]), np.float64(1.0): array([1, 2]), np.float64(nan): array([0, 4])} +Expected dict: {nan: array([0, 4]), 1.0: array([1, 2]), 0.0: array([3, 5])}",failed +16094,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_True-dropna_False-basic_snowpark_pandas_df_with_missing_values-index_cols5-by5-None-groups],"AssertionError: Actual dict has the wrong key at position 1. Actual key (0.0, 5.0) is not equal to expected key (1.0, 5.0). +Actual dict: {(nan, 4.0): [(3.1, 17.0), (4.0, nan)], (0.0, 5.0): [(nan, nan)], (0.0, 7.0): [(10.0, 15.0)], (1.0, 5.0): [(8.0, 3.0)], (1.0, nan): [(12.0, 16.0)]} +Expected dict: {(nan, 4.0): [(3.1, 17.0), (4.0, nan)], (1.0, 5.0): [(8.0, 3.0)], (1.0, nan): [(12.0, 16.0)], (0.0, 7.0): [(10.0, 15.0)], (0.0, 5.0): [(nan, nan)]}",failed +16095,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_True-dropna_False-basic_snowpark_pandas_df_with_missing_values-col3-None-col3-groups],ValueError: Categorical categories cannot be null,failed +16100,tests.integ.modin.groupby.test_groupby_resample,test_groupby_resample_by_b[sum-15-D],AssertionError: Got type: ,failed +16101,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_True-dropna_False-basic_snowpark_pandas_df_with_missing_values-index_cols5-by5-None-indices],"AssertionError: Actual dict has the wrong key at position 0. Actual key (np.float64(0.0), np.float64(5.0)) is not equal to expected key (nan, 4.0). +Actual dict: {(np.float64(0.0), np.float64(5.0)): array([5]), (np.float64(0.0), np.float64(7.0)): array([3]), (np.float64(1.0), np.float64(5.0)): array([1]), (np.float64(1.0), np.float64(nan)): array([2]), (np.float64(nan), np.float64(4.0)): array([0, 4])} +Expected dict: {(nan, 4.0): array([0, 4]), (1.0, 5.0): array([1]), (1.0, nan): array([2]), (0.0, 7.0): array([3]), (0.0, 5.0): array([5])}",failed +16103,tests.integ.modin.frame.test_setitem,test_df_setitem_with_unique_and_duplicate_index_values[index_values3-other_index_values3-False],"AssertionError: DataFrame.index are different + +Attribute ""names"" are different +[left]: [None] +[right]: ['INDEX']",failed +16111,tests.integ.modin.groupby.test_groupby_resample,test_groupby_resample_multiple_by_cols[max-1-s],AssertionError: Got type: ,failed +16112,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_True-dropna_False-basic_snowpark_pandas_df_with_missing_values-index_cols10-col3-None-groups],ValueError: Categorical categories cannot be null,failed +16120,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_True-dropna_False-basic_snowpark_pandas_df_with_missing_values-col3-col3-None-groups],ValueError: Categorical categories cannot be null,failed +16122,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_True-dropna_False-basic_snowpark_pandas_df_with_missing_values-index_cols11-None-level11-groups],ValueError: Cannot remove 2 levels from an index with 2 levels: at least one level must be left.,failed +16123,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_True-dropna_False-basic_snowpark_pandas_df_with_missing_values-col3-col3-None-indices],"AssertionError: Actual dict has the wrong key at position 1. Actual key 4.0 is not equal to expected key 8.0. +Actual dict: {np.float64(3.1): array([0]), np.float64(4.0): array([4]), np.float64(8.0): array([1]), np.float64(10.0): array([3]), np.float64(12.0): array([2]), np.float64(nan): array([5])} +Expected dict: {3.1: array([0]), 8.0: array([1]), 12.0: array([2]), 10.0: array([3]), 4.0: array([4]), nan: array([5])}",failed +16125,tests.integ.modin.groupby.test_groupby_resample,test_groupby_resample_multiple_by_cols[max-1-min],AssertionError: Got type: ,failed +16126,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_True-dropna_False-basic_snowpark_pandas_df_with_missing_values-index_cols11-None-level11-indices],ValueError: Cannot remove 2 levels from an index with 2 levels: at least one level must be left.,failed +16127,tests.integ.modin.frame.test_setitem,test_df_setitem_with_unique_and_duplicate_index_values[index_values4-other_index_values4-True],ValueError: cannot reindex on an axis with duplicate labels,failed +16128,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_True-dropna_False-basic_snowpark_pandas_df_with_missing_values-col3-None-0-groups],ValueError: Categorical categories cannot be null,failed +16129,tests.integ.modin.groupby.test_groupby_resample,test_groupby_resample_multiple_by_cols[max-1-h],AssertionError: Got type: ,failed +16130,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_True-dropna_False-basic_snowpark_pandas_df_with_missing_values-index_cols12-None-level12-groups],ValueError: Cannot remove 2 levels from an index with 2 levels: at least one level must be left.,failed +16131,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_True-dropna_False-basic_snowpark_pandas_df_with_missing_values-col3-None-0-indices],"AssertionError: Actual dict has the wrong key at position 1. Actual key 4.0 is not equal to expected key 8.0. +Actual dict: {np.float64(3.1): array([0]), np.float64(4.0): array([4]), np.float64(8.0): array([1]), np.float64(10.0): array([3]), np.float64(12.0): array([2]), np.float64(nan): array([5])} +Expected dict: {3.1: array([0]), 8.0: array([1]), 12.0: array([2]), 10.0: array([3]), 4.0: array([4]), nan: array([5])}",failed +16133,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_True-dropna_False-basic_snowpark_pandas_df_with_missing_values-index_cols12-None-level12-indices],ValueError: Cannot remove 2 levels from an index with 2 levels: at least one level must be left.,failed +16134,tests.integ.modin.groupby.test_groupby_resample,test_groupby_resample_multiple_by_cols[max-1-D],AssertionError: Got type: ,failed +16137,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_True-dropna_False-basic_snowpark_pandas_df_with_missing_values-col3-None-col3-groups],ValueError: Categorical categories cannot be null,failed +16138,tests.integ.modin.frame.test_setitem,test_df_setitem_with_unique_and_duplicate_index_values[index_values5-other_index_values5-False],"AssertionError: DataFrame.index are different + +Attribute ""names"" are different +[left]: [None] +[right]: ['INDEX']",failed +16139,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_False-dropna_True-basic_snowpark_pandas_df-None-col1-None-indices],"AssertionError: Actual type is not the same as expected type , and instead is type . Actual value is {0: [3, 5], 1: [1, 2], 2: [0, 4]}",failed +16142,tests.integ.modin.groupby.test_groupby_resample,test_groupby_resample_multiple_by_cols[max-3-s],AssertionError: Got type: ,failed +16144,tests.integ.modin.frame.test_setitem,test_df_setitem_with_unique_and_duplicate_index_values[index_values6-other_index_values6-False],"AssertionError: DataFrame.index are different + +Attribute ""names"" are different +[left]: [None] +[right]: ['INDEX']",failed +16146,tests.integ.modin.groupby.test_groupby_resample,test_groupby_resample_multiple_by_cols[max-3-min],AssertionError: Got type: ,failed +16147,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_False-dropna_True-basic_snowpark_pandas_df-col3-col1-None-indices],"AssertionError: Actual type is not the same as expected type , and instead is type . Actual value is {0: [3, 5], 1: [1, 2], 2: [0, 4]}",failed +16150,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_True-dropna_False-basic_snowpark_pandas_df_with_missing_values-col3-None-col3-indices],"AssertionError: Actual dict has the wrong key at position 1. Actual key 4.0 is not equal to expected key 8.0. +Actual dict: {np.float64(3.1): array([0]), np.float64(4.0): array([4]), np.float64(8.0): array([1]), np.float64(10.0): array([3]), np.float64(12.0): array([2]), np.float64(nan): array([5])} +Expected dict: {3.1: array([0]), 8.0: array([1]), 12.0: array([2]), 10.0: array([3]), 4.0: array([4]), nan: array([5])}",failed +16152,tests.integ.modin.groupby.test_groupby_resample,test_groupby_resample_multiple_by_cols[max-3-h],AssertionError: Got type: ,failed +16156,tests.integ.modin.frame.test_setitem,test_df_setitem_with_unique_and_duplicate_index_values[index_values7-other_index_values7-False],"AssertionError: DataFrame.index are different + +Attribute ""names"" are different +[left]: [None] +[right]: ['INDEX']",failed +16157,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_True-dropna_False-basic_snowpark_pandas_df_with_missing_values-index_cols10-col3-None-groups],ValueError: Categorical categories cannot be null,failed +16158,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_False-dropna_True-basic_snowpark_pandas_df-index_cols4-col1-None-indices],"AssertionError: Actual type is not the same as expected type , and instead is type . Actual value is {0: [3, 5], 1: [1, 2], 2: [0, 4]}",failed +16159,tests.integ.modin.groupby.test_groupby_resample,test_groupby_resample_multiple_by_cols[max-3-D],AssertionError: Got type: ,failed +16161,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_True-dropna_False-basic_snowpark_pandas_df_with_missing_values-index_cols10-col3-None-indices],"AssertionError: Actual dict has the wrong key at position 1. Actual key 4.0 is not equal to expected key 8.0. +Actual dict: {np.float64(3.1): array([0]), np.float64(4.0): array([4]), np.float64(8.0): array([1]), np.float64(10.0): array([3]), np.float64(12.0): array([2]), np.float64(nan): array([5])} +Expected dict: {3.1: array([0]), 8.0: array([1]), 12.0: array([2]), 10.0: array([3]), 4.0: array([4]), nan: array([5])}",failed +16164,tests.integ.modin.groupby.test_groupby_resample,test_groupby_resample_multiple_by_cols[max-5-s],AssertionError: Got type: ,failed +16166,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_True-dropna_False-basic_snowpark_pandas_df_with_missing_values-index_cols11-None-level11-groups],ValueError: Cannot remove 2 levels from an index with 2 levels: at least one level must be left.,failed +16167,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_False-dropna_True-basic_snowpark_pandas_df-None-None-0-indices],"AssertionError: Actual type is not the same as expected type , and instead is type . Actual value is {0: [0], 1: [1], 2: [2], 3: [3], 4: [4], 5: [5]}",failed +16170,tests.integ.modin.groupby.test_groupby_resample,test_groupby_resample_multiple_by_cols[max-5-min],AssertionError: Got type: ,failed +16171,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_False-dropna_True-basic_snowpark_pandas_df-col3-col3-None-indices],"AssertionError: Actual type is not the same as expected type , and instead is type . Actual value is {1.1: [5], 3.1: [0], 4.0: [4], 8.0: [1], 10.0: [3], 12.0: [2]}",failed +16172,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_True-dropna_False-basic_snowpark_pandas_df_with_missing_values-index_cols11-None-level11-indices],ValueError: Cannot remove 2 levels from an index with 2 levels: at least one level must be left.,failed +16175,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_False-dropna_True-basic_snowpark_pandas_df-col3-None-0-indices],"AssertionError: Actual type is not the same as expected type , and instead is type . Actual value is {1.1: [5], 3.1: [0], 4.0: [4], 8.0: [1], 10.0: [3], 12.0: [2]}",failed +16176,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_True-dropna_False-basic_snowpark_pandas_df_with_missing_values-index_cols12-None-level12-groups],ValueError: Cannot remove 2 levels from an index with 2 levels: at least one level must be left.,failed +16178,tests.integ.modin.groupby.test_groupby_resample,test_groupby_resample_multiple_by_cols[max-5-h],AssertionError: Got type: ,failed +16179,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_False-dropna_True-basic_snowpark_pandas_df-col3-None-col3-indices],"AssertionError: Actual type is not the same as expected type , and instead is type . Actual value is {1.1: [5], 3.1: [0], 4.0: [4], 8.0: [1], 10.0: [3], 12.0: [2]}",failed +16182,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_True-dropna_False-basic_snowpark_pandas_df_with_missing_values-index_cols12-None-level12-indices],ValueError: Cannot remove 2 levels from an index with 2 levels: at least one level must be left.,failed +16183,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_False-dropna_True-basic_snowpark_pandas_df-index_cols10-col3-None-indices],"AssertionError: Actual type is not the same as expected type , and instead is type . Actual value is {1.1: [5], 3.1: [0], 4.0: [4], 8.0: [1], 10.0: [3], 12.0: [2]}",failed +16184,tests.integ.modin.groupby.test_groupby_resample,test_groupby_resample_multiple_by_cols[max-5-D],AssertionError: Got type: ,failed +16186,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_False-dropna_True-basic_snowpark_pandas_df-None-col1-None-groups],"AssertionError: Actual dict has the wrong key at position 0. Actual key 0 is not equal to expected key 2. +Actual dict: {0: [3, 5], 1: [1, 2], 2: [0, 4]} +Expected dict: {2: [0, 4], 1: [1, 2], 0: [3, 5]}",failed +16187,tests.integ.modin.groupby.test_groupby_resample,test_groupby_resample_multiple_by_cols[max-15-s],AssertionError: Got type: ,failed +16188,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_False-dropna_True-basic_snowpark_pandas_df-None-col1-None-indices],"AssertionError: Actual type is not the same as expected type , and instead is type . Actual value is {0: [3, 5], 1: [1, 2], 2: [0, 4]}",failed +16189,tests.integ.modin.frame.test_setitem,test_df_setitem_with_unique_and_duplicate_index_values[index_values8-other_index_values8-True],ValueError: cannot reindex on an axis with duplicate labels,failed +16191,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_False-dropna_True-basic_snowpark_pandas_df-None-by1-None-groups],"AssertionError: Actual dict has the wrong key at position 0. Actual key (0, 5) is not equal to expected key (2, 4). +Actual dict: {(0, 5): [5], (0, 7): [3], (1, 5): [1], (1, 36): [2], (2, 4): [0, 4]} +Expected dict: {(2, 4): [0, 4], (1, 5): [1], (1, 36): [2], (0, 7): [3], (0, 5): [5]}",failed +16193,tests.integ.modin.groupby.test_groupby_resample,test_groupby_resample_multiple_by_cols[max-15-min],AssertionError: Got type: ,failed +16194,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_False-dropna_True-basic_snowpark_pandas_df-None-by1-None-indices],"AssertionError: Actual dict has the wrong key at position 0. Actual key (np.int64(0), np.int64(5)) is not equal to expected key (2, 4). +Actual dict: {(np.int64(0), np.int64(5)): array([5]), (np.int64(0), np.int64(7)): array([3]), (np.int64(1), np.int64(5)): array([1]), (np.int64(1), np.int64(36)): array([2]), (np.int64(2), np.int64(4)): array([0, 4])} +Expected dict: {(2, 4): array([0, 4]), (1, 5): array([1]), (1, 36): array([2]), (0, 7): array([3]), (0, 5): array([5])}",failed +16195,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_False-dropna_True-basic_snowpark_pandas_df-index_cols11-None-level11-groups],ValueError: Cannot remove 2 levels from an index with 2 levels: at least one level must be left.,failed +16196,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_False-dropna_True-basic_snowpark_pandas_df-col3-col1-None-groups],"AssertionError: Actual dict has the wrong key at position 0. Actual key 0 is not equal to expected key 2. Actual dict: {0: [10.0, 1.1], 1: [8.0, 12.0], 2: [3.1, 4.0]} Expected dict: {2: [3.1, 4.0], 1: [8.0, 12.0], 0: [10.0, 1.1]}",failed -19813,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_False-group_series_True-dropna_True-basic_snowpark_pandas_df_with_missing_values-None-by1-None-groups],"AssertionError: Actual and expected dicts have different lengths 5 and 3 respectively. +16197,tests.integ.modin.groupby.test_groupby_resample,test_groupby_resample_multiple_by_cols[max-15-h],AssertionError: Got type: ,failed +16199,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_False-dropna_True-basic_snowpark_pandas_df-col3-col1-None-indices],"AssertionError: Actual type is not the same as expected type , and instead is type . Actual value is {0: [3, 5], 1: [1, 2], 2: [0, 4]}",failed +16200,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_False-dropna_True-basic_snowpark_pandas_df-index_cols11-None-level11-indices],ValueError: Cannot remove 2 levels from an index with 2 levels: at least one level must be left.,failed +16201,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_False-dropna_True-basic_snowpark_pandas_df-col3-by3-None-groups],"AssertionError: Actual dict has the wrong key at position 0. Actual key (0, 5) is not equal to expected key (2, 4). +Actual dict: {(0, 5): [1.1], (0, 7): [10.0], (1, 5): [8.0], (1, 36): [12.0], (2, 4): [3.1, 4.0]} +Expected dict: {(2, 4): [3.1, 4.0], (1, 5): [8.0], (1, 36): [12.0], (0, 7): [10.0], (0, 5): [1.1]}",failed +16202,tests.integ.modin.frame.test_setitem,test_df_setitem_with_unique_and_duplicate_index_values[index_values9-other_index_values9-True],ValueError: cannot reindex on an axis with duplicate labels,failed +16203,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_False-dropna_True-basic_snowpark_pandas_df-index_cols12-None-level12-groups],ValueError: Cannot remove 2 levels from an index with 2 levels: at least one level must be left.,failed +16204,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_False-dropna_True-basic_snowpark_pandas_df-col3-by3-None-indices],"AssertionError: Actual dict has the wrong key at position 0. Actual key (np.int64(0), np.int64(5)) is not equal to expected key (2, 4). +Actual dict: {(np.int64(0), np.int64(5)): array([5]), (np.int64(0), np.int64(7)): array([3]), (np.int64(1), np.int64(5)): array([1]), (np.int64(1), np.int64(36)): array([2]), (np.int64(2), np.int64(4)): array([0, 4])} +Expected dict: {(2, 4): array([0, 4]), (1, 5): array([1]), (1, 36): array([2]), (0, 7): array([3]), (0, 5): array([5])}",failed +16205,tests.integ.modin.groupby.test_groupby_basic_agg,test_single_group_row_groupby_with_variant[1-by_col_data1-expected_groupby_col1],TypeError: unhashable type: 'list',failed +16206,tests.integ.modin.groupby.test_groupby_resample,test_groupby_resample_multiple_by_cols[max-15-D],AssertionError: Got type: ,failed +16208,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_False-dropna_True-basic_snowpark_pandas_df-index_cols4-col1-None-groups],"AssertionError: Actual dict has the wrong key at position 0. Actual key 0 is not equal to expected key 2. +Actual dict: {0: [(10.0, 15), (1.1, 6)], 1: [(8.0, 3), (12.0, 16)], 2: [(3.1, 17), (4.0, 5)]} +Expected dict: {2: [(3.1, 17), (4.0, 5)], 1: [(8.0, 3), (12.0, 16)], 0: [(10.0, 15), (1.1, 6)]}",failed +16209,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_False-dropna_True-basic_snowpark_pandas_df-index_cols12-None-level12-indices],ValueError: Cannot remove 2 levels from an index with 2 levels: at least one level must be left.,failed +16211,tests.integ.modin.groupby.test_groupby_resample,test_groupby_resample_multiple_by_cols[mean-1-s],AssertionError: Got type: ,failed +16213,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_False-dropna_True-basic_snowpark_pandas_df-index_cols4-col1-None-indices],"AssertionError: Actual type is not the same as expected type , and instead is type . Actual value is {0: [3, 5], 1: [1, 2], 2: [0, 4]}",failed +16214,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_False-dropna_True-basic_snowpark_pandas_df_with_missing_values-None-col1-None-indices],"AssertionError: Actual type is not the same as expected type , and instead is type . Actual value is {0.0: [3, 5], 1.0: [1, 2]}",failed +16215,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_False-dropna_True-basic_snowpark_pandas_df-index_cols5-by5-None-groups],"AssertionError: Actual dict has the wrong key at position 0. Actual key (0, 5) is not equal to expected key (2, 4). +Actual dict: {(0, 5): [(1.1, 6)], (0, 7): [(10.0, 15)], (1, 5): [(8.0, 3)], (1, 36): [(12.0, 16)], (2, 4): [(3.1, 17), (4.0, 5)]} +Expected dict: {(2, 4): [(3.1, 17), (4.0, 5)], (1, 5): [(8.0, 3)], (1, 36): [(12.0, 16)], (0, 7): [(10.0, 15)], (0, 5): [(1.1, 6)]}",failed +16216,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_False-dropna_True-basic_snowpark_pandas_df_with_missing_values-None-by1-None-groups],"AssertionError: Actual and expected dicts have different lengths 5 and 3 respectively. Actual dict: {(nan, 4.0): [0, 4], (0.0, 5.0): [5], (0.0, 7.0): [3], (1.0, 5.0): [1], (1.0, nan): [2]} Expected dict: {(0.0, 5.0): [5], (0.0, 7.0): [3], (1.0, 5.0): [1]}",failed -19814,tests.integ.modin.frame.test_rename,test_rename_str_upper_not_implemented,Failed: DID NOT RAISE ,failed -19815,tests.integ.modin.groupby.test_min_max,test_groupby_min_count_string_nullable[50-min],"AssertionError: DataFrame.iloc[:, 0] (column name=""ts"") are different +16217,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_False-dropna_True-basic_snowpark_pandas_df-index_cols5-by5-None-indices],"AssertionError: Actual dict has the wrong key at position 0. Actual key (np.int64(0), np.int64(5)) is not equal to expected key (2, 4). +Actual dict: {(np.int64(0), np.int64(5)): array([5]), (np.int64(0), np.int64(7)): array([3]), (np.int64(1), np.int64(5)): array([1]), (np.int64(1), np.int64(36)): array([2]), (np.int64(2), np.int64(4)): array([0, 4])} +Expected dict: {(2, 4): array([0, 4]), (1, 5): array([1]), (1, 36): array([2]), (0, 7): array([3]), (0, 5): array([5])}",failed +16219,tests.integ.modin.groupby.test_groupby_resample,test_groupby_resample_multiple_by_cols[mean-1-min],AssertionError: Got type: ,failed +16222,tests.integ.modin.frame.test_setitem,test_df_setitem_with_unique_and_duplicate_index_values[index_values10-other_index_values10-True],ValueError: cannot reindex on an axis with duplicate labels,failed +16224,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_False-dropna_True-basic_snowpark_pandas_df-None-None-0-indices],"AssertionError: Actual type is not the same as expected type , and instead is type . Actual value is {0: [0], 1: [1], 2: [2], 3: [3], 4: [4], 5: [5]}",failed +16225,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_False-dropna_True-basic_snowpark_pandas_df_with_missing_values-col3-col1-None-indices],"AssertionError: Actual type is not the same as expected type , and instead is type . Actual value is {0.0: [3, 5], 1.0: [1, 2]}",failed +16226,tests.integ.modin.groupby.test_groupby_resample,test_groupby_resample_multiple_by_cols[mean-1-h],AssertionError: Got type: ,failed +16227,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_False-dropna_True-basic_snowpark_pandas_df_with_missing_values-col3-by3-None-groups],"AssertionError: Actual and expected dicts have different lengths 5 and 3 respectively. +Actual dict: {(nan, 4.0): [3.1, 4.0], (0.0, 5.0): [nan], (0.0, 7.0): [10.0], (1.0, 5.0): [8.0], (1.0, nan): [12.0]} +Expected dict: {(0.0, 5.0): [nan], (0.0, 7.0): [10.0], (1.0, 5.0): [8.0]}",failed +16228,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_False-dropna_True-basic_snowpark_pandas_df-col3-col3-None-groups],"AssertionError: Actual dict has the wrong key at position 0. Actual key 1.1 is not equal to expected key 3.1. +Actual dict: {1.1: [1.1], 3.1: [3.1], 4.0: [4.0], 8.0: [8.0], 10.0: [10.0], 12.0: [12.0]} +Expected dict: {3.1: [3.1], 8.0: [8.0], 12.0: [12.0], 10.0: [10.0], 4.0: [4.0], 1.1: [1.1]}",failed +16231,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_False-dropna_True-basic_snowpark_pandas_df-col3-col3-None-indices],"AssertionError: Actual type is not the same as expected type , and instead is type . Actual value is {1.1: [5], 3.1: [0], 4.0: [4], 8.0: [1], 10.0: [3], 12.0: [2]}",failed +16234,tests.integ.modin.groupby.test_groupby_resample,test_groupby_resample_multiple_by_cols[mean-1-D],AssertionError: Got type: ,failed +16235,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_False-dropna_True-basic_snowpark_pandas_df-col3-None-0-groups],"AssertionError: Actual dict has the wrong key at position 0. Actual key 1.1 is not equal to expected key 3.1. +Actual dict: {1.1: [1.1], 3.1: [3.1], 4.0: [4.0], 8.0: [8.0], 10.0: [10.0], 12.0: [12.0]} +Expected dict: {3.1: [3.1], 8.0: [8.0], 12.0: [12.0], 10.0: [10.0], 4.0: [4.0], 1.1: [1.1]}",failed +16236,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_False-dropna_True-basic_snowpark_pandas_df_with_missing_values-index_cols4-col1-None-indices],"AssertionError: Actual type is not the same as expected type , and instead is type . Actual value is {0.0: [3, 5], 1.0: [1, 2]}",failed +16237,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_False-dropna_True-basic_snowpark_pandas_df-col3-None-0-indices],"AssertionError: Actual type is not the same as expected type , and instead is type . Actual value is {1.1: [5], 3.1: [0], 4.0: [4], 8.0: [1], 10.0: [3], 12.0: [2]}",failed +16238,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_False-dropna_True-basic_snowpark_pandas_df_with_missing_values-index_cols5-by5-None-groups],"AssertionError: Actual and expected dicts have different lengths 5 and 3 respectively. +Actual dict: {(nan, 4.0): [(3.1, 17.0), (4.0, nan)], (0.0, 5.0): [(nan, nan)], (0.0, 7.0): [(10.0, 15.0)], (1.0, 5.0): [(8.0, 3.0)], (1.0, nan): [(12.0, 16.0)]} +Expected dict: {(0.0, 5.0): [(nan, nan)], (0.0, 7.0): [(10.0, 15.0)], (1.0, 5.0): [(8.0, 3.0)]}",failed +16239,tests.integ.modin.groupby.test_groupby_resample,test_groupby_resample_multiple_by_cols[mean-3-s],AssertionError: Got type: ,failed +16241,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_False-dropna_True-basic_snowpark_pandas_df-col3-None-col3-groups],"AssertionError: Actual dict has the wrong key at position 0. Actual key 1.1 is not equal to expected key 3.1. +Actual dict: {1.1: [1.1], 3.1: [3.1], 4.0: [4.0], 8.0: [8.0], 10.0: [10.0], 12.0: [12.0]} +Expected dict: {3.1: [3.1], 8.0: [8.0], 12.0: [12.0], 10.0: [10.0], 4.0: [4.0], 1.1: [1.1]}",failed +16244,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_False-dropna_True-basic_snowpark_pandas_df-col3-None-col3-indices],"AssertionError: Actual type is not the same as expected type , and instead is type . Actual value is {1.1: [5], 3.1: [0], 4.0: [4], 8.0: [1], 10.0: [3], 12.0: [2]}",failed +16245,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_False-dropna_True-basic_snowpark_pandas_df_with_missing_values-None-None-0-indices],"AssertionError: Actual type is not the same as expected type , and instead is type . Actual value is {0: [0], 1: [1], 2: [2], 3: [3], 4: [4], 5: [5]}",failed +16246,tests.integ.modin.groupby.test_groupby_resample,test_groupby_resample_multiple_by_cols[mean-3-min],AssertionError: Got type: ,failed +16249,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_False-dropna_True-basic_snowpark_pandas_df-index_cols10-col3-None-groups],"AssertionError: Actual dict has the wrong key at position 0. Actual key 1.1 is not equal to expected key 3.1. +Actual dict: {1.1: [(1.1, 6)], 3.1: [(3.1, 17)], 4.0: [(4.0, 5)], 8.0: [(8.0, 3)], 10.0: [(10.0, 15)], 12.0: [(12.0, 16)]} +Expected dict: {3.1: [(3.1, 17)], 8.0: [(8.0, 3)], 12.0: [(12.0, 16)], 10.0: [(10.0, 15)], 4.0: [(4.0, 5)], 1.1: [(1.1, 6)]}",failed +16250,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_False-dropna_True-basic_snowpark_pandas_df_with_missing_values-col3-col3-None-indices],"AssertionError: Actual type is not the same as expected type , and instead is type . Actual value is {3.1: [0], 4.0: [4], 8.0: [1], 10.0: [3], 12.0: [2]}",failed +16251,tests.integ.modin.groupby.test_groupby_resample,test_groupby_resample_multiple_by_cols[mean-3-h],AssertionError: Got type: ,failed +16253,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_False-dropna_True-basic_snowpark_pandas_df-index_cols10-col3-None-indices],"AssertionError: Actual type is not the same as expected type , and instead is type . Actual value is {1.1: [5], 3.1: [0], 4.0: [4], 8.0: [1], 10.0: [3], 12.0: [2]}",failed +16256,tests.integ.modin.frame.test_setitem,test_df_setitem_with_unique_and_duplicate_index_values[index_values11-other_index_values11-True],ValueError: cannot reindex on an axis with duplicate labels,failed +16257,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_False-dropna_True-basic_snowpark_pandas_df_with_missing_values-col3-None-0-indices],"AssertionError: Actual type is not the same as expected type , and instead is type . Actual value is {3.1: [0], 4.0: [4], 8.0: [1], 10.0: [3], 12.0: [2]}",failed +16258,tests.integ.modin.groupby.test_groupby_resample,test_groupby_resample_multiple_by_cols[mean-3-D],AssertionError: Got type: ,failed +16260,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_False-dropna_True-basic_snowpark_pandas_df-index_cols11-None-level11-groups],ValueError: Cannot remove 2 levels from an index with 2 levels: at least one level must be left.,failed +16262,tests.integ.modin.frame.test_setitem,test_df_setitem_full_columns[key0-value0],"AssertionError: DataFrame are different -DataFrame.iloc[:, 0] (column name=""ts"") values are different (50.0 %) -[index]: [1, 2] -[left]: -[, 'a'] -Length: 2, dtype: string -[right]: [nan, nan] -At positional index 1, first diff: a != nan",failed -19820,tests.integ.modin.groupby.test_min_max,test_groupby_min_count_string_nullable[50-max],"AssertionError: DataFrame.iloc[:, 0] (column name=""ts"") are different +DataFrame shape mismatch +[left]: (3, 4) +[right]: (3, 3)",failed +16263,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_False-dropna_True-basic_snowpark_pandas_df_with_missing_values-col3-None-col3-indices],"AssertionError: Actual type is not the same as expected type , and instead is type . Actual value is {3.1: [0], 4.0: [4], 8.0: [1], 10.0: [3], 12.0: [2]}",failed +16267,tests.integ.modin.groupby.test_groupby_resample,test_groupby_resample_multiple_by_cols[mean-5-s],AssertionError: Got type: ,failed +16268,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_False-dropna_True-basic_snowpark_pandas_df-index_cols11-None-level11-indices],ValueError: Cannot remove 2 levels from an index with 2 levels: at least one level must be left.,failed +16270,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_False-dropna_True-basic_snowpark_pandas_df_with_missing_values-index_cols10-col3-None-indices],"AssertionError: Actual type is not the same as expected type , and instead is type . Actual value is {3.1: [0], 4.0: [4], 8.0: [1], 10.0: [3], 12.0: [2]}",failed +16271,tests.integ.modin.frame.test_setitem,test_df_setitem_full_columns[key3-value3],"AssertionError: DataFrame are different -DataFrame.iloc[:, 0] (column name=""ts"") values are different (50.0 %) -[index]: [1, 2] -[left]: -[, 'b'] -Length: 2, dtype: string -[right]: [nan, nan] -At positional index 1, first diff: b != nan",failed -19823,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_True-dropna_False-basic_snowpark_pandas_df-col3-col1-None-indices],"AssertionError: Actual dict has the wrong key at position 0. Actual key 0 is not equal to expected key 2. -Actual dict: {0: array([3, 5]), 1: array([1, 2]), 2: array([0, 4])} +DataFrame shape mismatch +[left]: (3, 4) +[right]: (3, 3)",failed +16272,tests.integ.modin.groupby.test_groupby_resample,test_groupby_resample_multiple_by_cols[mean-5-min],AssertionError: Got type: ,failed +16274,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_False-dropna_True-basic_snowpark_pandas_df_with_missing_values-index_cols11-None-level11-groups],ValueError: Cannot remove 2 levels from an index with 2 levels: at least one level must be left.,failed +16276,tests.integ.modin.frame.test_setitem,test_df_setitem_lambda_dataframe[data0-2-8],"AssertionError: DataFrame are different + +DataFrame shape mismatch +[left]: (3, 3) +[right]: (3, 2)",failed +16278,tests.integ.modin.groupby.test_groupby_resample,test_groupby_resample_multiple_by_cols[mean-5-h],AssertionError: Got type: ,failed +16279,tests.integ.modin.frame.test_setitem,test_df_setitem_lambda_dataframe[data1-comparison_value1-set_value1],"AssertionError: DataFrame are different + +DataFrame shape mismatch +[left]: (3, 3) +[right]: (3, 2)",failed +16280,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_False-dropna_True-basic_snowpark_pandas_df_with_missing_values-index_cols11-None-level11-indices],ValueError: Cannot remove 2 levels from an index with 2 levels: at least one level must be left.,failed +16285,tests.integ.modin.groupby.test_groupby_resample,test_groupby_resample_multiple_by_cols[mean-5-D],AssertionError: Got type: ,failed +16286,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_False-dropna_True-basic_snowpark_pandas_df_with_missing_values-index_cols12-None-level12-groups],ValueError: Cannot remove 2 levels from an index with 2 levels: at least one level must be left.,failed +16289,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_False-dropna_True-basic_snowpark_pandas_df-index_cols12-None-level12-groups],ValueError: Cannot remove 2 levels from an index with 2 levels: at least one level must be left.,failed +16291,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_False-dropna_True-basic_snowpark_pandas_df_with_missing_values-index_cols12-None-level12-indices],ValueError: Cannot remove 2 levels from an index with 2 levels: at least one level must be left.,failed +16293,tests.integ.modin.groupby.test_groupby_resample,test_groupby_resample_multiple_by_cols[mean-15-s],AssertionError: Got type: ,failed +16295,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_False-dropna_True-basic_snowpark_pandas_df-index_cols12-None-level12-indices],ValueError: Cannot remove 2 levels from an index with 2 levels: at least one level must be left.,failed +16297,tests.integ.modin.groupby.test_groupby_resample,test_groupby_resample_multiple_by_cols[mean-15-min],AssertionError: Got type: ,failed +16300,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_False-dropna_True-basic_snowpark_pandas_df_with_missing_values-None-col1-None-groups],"AssertionError: Actual dict has the wrong key at position 0. Actual key 0.0 is not equal to expected key 1.0. +Actual dict: {0.0: [3, 5], 1.0: [1, 2]} +Expected dict: {1.0: [1, 2], 0.0: [3, 5]}",failed +16303,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_False-dropna_True-basic_snowpark_pandas_df_with_missing_values-None-col1-None-indices],"AssertionError: Actual type is not the same as expected type , and instead is type . Actual value is {0.0: [3, 5], 1.0: [1, 2]}",failed +16304,tests.integ.modin.groupby.test_groupby_resample,test_groupby_resample_multiple_by_cols[mean-15-h],AssertionError: Got type: ,failed +16306,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_False-dropna_True-basic_snowpark_pandas_df_with_missing_values-None-by1-None-groups],"AssertionError: Actual and expected dicts have different lengths 5 and 3 respectively. +Actual dict: {(nan, 4.0): [0, 4], (0.0, 5.0): [5], (0.0, 7.0): [3], (1.0, 5.0): [1], (1.0, nan): [2]} +Expected dict: {(1.0, 5.0): [1], (0.0, 7.0): [3], (0.0, 5.0): [5]}",failed +16308,tests.integ.modin.groupby.test_groupby_resample,test_groupby_resample_multiple_by_cols[mean-15-D],AssertionError: Got type: ,failed +16310,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_False-dropna_True-basic_snowpark_pandas_df_with_missing_values-None-by1-None-indices],"AssertionError: Actual dict has the wrong key at position 0. Actual key (np.float64(0.0), np.float64(5.0)) is not equal to expected key (1.0, 5.0). +Actual dict: {(np.float64(0.0), np.float64(5.0)): array([5]), (np.float64(0.0), np.float64(7.0)): array([3]), (np.float64(1.0), np.float64(5.0)): array([1])} +Expected dict: {(1.0, 5.0): array([1]), (0.0, 7.0): array([3]), (0.0, 5.0): array([5])}",failed +16313,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_False-dropna_True-basic_snowpark_pandas_df_with_missing_values-col3-col1-None-groups],"AssertionError: Actual dict has the wrong key at position 0. Actual key 0.0 is not equal to expected key 1.0. +Actual dict: {0.0: [10.0, nan], 1.0: [8.0, 12.0]} +Expected dict: {1.0: [8.0, 12.0], 0.0: [10.0, nan]}",failed +16315,tests.integ.modin.groupby.test_groupby_resample,test_groupby_resample_multiple_by_cols[median-1-s],AssertionError: Got type: ,failed +16317,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_False-dropna_True-basic_snowpark_pandas_df_with_missing_values-col3-col1-None-indices],"AssertionError: Actual type is not the same as expected type , and instead is type . Actual value is {0.0: [3, 5], 1.0: [1, 2]}",failed +16319,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_False-dropna_True-basic_snowpark_pandas_df_with_missing_values-col3-by3-None-groups],"AssertionError: Actual and expected dicts have different lengths 5 and 3 respectively. +Actual dict: {(nan, 4.0): [3.1, 4.0], (0.0, 5.0): [nan], (0.0, 7.0): [10.0], (1.0, 5.0): [8.0], (1.0, nan): [12.0]} +Expected dict: {(1.0, 5.0): [8.0], (0.0, 7.0): [10.0], (0.0, 5.0): [nan]}",failed +16323,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_False-dropna_True-basic_snowpark_pandas_df_with_missing_values-col3-by3-None-indices],"AssertionError: Actual dict has the wrong key at position 0. Actual key (np.float64(0.0), np.float64(5.0)) is not equal to expected key (1.0, 5.0). +Actual dict: {(np.float64(0.0), np.float64(5.0)): array([5]), (np.float64(0.0), np.float64(7.0)): array([3]), (np.float64(1.0), np.float64(5.0)): array([1])} +Expected dict: {(1.0, 5.0): array([1]), (0.0, 7.0): array([3]), (0.0, 5.0): array([5])}",failed +16324,tests.integ.modin.groupby.test_groupby_resample,test_groupby_resample_multiple_by_cols[median-1-min],AssertionError: Got type: ,failed +16328,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_False-dropna_True-basic_snowpark_pandas_df_with_missing_values-index_cols4-col1-None-groups],"AssertionError: Actual dict has the wrong key at position 0. Actual key 0.0 is not equal to expected key 1.0. +Actual dict: {0.0: [(10.0, 15.0), (nan, nan)], 1.0: [(8.0, 3.0), (12.0, 16.0)]} +Expected dict: {1.0: [(8.0, 3.0), (12.0, 16.0)], 0.0: [(10.0, 15.0), (nan, nan)]}",failed +16330,tests.integ.modin.groupby.test_groupby_resample,test_groupby_resample_multiple_by_cols[median-1-h],AssertionError: Got type: ,failed +16333,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_False-dropna_True-basic_snowpark_pandas_df_with_missing_values-index_cols4-col1-None-indices],"AssertionError: Actual type is not the same as expected type , and instead is type . Actual value is {0.0: [3, 5], 1.0: [1, 2]}",failed +16337,tests.integ.modin.groupby.test_groupby_resample,test_groupby_resample_multiple_by_cols[median-1-D],AssertionError: Got type: ,failed +16338,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_False-dropna_True-basic_snowpark_pandas_df_with_missing_values-index_cols5-by5-None-groups],"AssertionError: Actual and expected dicts have different lengths 5 and 3 respectively. +Actual dict: {(nan, 4.0): [(3.1, 17.0), (4.0, nan)], (0.0, 5.0): [(nan, nan)], (0.0, 7.0): [(10.0, 15.0)], (1.0, 5.0): [(8.0, 3.0)], (1.0, nan): [(12.0, 16.0)]} +Expected dict: {(1.0, 5.0): [(8.0, 3.0)], (0.0, 7.0): [(10.0, 15.0)], (0.0, 5.0): [(nan, nan)]}",failed +16345,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_False-dropna_True-basic_snowpark_pandas_df_with_missing_values-index_cols5-by5-None-indices],"AssertionError: Actual dict has the wrong key at position 0. Actual key (np.float64(0.0), np.float64(5.0)) is not equal to expected key (1.0, 5.0). +Actual dict: {(np.float64(0.0), np.float64(5.0)): array([5]), (np.float64(0.0), np.float64(7.0)): array([3]), (np.float64(1.0), np.float64(5.0)): array([1])} +Expected dict: {(1.0, 5.0): array([1]), (0.0, 7.0): array([3]), (0.0, 5.0): array([5])}",failed +16348,tests.integ.modin.groupby.test_groupby_resample,test_groupby_resample_multiple_by_cols[median-3-s],AssertionError: Got type: ,failed +16355,tests.integ.modin.groupby.test_groupby_resample,test_groupby_resample_multiple_by_cols[median-3-min],AssertionError: Got type: ,failed +16356,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_False-dropna_True-basic_snowpark_pandas_df_with_missing_values-None-None-0-indices],"AssertionError: Actual type is not the same as expected type , and instead is type . Actual value is {0: [0], 1: [1], 2: [2], 3: [3], 4: [4], 5: [5]}",failed +16360,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_False-dropna_True-basic_snowpark_pandas_df_with_missing_values-col3-col3-None-groups],"AssertionError: Actual dict has the wrong key at position 1. Actual key 4.0 is not equal to expected key 8.0. +Actual dict: {3.1: [3.1], 4.0: [4.0], 8.0: [8.0], 10.0: [10.0], 12.0: [12.0]} +Expected dict: {3.1: [3.1], 8.0: [8.0], 12.0: [12.0], 10.0: [10.0], 4.0: [4.0]}",failed +16363,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_False-dropna_True-basic_snowpark_pandas_df_with_missing_values-col3-col3-None-indices],"AssertionError: Actual type is not the same as expected type , and instead is type . Actual value is {3.1: [0], 4.0: [4], 8.0: [1], 10.0: [3], 12.0: [2]}",failed +16364,tests.integ.modin.groupby.test_groupby_resample,test_groupby_resample_multiple_by_cols[median-3-h],AssertionError: Got type: ,failed +16368,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_False-dropna_True-basic_snowpark_pandas_df_with_missing_values-col3-None-0-groups],"AssertionError: Actual dict has the wrong key at position 1. Actual key 4.0 is not equal to expected key 8.0. +Actual dict: {3.1: [3.1], 4.0: [4.0], 8.0: [8.0], 10.0: [10.0], 12.0: [12.0]} +Expected dict: {3.1: [3.1], 8.0: [8.0], 12.0: [12.0], 10.0: [10.0], 4.0: [4.0]}",failed +16371,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_False-dropna_True-basic_snowpark_pandas_df_with_missing_values-col3-None-0-indices],"AssertionError: Actual type is not the same as expected type , and instead is type . Actual value is {3.1: [0], 4.0: [4], 8.0: [1], 10.0: [3], 12.0: [2]}",failed +16374,tests.integ.modin.groupby.test_groupby_resample,test_groupby_resample_multiple_by_cols[median-3-D],AssertionError: Got type: ,failed +16376,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_False-dropna_False-basic_snowpark_pandas_df-index_cols11-None-level11-groups],ValueError: Cannot remove 2 levels from an index with 2 levels: at least one level must be left.,failed +16377,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_False-dropna_True-basic_snowpark_pandas_df_with_missing_values-col3-None-col3-groups],"AssertionError: Actual dict has the wrong key at position 1. Actual key 4.0 is not equal to expected key 8.0. +Actual dict: {3.1: [3.1], 4.0: [4.0], 8.0: [8.0], 10.0: [10.0], 12.0: [12.0]} +Expected dict: {3.1: [3.1], 8.0: [8.0], 12.0: [12.0], 10.0: [10.0], 4.0: [4.0]}",failed +16381,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_False-dropna_True-basic_snowpark_pandas_df_with_missing_values-col3-None-col3-indices],"AssertionError: Actual type is not the same as expected type , and instead is type . Actual value is {3.1: [0], 4.0: [4], 8.0: [1], 10.0: [3], 12.0: [2]}",failed +16382,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_False-dropna_False-basic_snowpark_pandas_df-index_cols11-None-level11-indices],ValueError: Cannot remove 2 levels from an index with 2 levels: at least one level must be left.,failed +16383,tests.integ.modin.groupby.test_groupby_resample,test_groupby_resample_multiple_by_cols[median-5-s],AssertionError: Got type: ,failed +16385,tests.integ.modin.frame.test_merge,test_merge_left_on_right_on[left-True-left_i-right_i],KeyError: 'right_i',failed +16387,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_False-dropna_True-basic_snowpark_pandas_df_with_missing_values-index_cols10-col3-None-groups],"AssertionError: Actual dict has the wrong key at position 1. Actual key 4.0 is not equal to expected key 8.0. +Actual dict: {3.1: [(3.1, 17.0)], 4.0: [(4.0, nan)], 8.0: [(8.0, 3.0)], 10.0: [(10.0, 15.0)], 12.0: [(12.0, 16.0)]} +Expected dict: {3.1: [(3.1, 17.0)], 8.0: [(8.0, 3.0)], 12.0: [(12.0, 16.0)], 10.0: [(10.0, 15.0)], 4.0: [(4.0, nan)]}",failed +16389,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_False-dropna_False-basic_snowpark_pandas_df-index_cols12-None-level12-groups],ValueError: Cannot remove 2 levels from an index with 2 levels: at least one level must be left.,failed +16391,tests.integ.modin.groupby.test_groupby_resample,test_groupby_resample_multiple_by_cols[median-5-min],AssertionError: Got type: ,failed +16392,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_False-dropna_True-basic_snowpark_pandas_df_with_missing_values-index_cols10-col3-None-indices],"AssertionError: Actual type is not the same as expected type , and instead is type . Actual value is {3.1: [0], 4.0: [4], 8.0: [1], 10.0: [3], 12.0: [2]}",failed +16396,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_False-dropna_False-basic_snowpark_pandas_df-index_cols12-None-level12-indices],ValueError: Cannot remove 2 levels from an index with 2 levels: at least one level must be left.,failed +16397,tests.integ.modin.groupby.test_groupby_resample,test_groupby_resample_multiple_by_cols[median-5-h],AssertionError: Got type: ,failed +16399,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_False-dropna_True-basic_snowpark_pandas_df_with_missing_values-index_cols11-None-level11-groups],ValueError: Cannot remove 2 levels from an index with 2 levels: at least one level must be left.,failed +16404,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_False-dropna_False-basic_snowpark_pandas_df_with_missing_values-None-col1-None-groups],ValueError: Categorical categories cannot be null,failed +16405,tests.integ.modin.groupby.test_groupby_resample,test_groupby_resample_multiple_by_cols[median-5-D],AssertionError: Got type: ,failed +16406,tests.integ.modin.frame.test_merge,test_merge_left_on_right_on[left-True-left_i-A],KeyError: 'left_i',failed +16408,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_False-dropna_True-basic_snowpark_pandas_df_with_missing_values-index_cols11-None-level11-indices],ValueError: Cannot remove 2 levels from an index with 2 levels: at least one level must be left.,failed +16412,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_False-dropna_False-basic_snowpark_pandas_df_with_missing_values-None-by1-None-groups],"AssertionError: Actual dict has the wrong key at position 0. Actual key (nan, 4.0) is not equal to expected key (0.0, 5.0). +Actual dict: {(nan, 4.0): [0, 4], (0.0, 5.0): [5], (0.0, 7.0): [3], (1.0, 5.0): [1], (1.0, nan): [2]} +Expected dict: {(0.0, 5.0): [5], (0.0, 7.0): [3], (1.0, 5.0): [1], (1.0, nan): [2], (nan, 4.0): [0, 4]}",failed +16413,tests.integ.modin.groupby.test_groupby_resample,test_groupby_resample_multiple_by_cols[median-15-s],AssertionError: Got type: ,failed +16416,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_False-dropna_True-basic_snowpark_pandas_df_with_missing_values-index_cols12-None-level12-groups],ValueError: Cannot remove 2 levels from an index with 2 levels: at least one level must be left.,failed +16420,tests.integ.modin.groupby.test_groupby_resample,test_groupby_resample_multiple_by_cols[median-15-min],AssertionError: Got type: ,failed +16422,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[True-keep-True-min-group-0-0-NotImplementedError],Failed: DID NOT RAISE ,failed +16423,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_False-dropna_True-basic_snowpark_pandas_df_with_missing_values-index_cols12-None-level12-indices],ValueError: Cannot remove 2 levels from an index with 2 levels: at least one level must be left.,failed +16424,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_False-dropna_False-basic_snowpark_pandas_df_with_missing_values-col3-col1-None-groups],ValueError: Categorical categories cannot be null,failed +16425,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[True-keep-True-min-None--1-0-NotImplementedError],Failed: DID NOT RAISE ,failed +16427,tests.integ.modin.groupby.test_groupby_resample,test_groupby_resample_multiple_by_cols[median-15-h],AssertionError: Got type: ,failed +16429,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[True-keep-True-min-group-0-1-NotImplementedError],Failed: DID NOT RAISE ,failed +16431,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_False-dropna_False-basic_snowpark_pandas_df-None-col1-None-groups],"AssertionError: Actual dict has the wrong key at position 0. Actual key 0 is not equal to expected key 2. +Actual dict: {0: [3, 5], 1: [1, 2], 2: [0, 4]} +Expected dict: {2: [0, 4], 1: [1, 2], 0: [3, 5]}",failed +16432,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[True-keep-True-dense-group-0-0-NotImplementedError],Failed: DID NOT RAISE ,failed +16433,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[True-keep-True-dense-None--1-0-NotImplementedError],Failed: DID NOT RAISE ,failed +16434,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_False-dropna_False-basic_snowpark_pandas_df_with_missing_values-col3-by3-None-groups],"AssertionError: Actual dict has the wrong key at position 0. Actual key (nan, 4.0) is not equal to expected key (0.0, 5.0). +Actual dict: {(nan, 4.0): [3.1, 4.0], (0.0, 5.0): [nan], (0.0, 7.0): [10.0], (1.0, 5.0): [8.0], (1.0, nan): [12.0]} +Expected dict: {(0.0, 5.0): [nan], (0.0, 7.0): [10.0], (1.0, 5.0): [8.0], (1.0, nan): [12.0], (nan, 4.0): [3.1, 4.0]}",failed +16435,tests.integ.modin.groupby.test_groupby_resample,test_groupby_resample_multiple_by_cols[median-15-D],AssertionError: Got type: ,failed +16436,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[True-keep-True-dense-group-0-1-NotImplementedError],Failed: DID NOT RAISE ,failed +16437,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_False-dropna_False-basic_snowpark_pandas_df-None-col1-None-indices],"AssertionError: Actual dict has the wrong key at position 0. Actual key 0 is not equal to expected key 2. +Actual dict: {np.int64(0): array([3, 5]), np.int64(1): array([1, 2]), np.int64(2): array([0, 4])} +Expected dict: {2: array([0, 4]), 1: array([1, 2]), 0: array([3, 5])}",failed +16439,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[True-keep-True-first-group-0-0-NotImplementedError],Failed: DID NOT RAISE ,failed +16440,tests.integ.modin.frame.test_merge,test_merge_left_on_right_on[left-True-B-right_i],KeyError: 'right_i',failed +16441,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[True-keep-True-first-None--1-0-NotImplementedError],Failed: DID NOT RAISE ,failed +16442,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_False-dropna_False-basic_snowpark_pandas_df-None-by1-None-groups],"AssertionError: Actual dict has the wrong key at position 0. Actual key (0, 5) is not equal to expected key (2, 4). +Actual dict: {(0, 5): [5], (0, 7): [3], (1, 5): [1], (1, 36): [2], (2, 4): [0, 4]} +Expected dict: {(2, 4): [0, 4], (1, 5): [1], (1, 36): [2], (0, 7): [3], (0, 5): [5]}",failed +16443,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[True-keep-True-first-group-0-1-NotImplementedError],Failed: DID NOT RAISE ,failed +16444,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[True-keep-True-max-group-0-0-NotImplementedError],Failed: DID NOT RAISE ,failed +16445,tests.integ.modin.groupby.test_groupby_resample,test_groupby_resample_multiple_by_cols[min-1-s],AssertionError: Got type: ,failed +16446,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_False-dropna_False-basic_snowpark_pandas_df_with_missing_values-index_cols4-col1-None-groups],ValueError: Categorical categories cannot be null,failed +16447,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[True-keep-True-max-None--1-0-NotImplementedError],Failed: DID NOT RAISE ,failed +16448,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_False-dropna_False-basic_snowpark_pandas_df-None-by1-None-indices],"AssertionError: Actual dict has the wrong key at position 0. Actual key (np.int64(0), np.int64(5)) is not equal to expected key (2, 4). +Actual dict: {(np.int64(0), np.int64(5)): array([5]), (np.int64(0), np.int64(7)): array([3]), (np.int64(1), np.int64(5)): array([1]), (np.int64(1), np.int64(36)): array([2]), (np.int64(2), np.int64(4)): array([0, 4])} +Expected dict: {(2, 4): array([0, 4]), (1, 5): array([1]), (1, 36): array([2]), (0, 7): array([3]), (0, 5): array([5])}",failed +16450,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[True-keep-True-max-group-0-1-NotImplementedError],Failed: DID NOT RAISE ,failed +16452,tests.integ.modin.groupby.test_groupby_resample,test_groupby_resample_multiple_by_cols[min-1-min],AssertionError: Got type: ,failed +16453,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[True-keep-True-average-group-0-0-NotImplementedError],Failed: DID NOT RAISE ,failed +16454,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_False-dropna_False-basic_snowpark_pandas_df-col3-col1-None-groups],"AssertionError: Actual dict has the wrong key at position 0. Actual key 0 is not equal to expected key 2. +Actual dict: {0: [10.0, 1.1], 1: [8.0, 12.0], 2: [3.1, 4.0]} +Expected dict: {2: [3.1, 4.0], 1: [8.0, 12.0], 0: [10.0, 1.1]}",failed +16455,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_False-dropna_False-basic_snowpark_pandas_df_with_missing_values-index_cols5-by5-None-groups],"AssertionError: Actual dict has the wrong key at position 0. Actual key (nan, 4.0) is not equal to expected key (0.0, 5.0). +Actual dict: {(nan, 4.0): [(3.1, 17.0), (4.0, nan)], (0.0, 5.0): [(nan, nan)], (0.0, 7.0): [(10.0, 15.0)], (1.0, 5.0): [(8.0, 3.0)], (1.0, nan): [(12.0, 16.0)]} +Expected dict: {(0.0, 5.0): [(nan, nan)], (0.0, 7.0): [(10.0, 15.0)], (1.0, 5.0): [(8.0, 3.0)], (1.0, nan): [(12.0, 16.0)], (nan, 4.0): [(3.1, 17.0), (4.0, nan)]}",failed +16456,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[True-keep-True-average-None--1-0-NotImplementedError],Failed: DID NOT RAISE ,failed +16457,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[True-keep-True-average-group-0-1-NotImplementedError],Failed: DID NOT RAISE ,failed +16459,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_False-dropna_False-basic_snowpark_pandas_df-col3-col1-None-indices],"AssertionError: Actual dict has the wrong key at position 0. Actual key 0 is not equal to expected key 2. +Actual dict: {np.int64(0): array([3, 5]), np.int64(1): array([1, 2]), np.int64(2): array([0, 4])} Expected dict: {2: array([0, 4]), 1: array([1, 2]), 0: array([3, 5])}",failed -19826,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_False-group_series_True-dropna_True-basic_snowpark_pandas_df_with_missing_values-None-by1-None-indices],TypeError: assert_array_equal() got an unexpected keyword argument 'strict',failed -19829,tests.integ.modin.frame.test_rename,test_rename_multiindex_not_implemented,Failed: DID NOT RAISE ,failed -19831,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_True-dropna_False-basic_snowpark_pandas_df-col3-by3-None-groups],TypeError: assert_array_equal() got an unexpected keyword argument 'strict',failed -19845,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_True-dropna_False-basic_snowpark_pandas_df-col3-by3-None-indices],TypeError: assert_array_equal() got an unexpected keyword argument 'strict',failed -19849,tests.integ.modin.groupby.test_min_max,test_min_max_with_mixed_str_numeric_type,"TypeError: agg function failed [how->max,dtype->object]",failed -19854,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_False-group_series_True-dropna_True-basic_snowpark_pandas_df_with_missing_values-col3-col1-None-indices],"AssertionError: Actual type is not the same as expected type , and instead is type . Actual value is {0.0: [3, 5], 1.0: [1, 2]}",failed -19860,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_True-dropna_False-basic_snowpark_pandas_df-index_cols4-col1-None-groups],"AssertionError: Actual dict has the wrong key at position 0. Actual key 0 is not equal to expected key 2. +16460,tests.integ.modin.frame.test_merge,test_merge_left_on_right_on[left-True-left_on9-right_on9],KeyError: 'right_i',failed +16461,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[True-keep-False-min-group-0-0-NotImplementedError],Failed: DID NOT RAISE ,failed +16462,tests.integ.modin.groupby.test_groupby_resample,test_groupby_resample_multiple_by_cols[min-1-h],AssertionError: Got type: ,failed +16464,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[True-keep-False-min-None--1-0-NotImplementedError],Failed: DID NOT RAISE ,failed +16465,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_False-dropna_False-basic_snowpark_pandas_df-col3-by3-None-groups],"AssertionError: Actual dict has the wrong key at position 0. Actual key (0, 5) is not equal to expected key (2, 4). +Actual dict: {(0, 5): [1.1], (0, 7): [10.0], (1, 5): [8.0], (1, 36): [12.0], (2, 4): [3.1, 4.0]} +Expected dict: {(2, 4): [3.1, 4.0], (1, 5): [8.0], (1, 36): [12.0], (0, 7): [10.0], (0, 5): [1.1]}",failed +16466,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[True-keep-False-min-group-0-1-NotImplementedError],Failed: DID NOT RAISE ,failed +16469,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[True-keep-False-dense-group-0-0-NotImplementedError],Failed: DID NOT RAISE ,failed +16471,tests.integ.modin.groupby.test_groupby_resample,test_groupby_resample_multiple_by_cols[min-1-D],AssertionError: Got type: ,failed +16472,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_False-dropna_False-basic_snowpark_pandas_df-col3-by3-None-indices],"AssertionError: Actual dict has the wrong key at position 0. Actual key (np.int64(0), np.int64(5)) is not equal to expected key (2, 4). +Actual dict: {(np.int64(0), np.int64(5)): array([5]), (np.int64(0), np.int64(7)): array([3]), (np.int64(1), np.int64(5)): array([1]), (np.int64(1), np.int64(36)): array([2]), (np.int64(2), np.int64(4)): array([0, 4])} +Expected dict: {(2, 4): array([0, 4]), (1, 5): array([1]), (1, 36): array([2]), (0, 7): array([3]), (0, 5): array([5])}",failed +16474,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[True-keep-False-dense-None--1-0-NotImplementedError],Failed: DID NOT RAISE ,failed +16476,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[True-keep-False-dense-group-0-1-NotImplementedError],Failed: DID NOT RAISE ,failed +16479,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_False-dropna_False-basic_snowpark_pandas_df-index_cols4-col1-None-groups],"AssertionError: Actual dict has the wrong key at position 0. Actual key 0 is not equal to expected key 2. Actual dict: {0: [(10.0, 15), (1.1, 6)], 1: [(8.0, 3), (12.0, 16)], 2: [(3.1, 17), (4.0, 5)]} Expected dict: {2: [(3.1, 17), (4.0, 5)], 1: [(8.0, 3), (12.0, 16)], 0: [(10.0, 15), (1.1, 6)]}",failed -19869,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_False-group_series_True-dropna_True-basic_snowpark_pandas_df_with_missing_values-col3-by3-None-groups],"AssertionError: Actual and expected dicts have different lengths 5 and 3 respectively. -Actual dict: {(nan, 4.0): [3.1, 4.0], (0.0, 5.0): [nan], (0.0, 7.0): [10.0], (1.0, 5.0): [8.0], (1.0, nan): [12.0]} -Expected dict: {(0.0, 5.0): [nan], (0.0, 7.0): [10.0], (1.0, 5.0): [8.0]}",failed -19873,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_True-dropna_False-basic_snowpark_pandas_df-index_cols4-col1-None-indices],"AssertionError: Actual dict has the wrong key at position 0. Actual key 0 is not equal to expected key 2. -Actual dict: {0: array([3, 5]), 1: array([1, 2]), 2: array([0, 4])} +16480,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[True-keep-False-first-group-0-0-NotImplementedError],Failed: DID NOT RAISE ,failed +16481,tests.integ.modin.groupby.test_groupby_resample,test_groupby_resample_multiple_by_cols[min-3-s],AssertionError: Got type: ,failed +16482,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[True-keep-False-first-None--1-0-NotImplementedError],Failed: DID NOT RAISE ,failed +16483,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[True-keep-False-first-group-0-1-NotImplementedError],Failed: DID NOT RAISE ,failed +16484,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_False-dropna_False-basic_snowpark_pandas_df-index_cols4-col1-None-indices],"AssertionError: Actual dict has the wrong key at position 0. Actual key 0 is not equal to expected key 2. +Actual dict: {np.int64(0): array([3, 5]), np.int64(1): array([1, 2]), np.int64(2): array([0, 4])} Expected dict: {2: array([0, 4]), 1: array([1, 2]), 0: array([3, 5])}",failed -19879,tests.integ.modin.frame.test_rename,test_rename_axis_style_not_implemented,Failed: DID NOT RAISE ,failed -19880,tests.integ.modin.frame.test_rename,test_rename_mapper_multi,Failed: DID NOT RAISE ,failed -19883,tests.integ.modin.frame.test_rename,test_rename_positional_named,Failed: DID NOT RAISE ,failed -19884,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_False-group_series_True-dropna_True-basic_snowpark_pandas_df_with_missing_values-col3-by3-None-indices],TypeError: assert_array_equal() got an unexpected keyword argument 'strict',failed -19885,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_True-dropna_False-basic_snowpark_pandas_df-index_cols5-by5-None-groups],TypeError: assert_array_equal() got an unexpected keyword argument 'strict',failed -19898,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_True-dropna_False-basic_snowpark_pandas_df-index_cols5-by5-None-indices],TypeError: assert_array_equal() got an unexpected keyword argument 'strict',failed -19911,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_False-group_series_True-dropna_True-basic_snowpark_pandas_df_with_missing_values-index_cols4-col1-None-indices],"AssertionError: Actual type is not the same as expected type , and instead is type . Actual value is {0.0: [3, 5], 1.0: [1, 2]}",failed -19913,tests.integ.modin.frame.test_rename,test_rename_copy_warning,"AssertionError: assert 'The argument `copy` of `dataframe.rename` has been ignored by Snowpark pandas API' in '' - + where '' = <_pytest.logging.LogCaptureFixture object at 0x33ed3a5c0>.text",failed -19915,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_True-dropna_False-basic_snowpark_pandas_df-None-None-0-indices],TypeError: assert_array_equal() got an unexpected keyword argument 'strict',failed -19925,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_False-group_series_True-dropna_True-basic_snowpark_pandas_df_with_missing_values-index_cols5-by5-None-groups],"AssertionError: Actual and expected dicts have different lengths 5 and 3 respectively. -Actual dict: {(nan, 4.0): [(3.1, 17.0), (4.0, nan)], (0.0, 5.0): [(nan, nan)], (0.0, 7.0): [(10.0, 15.0)], (1.0, 5.0): [(8.0, 3.0)], (1.0, nan): [(12.0, 16.0)]} -Expected dict: {(0.0, 5.0): [(nan, nan)], (0.0, 7.0): [(10.0, 15.0)], (1.0, 5.0): [(8.0, 3.0)]}",failed -19928,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_True-dropna_False-basic_snowpark_pandas_df-col3-col3-None-groups],"AssertionError: Actual dict has the wrong key at position 0. Actual key 1.1 is not equal to expected key 3.1. +16485,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[True-keep-False-max-group-0-0-NotImplementedError],Failed: DID NOT RAISE ,failed +16486,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[True-keep-False-max-None--1-0-NotImplementedError],Failed: DID NOT RAISE ,failed +16487,tests.integ.modin.groupby.test_groupby_resample,test_groupby_resample_multiple_by_cols[min-3-min],AssertionError: Got type: ,failed +16488,tests.integ.modin.frame.test_reindex,test_reindex_multiindex_negative[0],"ValueError: Buffer dtype mismatch, expected 'Python object' but got 'long'",failed +16489,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_False-dropna_False-basic_snowpark_pandas_df-index_cols5-by5-None-groups],"AssertionError: Actual dict has the wrong key at position 0. Actual key (0, 5) is not equal to expected key (2, 4). +Actual dict: {(0, 5): [(1.1, 6)], (0, 7): [(10.0, 15)], (1, 5): [(8.0, 3)], (1, 36): [(12.0, 16)], (2, 4): [(3.1, 17), (4.0, 5)]} +Expected dict: {(2, 4): [(3.1, 17), (4.0, 5)], (1, 5): [(8.0, 3)], (1, 36): [(12.0, 16)], (0, 7): [(10.0, 15)], (0, 5): [(1.1, 6)]}",failed +16490,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[True-keep-False-max-group-0-1-NotImplementedError],Failed: DID NOT RAISE ,failed +16492,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[True-keep-False-average-group-0-0-NotImplementedError],Failed: DID NOT RAISE ,failed +16493,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_False-dropna_False-basic_snowpark_pandas_df_with_missing_values-col3-col3-None-groups],ValueError: Categorical categories cannot be null,failed +16494,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[True-keep-False-average-None--1-0-NotImplementedError],Failed: DID NOT RAISE ,failed +16495,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_False-dropna_False-basic_snowpark_pandas_df-index_cols5-by5-None-indices],"AssertionError: Actual dict has the wrong key at position 0. Actual key (np.int64(0), np.int64(5)) is not equal to expected key (2, 4). +Actual dict: {(np.int64(0), np.int64(5)): array([5]), (np.int64(0), np.int64(7)): array([3]), (np.int64(1), np.int64(5)): array([1]), (np.int64(1), np.int64(36)): array([2]), (np.int64(2), np.int64(4)): array([0, 4])} +Expected dict: {(2, 4): array([0, 4]), (1, 5): array([1]), (1, 36): array([2]), (0, 7): array([3]), (0, 5): array([5])}",failed +16496,tests.integ.modin.groupby.test_groupby_resample,test_groupby_resample_multiple_by_cols[min-3-h],AssertionError: Got type: ,failed +16497,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[True-keep-False-average-group-0-1-NotImplementedError],Failed: DID NOT RAISE ,failed +16499,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[True-top-True-min-group-0-0-NotImplementedError],Failed: DID NOT RAISE ,failed +16501,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[True-top-True-min-None--1-0-NotImplementedError],Failed: DID NOT RAISE ,failed +16503,tests.integ.modin.groupby.test_groupby_resample,test_groupby_resample_multiple_by_cols[min-3-D],AssertionError: Got type: ,failed +16505,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[True-top-True-min-group-0-1-NotImplementedError],Failed: DID NOT RAISE ,failed +16506,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_False-dropna_False-basic_snowpark_pandas_df_with_missing_values-col3-None-0-groups],ValueError: Categorical categories cannot be null,failed +16507,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[True-top-True-dense-group-0-0-NotImplementedError],Failed: DID NOT RAISE ,failed +16508,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_False-dropna_False-basic_snowpark_pandas_df-col3-col3-None-groups],"AssertionError: Actual dict has the wrong key at position 0. Actual key 1.1 is not equal to expected key 3.1. Actual dict: {1.1: [1.1], 3.1: [3.1], 4.0: [4.0], 8.0: [8.0], 10.0: [10.0], 12.0: [12.0]} Expected dict: {3.1: [3.1], 8.0: [8.0], 12.0: [12.0], 10.0: [10.0], 4.0: [4.0], 1.1: [1.1]}",failed -19935,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_False-group_series_True-dropna_True-basic_snowpark_pandas_df_with_missing_values-index_cols5-by5-None-indices],TypeError: assert_array_equal() got an unexpected keyword argument 'strict',failed -19936,tests.integ.modin.frame.test_merge,test_merge_on_index_single_index[outer-False],"AssertionError: DataFrame.index are different - -DataFrame.index values are different (28.57143 %) -[left]: Index([0, 1, 3, 2, 4, 8, 9], dtype='int64') -[right]: Index([0, 1, 2, 3, 4, 8, 9], dtype='int64') -At positional index 2, first diff: 3 != 2",failed -19937,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_True-dropna_False-basic_snowpark_pandas_df-col3-col3-None-indices],"AssertionError: Actual dict has the wrong key at position 0. Actual key 1.1 is not equal to expected key 3.1. -Actual dict: {1.1: array([5]), 3.1: array([0]), 4.0: array([4]), 8.0: array([1]), 10.0: array([3]), 12.0: array([2])} +16510,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[True-top-True-dense-None--1-0-NotImplementedError],Failed: DID NOT RAISE ,failed +16511,tests.integ.modin.groupby.test_groupby_resample,test_groupby_resample_multiple_by_cols[min-5-s],AssertionError: Got type: ,failed +16512,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[True-top-True-dense-group-0-1-NotImplementedError],Failed: DID NOT RAISE ,failed +16513,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[True-top-True-first-group-0-0-NotImplementedError],Failed: DID NOT RAISE ,failed +16514,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_False-dropna_False-basic_snowpark_pandas_df-col3-col3-None-indices],"AssertionError: Actual dict has the wrong key at position 0. Actual key 1.1 is not equal to expected key 3.1. +Actual dict: {np.float64(1.1): array([5]), np.float64(3.1): array([0]), np.float64(4.0): array([4]), np.float64(8.0): array([1]), np.float64(10.0): array([3]), np.float64(12.0): array([2])} Expected dict: {3.1: array([0]), 8.0: array([1]), 12.0: array([2]), 10.0: array([3]), 4.0: array([4]), 1.1: array([5])}",failed -19945,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_True-dropna_False-basic_snowpark_pandas_df-col3-None-0-groups],"AssertionError: Actual dict has the wrong key at position 0. Actual key 1.1 is not equal to expected key 3.1. +16516,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[True-top-True-first-None--1-0-NotImplementedError],Failed: DID NOT RAISE ,failed +16517,tests.integ.modin.frame.test_reindex,test_reindex_multiindex_negative[1],"ValueError: Buffer dtype mismatch, expected 'Python object' but got 'long'",failed +16518,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_False-dropna_False-basic_snowpark_pandas_df_with_missing_values-col3-None-col3-groups],ValueError: Categorical categories cannot be null,failed +16519,tests.integ.modin.frame.test_reindex,test_reindex_timedelta_axis_0_negative,[XPASS(strict)] ,failed +16520,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[True-top-True-first-group-0-1-NotImplementedError],Failed: DID NOT RAISE ,failed +16521,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_False-dropna_False-basic_snowpark_pandas_df-col3-None-0-groups],"AssertionError: Actual dict has the wrong key at position 0. Actual key 1.1 is not equal to expected key 3.1. Actual dict: {1.1: [1.1], 3.1: [3.1], 4.0: [4.0], 8.0: [8.0], 10.0: [10.0], 12.0: [12.0]} Expected dict: {3.1: [3.1], 8.0: [8.0], 12.0: [12.0], 10.0: [10.0], 4.0: [4.0], 1.1: [1.1]}",failed -19955,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_True-dropna_False-basic_snowpark_pandas_df-col3-None-0-indices],"AssertionError: Actual dict has the wrong key at position 0. Actual key 1.1 is not equal to expected key 3.1. -Actual dict: {1.1: array([5]), 3.1: array([0]), 4.0: array([4]), 8.0: array([1]), 10.0: array([3]), 12.0: array([2])} +16522,tests.integ.modin.frame.test_reindex,test_reindex_timedelta_axis_1_negative,[XPASS(strict)] ,failed +16523,tests.integ.modin.groupby.test_groupby_resample,test_groupby_resample_multiple_by_cols[min-5-min],AssertionError: Got type: ,failed +16525,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[True-top-True-max-group-0-0-NotImplementedError],Failed: DID NOT RAISE ,failed +16529,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[True-top-True-max-None--1-0-NotImplementedError],Failed: DID NOT RAISE ,failed +16530,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_False-dropna_False-basic_snowpark_pandas_df-col3-None-0-indices],"AssertionError: Actual dict has the wrong key at position 0. Actual key 1.1 is not equal to expected key 3.1. +Actual dict: {np.float64(1.1): array([5]), np.float64(3.1): array([0]), np.float64(4.0): array([4]), np.float64(8.0): array([1]), np.float64(10.0): array([3]), np.float64(12.0): array([2])} Expected dict: {3.1: array([0]), 8.0: array([1]), 12.0: array([2]), 10.0: array([3]), 4.0: array([4]), 1.1: array([5])}",failed -19957,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_False-group_series_True-dropna_True-basic_snowpark_pandas_df_with_missing_values-None-None-0-indices],"AssertionError: Actual type is not the same as expected type , and instead is type . Actual value is {0: [0], 1: [1], 2: [2], 3: [3], 4: [4], 5: [5]}",failed -19966,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_True-dropna_False-basic_snowpark_pandas_df-col3-None-col3-groups],"AssertionError: Actual dict has the wrong key at position 0. Actual key 1.1 is not equal to expected key 3.1. +16531,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[True-top-True-max-group-0-1-NotImplementedError],Failed: DID NOT RAISE ,failed +16533,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[True-top-True-average-group-0-0-NotImplementedError],Failed: DID NOT RAISE ,failed +16534,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_False-dropna_False-basic_snowpark_pandas_df_with_missing_values-index_cols10-col3-None-groups],ValueError: Categorical categories cannot be null,failed +16535,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[True-top-True-average-None--1-0-NotImplementedError],Failed: DID NOT RAISE ,failed +16536,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_False-dropna_False-basic_snowpark_pandas_df-col3-None-col3-groups],"AssertionError: Actual dict has the wrong key at position 0. Actual key 1.1 is not equal to expected key 3.1. Actual dict: {1.1: [1.1], 3.1: [3.1], 4.0: [4.0], 8.0: [8.0], 10.0: [10.0], 12.0: [12.0]} Expected dict: {3.1: [3.1], 8.0: [8.0], 12.0: [12.0], 10.0: [10.0], 4.0: [4.0], 1.1: [1.1]}",failed -19976,tests.integ.modin.groupby.test_value_counts,test_value_counts_basic[False-None-True-True-True-by-test_data1],"AssertionError: Series are different - -Series length are different -[left]: 4, MultiIndex([('key 1', 'value', nan), - ('key 1', nan, 'value'), - ('key 1', nan, nan), - ('key 2', nan, 'value')], - names=['by', 'value1', 'value2']) -[right]: 6, MultiIndex([('key 1', 'value', nan), - ('key 1', nan, 'value'), - ('key 1', nan, nan), - ('key 2', nan, 'value'), - ( nan, 'value', nan), - ( nan, nan, nan)], - names=['by', 'value1', 'value2'])",failed -19978,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_True-dropna_False-basic_snowpark_pandas_df-col3-None-col3-indices],"AssertionError: Actual dict has the wrong key at position 0. Actual key 1.1 is not equal to expected key 3.1. -Actual dict: {1.1: array([5]), 3.1: array([0]), 4.0: array([4]), 8.0: array([1]), 10.0: array([3]), 12.0: array([2])} +16537,tests.integ.modin.groupby.test_groupby_resample,test_groupby_resample_multiple_by_cols[min-5-h],AssertionError: Got type: ,failed +16538,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[True-top-True-average-group-0-1-NotImplementedError],Failed: DID NOT RAISE ,failed +16540,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[True-top-False-min-group-0-0-NotImplementedError],Failed: DID NOT RAISE ,failed +16542,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_False-dropna_False-basic_snowpark_pandas_df-col3-None-col3-indices],"AssertionError: Actual dict has the wrong key at position 0. Actual key 1.1 is not equal to expected key 3.1. +Actual dict: {np.float64(1.1): array([5]), np.float64(3.1): array([0]), np.float64(4.0): array([4]), np.float64(8.0): array([1]), np.float64(10.0): array([3]), np.float64(12.0): array([2])} Expected dict: {3.1: array([0]), 8.0: array([1]), 12.0: array([2]), 10.0: array([3]), 4.0: array([4]), 1.1: array([5])}",failed -19982,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_False-group_series_True-dropna_True-basic_snowpark_pandas_df_with_missing_values-col3-col3-None-indices],"AssertionError: Actual type is not the same as expected type , and instead is type . Actual value is {3.1: [0], 4.0: [4], 8.0: [1], 10.0: [3], 12.0: [2]}",failed -19989,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_True-dropna_False-basic_snowpark_pandas_df-index_cols10-col3-None-groups],"AssertionError: Actual dict has the wrong key at position 0. Actual key 1.1 is not equal to expected key 3.1. +16543,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[True-top-False-min-None--1-0-NotImplementedError],Failed: DID NOT RAISE ,failed +16544,tests.integ.modin.groupby.test_groupby_resample,test_groupby_resample_multiple_by_cols[min-5-D],AssertionError: Got type: ,failed +16547,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[True-top-False-min-group-0-1-NotImplementedError],Failed: DID NOT RAISE ,failed +16548,tests.integ.modin.frame.test_to_iceberg,test_to_iceberg_config_required[method],"AssertionError: Regex pattern did not match. + Regex: ""missing 1 required keyword-only argument: 'iceberg_config'"" + Input: ""missing a required argument: 'iceberg_config'""",failed +16549,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_False-dropna_False-basic_snowpark_pandas_df_with_missing_values-index_cols11-None-level11-groups],ValueError: Cannot remove 2 levels from an index with 2 levels: at least one level must be left.,failed +16550,tests.integ.modin.frame.test_astype,test_astype_from_timestamp_ltz[float32],"AssertionError: Regex pattern did not match. + Regex: 'cannot be converted' + Input: 'Cannot cast DatetimeArray to dtype float32'",failed +16551,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[True-top-False-dense-group-0-0-NotImplementedError],Failed: DID NOT RAISE ,failed +16552,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_False-dropna_False-basic_snowpark_pandas_df-index_cols10-col3-None-groups],"AssertionError: Actual dict has the wrong key at position 0. Actual key 1.1 is not equal to expected key 3.1. Actual dict: {1.1: [(1.1, 6)], 3.1: [(3.1, 17)], 4.0: [(4.0, 5)], 8.0: [(8.0, 3)], 10.0: [(10.0, 15)], 12.0: [(12.0, 16)]} Expected dict: {3.1: [(3.1, 17)], 8.0: [(8.0, 3)], 12.0: [(12.0, 16)], 10.0: [(10.0, 15)], 4.0: [(4.0, 5)], 1.1: [(1.1, 6)]}",failed -19992,tests.integ.modin.groupby.test_value_counts,test_value_counts_basic[False-None-True-True-True-by1-test_data1],"AssertionError: Series are different - -Series length are different -[left]: 1, MultiIndex([('value', 'key 1', nan)], - names=['value1', 'by', 'value2']) -[right]: 6, MultiIndex([('value', 'key 1', nan), - ('value', nan, nan), - ( nan, 'key 1', 'value'), - ( nan, 'key 1', nan), - ( nan, 'key 2', 'value'), - ( nan, nan, nan)], - names=['value1', 'by', 'value2'])",failed -20002,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_True-dropna_False-basic_snowpark_pandas_df-index_cols10-col3-None-indices],"AssertionError: Actual dict has the wrong key at position 0. Actual key 1.1 is not equal to expected key 3.1. -Actual dict: {1.1: array([5]), 3.1: array([0]), 4.0: array([4]), 8.0: array([1]), 10.0: array([3]), 12.0: array([2])} +16554,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[True-top-False-dense-None--1-0-NotImplementedError],Failed: DID NOT RAISE ,failed +16556,tests.integ.modin.groupby.test_groupby_resample,test_groupby_resample_multiple_by_cols[min-15-s],AssertionError: Got type: ,failed +16557,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[True-top-False-dense-group-0-1-NotImplementedError],Failed: DID NOT RAISE ,failed +16558,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_False-dropna_False-basic_snowpark_pandas_df-index_cols10-col3-None-indices],"AssertionError: Actual dict has the wrong key at position 0. Actual key 1.1 is not equal to expected key 3.1. +Actual dict: {np.float64(1.1): array([5]), np.float64(3.1): array([0]), np.float64(4.0): array([4]), np.float64(8.0): array([1]), np.float64(10.0): array([3]), np.float64(12.0): array([2])} Expected dict: {3.1: array([0]), 8.0: array([1]), 12.0: array([2]), 10.0: array([3]), 4.0: array([4]), 1.1: array([5])}",failed -20008,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_False-group_series_True-dropna_True-basic_snowpark_pandas_df_with_missing_values-col3-None-0-indices],"AssertionError: Actual type is not the same as expected type , and instead is type . Actual value is {3.1: [0], 4.0: [4], 8.0: [1], 10.0: [3], 12.0: [2]}",failed -20009,tests.integ.modin.groupby.test_value_counts,test_value_counts_basic[False-None-True-True-True-by2-test_data1],"AssertionError: Series are different +16559,tests.integ.modin.frame.test_to_iceberg,test_to_iceberg_config_required[function],"AssertionError: Regex pattern did not match. + Regex: ""missing 1 required keyword-only argument: 'iceberg_config'"" + Input: ""missing a required argument: 'iceberg_config'""",failed +16561,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_False-dropna_False-basic_snowpark_pandas_df_with_missing_values-index_cols11-None-level11-indices],ValueError: Cannot remove 2 levels from an index with 2 levels: at least one level must be left.,failed +16562,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[True-top-False-first-group-0-0-NotImplementedError],Failed: DID NOT RAISE ,failed +16563,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[True-top-False-first-None--1-0-NotImplementedError],Failed: DID NOT RAISE ,failed +16564,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[True-top-False-first-group-0-1-NotImplementedError],Failed: DID NOT RAISE ,failed +16565,tests.integ.modin.groupby.test_groupby_resample,test_groupby_resample_multiple_by_cols[min-15-min],AssertionError: Got type: ,failed +16566,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_False-dropna_False-basic_snowpark_pandas_df-index_cols11-None-level11-groups],ValueError: Cannot remove 2 levels from an index with 2 levels: at least one level must be left.,failed +16567,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[True-top-False-max-group-0-0-NotImplementedError],Failed: DID NOT RAISE ,failed +16568,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_False-dropna_False-basic_snowpark_pandas_df_with_missing_values-index_cols12-None-level12-groups],ValueError: Cannot remove 2 levels from an index with 2 levels: at least one level must be left.,failed +16569,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[True-top-False-max-None--1-0-NotImplementedError],Failed: DID NOT RAISE ,failed +16570,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[True-top-False-max-group-0-1-NotImplementedError],Failed: DID NOT RAISE ,failed +16571,tests.integ.modin.frame.test_merge,test_merge_left_on_right_on[left-False-left_i-right_i],KeyError: 'right_i',failed +16572,tests.integ.modin.groupby.test_groupby_resample,test_groupby_resample_multiple_by_cols[min-15-h],AssertionError: Got type: ,failed +16573,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[True-top-False-average-group-0-0-NotImplementedError],Failed: DID NOT RAISE ,failed +16574,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_True-group_series_False-dropna_False-basic_snowpark_pandas_df_with_missing_values-index_cols12-None-level12-indices],ValueError: Cannot remove 2 levels from an index with 2 levels: at least one level must be left.,failed +16575,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[True-top-False-average-None--1-0-NotImplementedError],Failed: DID NOT RAISE ,failed +16577,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[True-top-False-average-group-0-1-NotImplementedError],Failed: DID NOT RAISE ,failed +16579,tests.integ.modin.groupby.test_groupby_resample,test_groupby_resample_multiple_by_cols[min-15-D],AssertionError: Got type: ,failed +16580,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[True-bottom-True-min-group-0-0-NotImplementedError],Failed: DID NOT RAISE ,failed +16582,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[True-bottom-True-min-None--1-0-NotImplementedError],Failed: DID NOT RAISE ,failed +16583,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_False-group_series_True-dropna_True-basic_snowpark_pandas_df-None-col1-None-indices],"AssertionError: Actual type is not the same as expected type , and instead is type . Actual value is {0: [3, 5], 1: [1, 2], 2: [0, 4]}",failed +16584,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[True-bottom-True-min-group-0-1-NotImplementedError],Failed: DID NOT RAISE ,failed +16585,tests.integ.modin.groupby.test_groupby_resample,test_groupby_resample_multiple_by_cols[sum-1-s],AssertionError: Got type: ,failed +16587,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[True-bottom-True-dense-group-0-0-NotImplementedError],Failed: DID NOT RAISE ,failed +16588,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[True-bottom-True-dense-None--1-0-NotImplementedError],Failed: DID NOT RAISE ,failed +16590,tests.integ.modin.frame.test_merge,test_merge_left_on_right_on[left-False-left_i-A],KeyError: 'left_i',failed +16591,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[True-bottom-True-dense-group-0-1-NotImplementedError],Failed: DID NOT RAISE ,failed +16592,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_False-dropna_False-basic_snowpark_pandas_df-index_cols11-None-level11-indices],ValueError: Cannot remove 2 levels from an index with 2 levels: at least one level must be left.,failed +16593,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[True-bottom-True-first-group-0-0-NotImplementedError],Failed: DID NOT RAISE ,failed +16595,tests.integ.modin.groupby.test_groupby_resample,test_groupby_resample_multiple_by_cols[sum-1-min],AssertionError: Got type: ,failed +16596,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[True-bottom-True-first-None--1-0-NotImplementedError],Failed: DID NOT RAISE ,failed +16597,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_False-group_series_True-dropna_True-basic_snowpark_pandas_df-col3-col1-None-indices],"AssertionError: Actual type is not the same as expected type , and instead is type . Actual value is {0: [3, 5], 1: [1, 2], 2: [0, 4]}",failed +16598,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[True-bottom-True-first-group-0-1-NotImplementedError],Failed: DID NOT RAISE ,failed +16599,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_False-dropna_False-basic_snowpark_pandas_df-index_cols12-None-level12-groups],ValueError: Cannot remove 2 levels from an index with 2 levels: at least one level must be left.,failed +16600,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[True-bottom-True-max-group-0-0-NotImplementedError],Failed: DID NOT RAISE ,failed +16602,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[True-bottom-True-max-None--1-0-NotImplementedError],Failed: DID NOT RAISE ,failed +16603,tests.integ.modin.groupby.test_groupby_resample,test_groupby_resample_multiple_by_cols[sum-1-h],AssertionError: Got type: ,failed +16605,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[True-bottom-True-max-group-0-1-NotImplementedError],Failed: DID NOT RAISE ,failed +16606,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[True-bottom-True-average-group-0-0-NotImplementedError],Failed: DID NOT RAISE ,failed +16607,tests.integ.modin.frame.test_merge,test_merge_left_on_right_on[left-False-B-right_i],KeyError: 'right_i',failed +16609,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_False-dropna_False-basic_snowpark_pandas_df-index_cols12-None-level12-indices],ValueError: Cannot remove 2 levels from an index with 2 levels: at least one level must be left.,failed +16610,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[True-bottom-True-average-None--1-0-NotImplementedError],Failed: DID NOT RAISE ,failed +16611,tests.integ.modin.groupby.test_groupby_resample,test_groupby_resample_multiple_by_cols[sum-1-D],AssertionError: Got type: ,failed +16612,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[True-bottom-True-average-group-0-1-NotImplementedError],Failed: DID NOT RAISE ,failed +16613,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_False-group_series_True-dropna_True-basic_snowpark_pandas_df-index_cols4-col1-None-indices],"AssertionError: Actual type is not the same as expected type , and instead is type . Actual value is {0: [3, 5], 1: [1, 2], 2: [0, 4]}",failed +16614,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[True-bottom-False-min-group-0-0-NotImplementedError],Failed: DID NOT RAISE ,failed +16616,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[True-bottom-False-min-None--1-0-NotImplementedError],Failed: DID NOT RAISE ,failed +16617,tests.integ.modin.groupby.test_groupby_resample,test_groupby_resample_multiple_by_cols[sum-3-s],AssertionError: Got type: ,failed +16618,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_False-dropna_False-basic_snowpark_pandas_df_with_missing_values-None-col1-None-groups],ValueError: Categorical categories cannot be null,failed +16619,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[True-bottom-False-min-group-0-1-NotImplementedError],Failed: DID NOT RAISE ,failed +16621,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[True-bottom-False-dense-group-0-0-NotImplementedError],Failed: DID NOT RAISE ,failed +16623,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_False-dropna_False-basic_snowpark_pandas_df_with_missing_values-None-col1-None-indices],"AssertionError: Actual dict has the wrong key at position 0. Actual key 0.0 is not equal to expected key nan. +Actual dict: {np.float64(0.0): array([3, 5]), np.float64(1.0): array([1, 2]), np.float64(nan): array([0, 4])} +Expected dict: {nan: array([0, 4]), 1.0: array([1, 2]), 0.0: array([3, 5])}",failed +16624,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[True-bottom-False-dense-None--1-0-NotImplementedError],Failed: DID NOT RAISE ,failed +16625,tests.integ.modin.groupby.test_groupby_resample,test_groupby_resample_multiple_by_cols[sum-3-min],AssertionError: Got type: ,failed +16626,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[True-bottom-False-dense-group-0-1-NotImplementedError],Failed: DID NOT RAISE ,failed +16627,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_False-group_series_True-dropna_True-basic_snowpark_pandas_df-None-None-0-indices],"AssertionError: Actual type is not the same as expected type , and instead is type . Actual value is {0: [0], 1: [1], 2: [2], 3: [3], 4: [4], 5: [5]}",failed +16628,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[True-bottom-False-first-group-0-0-NotImplementedError],Failed: DID NOT RAISE ,failed +16629,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_False-dropna_False-basic_snowpark_pandas_df_with_missing_values-None-by1-None-groups],"AssertionError: Actual dict has the wrong key at position 1. Actual key (0.0, 5.0) is not equal to expected key (1.0, 5.0). +Actual dict: {(nan, 4.0): [0, 4], (0.0, 5.0): [5], (0.0, 7.0): [3], (1.0, 5.0): [1], (1.0, nan): [2]} +Expected dict: {(nan, 4.0): [0, 4], (1.0, 5.0): [1], (1.0, nan): [2], (0.0, 7.0): [3], (0.0, 5.0): [5]}",failed +16630,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[True-bottom-False-first-None--1-0-NotImplementedError],Failed: DID NOT RAISE ,failed +16632,tests.integ.modin.groupby.test_groupby_resample,test_groupby_resample_multiple_by_cols[sum-3-h],AssertionError: Got type: ,failed +16633,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[True-bottom-False-first-group-0-1-NotImplementedError],Failed: DID NOT RAISE ,failed +16634,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_False-dropna_False-basic_snowpark_pandas_df_with_missing_values-None-by1-None-indices],"AssertionError: Actual dict has the wrong key at position 0. Actual key (np.float64(0.0), np.float64(5.0)) is not equal to expected key (nan, 4.0). +Actual dict: {(np.float64(0.0), np.float64(5.0)): array([5]), (np.float64(0.0), np.float64(7.0)): array([3]), (np.float64(1.0), np.float64(5.0)): array([1]), (np.float64(1.0), np.float64(nan)): array([2]), (np.float64(nan), np.float64(4.0)): array([0, 4])} +Expected dict: {(nan, 4.0): array([0, 4]), (1.0, 5.0): array([1]), (1.0, nan): array([2]), (0.0, 7.0): array([3]), (0.0, 5.0): array([5])}",failed +16635,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_False-group_series_True-dropna_True-basic_snowpark_pandas_df-col3-col3-None-indices],"AssertionError: Actual type is not the same as expected type , and instead is type . Actual value is {1.1: [5], 3.1: [0], 4.0: [4], 8.0: [1], 10.0: [3], 12.0: [2]}",failed +16636,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[True-bottom-False-max-group-0-0-NotImplementedError],Failed: DID NOT RAISE ,failed +16637,tests.integ.modin.frame.test_merge,test_merge_left_on_right_on[left-False-left_on9-right_on9],KeyError: 'right_i',failed +16638,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[True-bottom-False-max-None--1-0-NotImplementedError],Failed: DID NOT RAISE ,failed +16640,tests.integ.modin.groupby.test_groupby_resample,test_groupby_resample_multiple_by_cols[sum-3-D],AssertionError: Got type: ,failed +16642,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[True-bottom-False-max-group-0-1-NotImplementedError],Failed: DID NOT RAISE ,failed +16644,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[True-bottom-False-average-group-0-0-NotImplementedError],Failed: DID NOT RAISE ,failed +16645,tests.integ.modin.frame.test_rename,test_rename_mi[DataFrame],Failed: DID NOT RAISE ,failed +16646,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_False-group_series_True-dropna_True-basic_snowpark_pandas_df-col3-None-0-indices],"AssertionError: Actual type is not the same as expected type , and instead is type . Actual value is {1.1: [5], 3.1: [0], 4.0: [4], 8.0: [1], 10.0: [3], 12.0: [2]}",failed +16647,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[True-bottom-False-average-None--1-0-NotImplementedError],Failed: DID NOT RAISE ,failed +16648,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_False-dropna_False-basic_snowpark_pandas_df_with_missing_values-col3-col1-None-groups],ValueError: Categorical categories cannot be null,failed +16649,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[True-bottom-False-average-group-0-1-NotImplementedError],Failed: DID NOT RAISE ,failed +16651,tests.integ.modin.groupby.test_groupby_resample,test_groupby_resample_multiple_by_cols[sum-5-s],AssertionError: Got type: ,failed +16652,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[False-keep-True-min-group-0-0-NotImplementedError],Failed: DID NOT RAISE ,failed +16653,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_False-dropna_False-basic_snowpark_pandas_df_with_missing_values-col3-col1-None-indices],"AssertionError: Actual dict has the wrong key at position 0. Actual key 0.0 is not equal to expected key nan. +Actual dict: {np.float64(0.0): array([3, 5]), np.float64(1.0): array([1, 2]), np.float64(nan): array([0, 4])} +Expected dict: {nan: array([0, 4]), 1.0: array([1, 2]), 0.0: array([3, 5])}",failed +16654,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_False-group_series_True-dropna_True-basic_snowpark_pandas_df-col3-None-col3-indices],"AssertionError: Actual type is not the same as expected type , and instead is type . Actual value is {1.1: [5], 3.1: [0], 4.0: [4], 8.0: [1], 10.0: [3], 12.0: [2]}",failed +16655,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[False-keep-True-min-None--1-0-NotImplementedError],Failed: DID NOT RAISE ,failed +16657,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[False-keep-True-min-group-0-1-NotImplementedError],Failed: DID NOT RAISE ,failed +16659,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_False-dropna_False-basic_snowpark_pandas_df_with_missing_values-col3-by3-None-groups],"AssertionError: Actual dict has the wrong key at position 1. Actual key (0.0, 5.0) is not equal to expected key (1.0, 5.0). +Actual dict: {(nan, 4.0): [3.1, 4.0], (0.0, 5.0): [nan], (0.0, 7.0): [10.0], (1.0, 5.0): [8.0], (1.0, nan): [12.0]} +Expected dict: {(nan, 4.0): [3.1, 4.0], (1.0, 5.0): [8.0], (1.0, nan): [12.0], (0.0, 7.0): [10.0], (0.0, 5.0): [nan]}",failed +16660,tests.integ.modin.groupby.test_groupby_resample,test_groupby_resample_multiple_by_cols[sum-5-min],AssertionError: Got type: ,failed +16661,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[False-keep-True-dense-group-0-0-NotImplementedError],Failed: DID NOT RAISE ,failed +16662,tests.integ.modin.frame.test_rename,test_rename,"AssertionError: Index are different -Series length are different -[left]: 2, MultiIndex([('key 1', 'value', nan), - ('key 2', 'value', nan)], - names=['by', 'value2', 'value1']) -[right]: 6, MultiIndex([('key 1', 'value', nan), - ('key 1', nan, 'value'), - ('key 1', nan, nan), - ('key 2', 'value', nan), - ( nan, nan, 'value'), - ( nan, nan, nan)], - names=['by', 'value2', 'value1'])",failed -20025,tests.integ.modin.groupby.test_value_counts,test_value_counts_basic[False-None-True-True-False-by-test_data1],"AssertionError: Series are different +Attribute ""names"" are different +[left]: [None] +[right]: ['name']",failed +16663,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[False-keep-True-dense-None--1-0-NotImplementedError],Failed: DID NOT RAISE ,failed +16664,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_False-group_series_True-dropna_True-basic_snowpark_pandas_df-index_cols10-col3-None-indices],"AssertionError: Actual type is not the same as expected type , and instead is type . Actual value is {1.1: [5], 3.1: [0], 4.0: [4], 8.0: [1], 10.0: [3], 12.0: [2]}",failed +16665,tests.integ.modin.frame.test_rename,test_rename_str_upper_not_implemented,Failed: DID NOT RAISE ,failed +16667,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[False-keep-True-dense-group-0-1-NotImplementedError],Failed: DID NOT RAISE ,failed +16668,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_False-dropna_False-basic_snowpark_pandas_df_with_missing_values-col3-by3-None-indices],"AssertionError: Actual dict has the wrong key at position 0. Actual key (np.float64(0.0), np.float64(5.0)) is not equal to expected key (nan, 4.0). +Actual dict: {(np.float64(0.0), np.float64(5.0)): array([5]), (np.float64(0.0), np.float64(7.0)): array([3]), (np.float64(1.0), np.float64(5.0)): array([1]), (np.float64(1.0), np.float64(nan)): array([2]), (np.float64(nan), np.float64(4.0)): array([0, 4])} +Expected dict: {(nan, 4.0): array([0, 4]), (1.0, 5.0): array([1]), (1.0, nan): array([2]), (0.0, 7.0): array([3]), (0.0, 5.0): array([5])}",failed +16670,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[False-keep-True-first-group-0-0-NotImplementedError],Failed: DID NOT RAISE ,failed +16671,tests.integ.modin.groupby.test_groupby_resample,test_groupby_resample_multiple_by_cols[sum-5-h],AssertionError: Got type: ,failed +16673,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[False-keep-True-first-None--1-0-NotImplementedError],Failed: DID NOT RAISE ,failed +16674,tests.integ.modin.frame.test_rename,test_rename_multiindex_not_implemented,Failed: DID NOT RAISE ,failed +16675,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[False-keep-True-first-group-0-1-NotImplementedError],Failed: DID NOT RAISE ,failed +16677,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[False-keep-True-max-group-0-0-NotImplementedError],Failed: DID NOT RAISE ,failed +16678,tests.integ.modin.groupby.test_groupby_resample,test_groupby_resample_multiple_by_cols[sum-5-D],AssertionError: Got type: ,failed +16681,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_False-dropna_False-basic_snowpark_pandas_df_with_missing_values-index_cols4-col1-None-groups],ValueError: Categorical categories cannot be null,failed +16684,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[False-keep-True-max-None--1-0-NotImplementedError],Failed: DID NOT RAISE ,failed +16686,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[False-keep-True-max-group-0-1-NotImplementedError],Failed: DID NOT RAISE ,failed +16689,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_False-dropna_False-basic_snowpark_pandas_df_with_missing_values-index_cols4-col1-None-indices],"AssertionError: Actual dict has the wrong key at position 0. Actual key 0.0 is not equal to expected key nan. +Actual dict: {np.float64(0.0): array([3, 5]), np.float64(1.0): array([1, 2]), np.float64(nan): array([0, 4])} +Expected dict: {nan: array([0, 4]), 1.0: array([1, 2]), 0.0: array([3, 5])}",failed +16690,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[False-keep-True-average-group-0-0-NotImplementedError],Failed: DID NOT RAISE ,failed +16692,tests.integ.modin.groupby.test_groupby_resample,test_groupby_resample_multiple_by_cols[sum-15-s],AssertionError: Got type: ,failed +16693,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[False-keep-True-average-None--1-0-NotImplementedError],Failed: DID NOT RAISE ,failed +16696,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[False-keep-True-average-group-0-1-NotImplementedError],Failed: DID NOT RAISE ,failed +16697,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_False-dropna_False-basic_snowpark_pandas_df_with_missing_values-index_cols5-by5-None-groups],"AssertionError: Actual dict has the wrong key at position 1. Actual key (0.0, 5.0) is not equal to expected key (1.0, 5.0). +Actual dict: {(nan, 4.0): [(3.1, 17.0), (4.0, nan)], (0.0, 5.0): [(nan, nan)], (0.0, 7.0): [(10.0, 15.0)], (1.0, 5.0): [(8.0, 3.0)], (1.0, nan): [(12.0, 16.0)]} +Expected dict: {(nan, 4.0): [(3.1, 17.0), (4.0, nan)], (1.0, 5.0): [(8.0, 3.0)], (1.0, nan): [(12.0, 16.0)], (0.0, 7.0): [(10.0, 15.0)], (0.0, 5.0): [(nan, nan)]}",failed +16699,tests.integ.modin.frame.test_rename,test_rename_axis_style_not_implemented,Failed: DID NOT RAISE ,failed +16700,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[False-keep-False-min-group-0-0-NotImplementedError],Failed: DID NOT RAISE ,failed +16701,tests.integ.modin.frame.test_rename,test_rename_mapper_multi,Failed: DID NOT RAISE ,failed +16702,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_False-group_series_True-dropna_True-basic_snowpark_pandas_df-index_cols11-None-level11-groups],ValueError: Cannot remove 2 levels from an index with 2 levels: at least one level must be left.,failed +16703,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[False-keep-False-min-None--1-0-NotImplementedError],Failed: DID NOT RAISE ,failed +16704,tests.integ.modin.frame.test_rename,test_rename_positional_named,Failed: DID NOT RAISE ,failed +16705,tests.integ.modin.groupby.test_groupby_resample,test_groupby_resample_multiple_by_cols[sum-15-min],AssertionError: Got type: ,failed +16707,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_False-dropna_False-basic_snowpark_pandas_df_with_missing_values-index_cols5-by5-None-indices],"AssertionError: Actual dict has the wrong key at position 0. Actual key (np.float64(0.0), np.float64(5.0)) is not equal to expected key (nan, 4.0). +Actual dict: {(np.float64(0.0), np.float64(5.0)): array([5]), (np.float64(0.0), np.float64(7.0)): array([3]), (np.float64(1.0), np.float64(5.0)): array([1]), (np.float64(1.0), np.float64(nan)): array([2]), (np.float64(nan), np.float64(4.0)): array([0, 4])} +Expected dict: {(nan, 4.0): array([0, 4]), (1.0, 5.0): array([1]), (1.0, nan): array([2]), (0.0, 7.0): array([3]), (0.0, 5.0): array([5])}",failed +16708,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[False-keep-False-min-group-0-1-NotImplementedError],Failed: DID NOT RAISE ,failed +16711,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[False-keep-False-dense-group-0-0-NotImplementedError],Failed: DID NOT RAISE ,failed +16714,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_False-group_series_True-dropna_True-basic_snowpark_pandas_df-index_cols11-None-level11-indices],ValueError: Cannot remove 2 levels from an index with 2 levels: at least one level must be left.,failed +16716,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[False-keep-False-dense-None--1-0-NotImplementedError],Failed: DID NOT RAISE ,failed +16717,tests.integ.modin.groupby.test_groupby_resample,test_groupby_resample_multiple_by_cols[sum-15-h],AssertionError: Got type: ,failed +16721,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[False-keep-False-dense-group-0-1-NotImplementedError],Failed: DID NOT RAISE ,failed +16722,tests.integ.modin.frame.test_rename,test_rename_copy_warning,"AssertionError: assert 'The argument `copy` of `dataframe.rename` has been ignored by Snowpark pandas API' in '' + + where '' = <_pytest.logging.LogCaptureFixture object at 0x331c28dc0>.text",failed +16723,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[False-keep-False-first-group-0-0-NotImplementedError],Failed: DID NOT RAISE ,failed +16724,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_False-group_series_True-dropna_True-basic_snowpark_pandas_df-index_cols12-None-level12-groups],ValueError: Cannot remove 2 levels from an index with 2 levels: at least one level must be left.,failed +16727,tests.integ.modin.groupby.test_groupby_resample,test_groupby_resample_multiple_by_cols[sum-15-D],AssertionError: Got type: ,failed +16728,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[False-keep-False-first-None--1-0-NotImplementedError],Failed: DID NOT RAISE ,failed +16729,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_False-dropna_False-basic_snowpark_pandas_df_with_missing_values-col3-col3-None-groups],ValueError: Categorical categories cannot be null,failed +16730,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[False-keep-False-first-group-0-1-NotImplementedError],Failed: DID NOT RAISE ,failed +16731,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[False-keep-False-max-group-0-0-NotImplementedError],Failed: DID NOT RAISE ,failed +16732,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_False-group_series_True-dropna_True-basic_snowpark_pandas_df-index_cols12-None-level12-indices],ValueError: Cannot remove 2 levels from an index with 2 levels: at least one level must be left.,failed +16733,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_False-dropna_False-basic_snowpark_pandas_df_with_missing_values-col3-col3-None-indices],"AssertionError: Actual dict has the wrong key at position 1. Actual key 4.0 is not equal to expected key 8.0. +Actual dict: {np.float64(3.1): array([0]), np.float64(4.0): array([4]), np.float64(8.0): array([1]), np.float64(10.0): array([3]), np.float64(12.0): array([2]), np.float64(nan): array([5])} +Expected dict: {3.1: array([0]), 8.0: array([1]), 12.0: array([2]), 10.0: array([3]), 4.0: array([4]), nan: array([5])}",failed +16734,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[False-keep-False-max-None--1-0-NotImplementedError],Failed: DID NOT RAISE ,failed +16737,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[False-keep-False-max-group-0-1-NotImplementedError],Failed: DID NOT RAISE ,failed +16738,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[False-keep-False-average-group-0-0-NotImplementedError],Failed: DID NOT RAISE ,failed +16739,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_False-group_series_True-dropna_True-basic_snowpark_pandas_df_with_missing_values-None-col1-None-indices],"AssertionError: Actual type is not the same as expected type , and instead is type . Actual value is {0.0: [3, 5], 1.0: [1, 2]}",failed +16740,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[False-keep-False-average-None--1-0-NotImplementedError],Failed: DID NOT RAISE ,failed +16741,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[False-keep-False-average-group-0-1-NotImplementedError],Failed: DID NOT RAISE ,failed +16742,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_False-group_series_True-dropna_True-basic_snowpark_pandas_df_with_missing_values-None-by1-None-groups],"AssertionError: Actual and expected dicts have different lengths 5 and 3 respectively. +Actual dict: {(nan, 4.0): [0, 4], (0.0, 5.0): [5], (0.0, 7.0): [3], (1.0, 5.0): [1], (1.0, nan): [2]} +Expected dict: {(0.0, 5.0): [5], (0.0, 7.0): [3], (1.0, 5.0): [1]}",failed +16743,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[False-top-True-min-group-0-0-NotImplementedError],Failed: DID NOT RAISE ,failed +16745,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[False-top-True-min-None--1-0-NotImplementedError],Failed: DID NOT RAISE ,failed +16746,tests.integ.modin.groupby.test_groupby_resample,test_groupby_resample_week_to_year_negative[W],Failed: DID NOT RAISE ,failed +16748,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[False-top-True-min-group-0-1-NotImplementedError],Failed: DID NOT RAISE ,failed +16750,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[False-top-True-dense-group-0-0-NotImplementedError],Failed: DID NOT RAISE ,failed +16751,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[False-top-True-dense-None--1-0-NotImplementedError],Failed: DID NOT RAISE ,failed +16752,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_False-group_series_True-dropna_True-basic_snowpark_pandas_df_with_missing_values-col3-col1-None-indices],"AssertionError: Actual type is not the same as expected type , and instead is type . Actual value is {0.0: [3, 5], 1.0: [1, 2]}",failed +16753,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[False-top-True-dense-group-0-1-NotImplementedError],Failed: DID NOT RAISE ,failed +16754,tests.integ.modin.groupby.test_groupby_resample,test_groupby_resample_week_to_year_negative[ME],Failed: DID NOT RAISE ,failed +16755,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[False-top-True-first-group-0-0-NotImplementedError],Failed: DID NOT RAISE ,failed +16756,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_False-group_series_True-dropna_True-basic_snowpark_pandas_df_with_missing_values-col3-by3-None-groups],"AssertionError: Actual and expected dicts have different lengths 5 and 3 respectively. +Actual dict: {(nan, 4.0): [3.1, 4.0], (0.0, 5.0): [nan], (0.0, 7.0): [10.0], (1.0, 5.0): [8.0], (1.0, nan): [12.0]} +Expected dict: {(0.0, 5.0): [nan], (0.0, 7.0): [10.0], (1.0, 5.0): [8.0]}",failed +16757,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[False-top-True-first-None--1-0-NotImplementedError],Failed: DID NOT RAISE ,failed +16758,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_False-dropna_False-basic_snowpark_pandas_df_with_missing_values-col3-None-0-groups],ValueError: Categorical categories cannot be null,failed +16759,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[False-top-True-first-group-0-1-NotImplementedError],Failed: DID NOT RAISE ,failed +16760,tests.integ.modin.frame.test_merge,test_merge_left_on_right_on[inner-True-left_i-right_i],KeyError: 'right_i',failed +16762,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[False-top-True-max-group-0-0-NotImplementedError],Failed: DID NOT RAISE ,failed +16763,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[False-top-True-max-None--1-0-NotImplementedError],Failed: DID NOT RAISE ,failed +16765,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[False-top-True-max-group-0-1-NotImplementedError],Failed: DID NOT RAISE ,failed +16766,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_False-dropna_False-basic_snowpark_pandas_df_with_missing_values-col3-None-0-indices],"AssertionError: Actual dict has the wrong key at position 1. Actual key 4.0 is not equal to expected key 8.0. +Actual dict: {np.float64(3.1): array([0]), np.float64(4.0): array([4]), np.float64(8.0): array([1]), np.float64(10.0): array([3]), np.float64(12.0): array([2]), np.float64(nan): array([5])} +Expected dict: {3.1: array([0]), 8.0: array([1]), 12.0: array([2]), 10.0: array([3]), 4.0: array([4]), nan: array([5])}",failed +16767,tests.integ.modin.groupby.test_groupby_resample,test_groupby_resample_week_to_year_negative[YE],Failed: DID NOT RAISE ,failed +16768,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[False-top-True-average-group-0-0-NotImplementedError],Failed: DID NOT RAISE ,failed +16769,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_False-group_series_True-dropna_True-basic_snowpark_pandas_df_with_missing_values-index_cols4-col1-None-indices],"AssertionError: Actual type is not the same as expected type , and instead is type . Actual value is {0.0: [3, 5], 1.0: [1, 2]}",failed +16770,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[False-top-True-average-None--1-0-NotImplementedError],Failed: DID NOT RAISE ,failed +16771,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[False-top-True-average-group-0-1-NotImplementedError],Failed: DID NOT RAISE ,failed +16772,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_False-group_series_True-dropna_True-basic_snowpark_pandas_df_with_missing_values-index_cols5-by5-None-groups],"AssertionError: Actual and expected dicts have different lengths 5 and 3 respectively. +Actual dict: {(nan, 4.0): [(3.1, 17.0), (4.0, nan)], (0.0, 5.0): [(nan, nan)], (0.0, 7.0): [(10.0, 15.0)], (1.0, 5.0): [(8.0, 3.0)], (1.0, nan): [(12.0, 16.0)]} +Expected dict: {(0.0, 5.0): [(nan, nan)], (0.0, 7.0): [(10.0, 15.0)], (1.0, 5.0): [(8.0, 3.0)]}",failed +16773,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_False-dropna_False-basic_snowpark_pandas_df_with_missing_values-col3-None-col3-groups],ValueError: Categorical categories cannot be null,failed +16774,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[False-top-False-min-group-0-0-NotImplementedError],Failed: DID NOT RAISE ,failed +16776,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[False-top-False-min-None--1-0-NotImplementedError],Failed: DID NOT RAISE ,failed +16777,tests.integ.modin.frame.test_merge,test_merge_left_on_right_on[inner-True-left_i-A],KeyError: 'left_i',failed +16778,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[False-top-False-min-group-0-1-NotImplementedError],Failed: DID NOT RAISE ,failed +16779,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_False-dropna_False-basic_snowpark_pandas_df_with_missing_values-col3-None-col3-indices],"AssertionError: Actual dict has the wrong key at position 1. Actual key 4.0 is not equal to expected key 8.0. +Actual dict: {np.float64(3.1): array([0]), np.float64(4.0): array([4]), np.float64(8.0): array([1]), np.float64(10.0): array([3]), np.float64(12.0): array([2]), np.float64(nan): array([5])} +Expected dict: {3.1: array([0]), 8.0: array([1]), 12.0: array([2]), 10.0: array([3]), 4.0: array([4]), nan: array([5])}",failed +16781,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[False-top-False-dense-group-0-0-NotImplementedError],Failed: DID NOT RAISE ,failed +16782,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[False-top-False-dense-None--1-0-NotImplementedError],Failed: DID NOT RAISE ,failed +16784,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_False-group_series_True-dropna_True-basic_snowpark_pandas_df_with_missing_values-None-None-0-indices],"AssertionError: Actual type is not the same as expected type , and instead is type . Actual value is {0: [0], 1: [1], 2: [2], 3: [3], 4: [4], 5: [5]}",failed +16786,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[False-top-False-dense-group-0-1-NotImplementedError],Failed: DID NOT RAISE ,failed +16789,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_False-dropna_False-basic_snowpark_pandas_df_with_missing_values-index_cols10-col3-None-groups],ValueError: Categorical categories cannot be null,failed +16790,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[False-top-False-first-group-0-0-NotImplementedError],Failed: DID NOT RAISE ,failed +16793,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[False-top-False-first-None--1-0-NotImplementedError],Failed: DID NOT RAISE ,failed +16795,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_False-group_series_True-dropna_True-basic_snowpark_pandas_df_with_missing_values-col3-col3-None-indices],"AssertionError: Actual type is not the same as expected type , and instead is type . Actual value is {3.1: [0], 4.0: [4], 8.0: [1], 10.0: [3], 12.0: [2]}",failed +16796,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[False-top-False-first-group-0-1-NotImplementedError],Failed: DID NOT RAISE ,failed +16798,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_False-dropna_False-basic_snowpark_pandas_df_with_missing_values-index_cols10-col3-None-indices],"AssertionError: Actual dict has the wrong key at position 1. Actual key 4.0 is not equal to expected key 8.0. +Actual dict: {np.float64(3.1): array([0]), np.float64(4.0): array([4]), np.float64(8.0): array([1]), np.float64(10.0): array([3]), np.float64(12.0): array([2]), np.float64(nan): array([5])} +Expected dict: {3.1: array([0]), 8.0: array([1]), 12.0: array([2]), 10.0: array([3]), 4.0: array([4]), nan: array([5])}",failed +16799,tests.integ.modin.frame.test_merge,test_merge_left_on_right_on[inner-True-B-right_i],KeyError: 'right_i',failed +16802,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[False-top-False-max-group-0-0-NotImplementedError],Failed: DID NOT RAISE ,failed +16804,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[False-top-False-max-None--1-0-NotImplementedError],Failed: DID NOT RAISE ,failed +16806,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_False-group_series_True-dropna_True-basic_snowpark_pandas_df_with_missing_values-col3-None-0-indices],"AssertionError: Actual type is not the same as expected type , and instead is type . Actual value is {3.1: [0], 4.0: [4], 8.0: [1], 10.0: [3], 12.0: [2]}",failed +16807,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[False-top-False-max-group-0-1-NotImplementedError],Failed: DID NOT RAISE ,failed +16809,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_False-dropna_False-basic_snowpark_pandas_df_with_missing_values-index_cols11-None-level11-groups],ValueError: Cannot remove 2 levels from an index with 2 levels: at least one level must be left.,failed +16812,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[False-top-False-average-group-0-0-NotImplementedError],Failed: DID NOT RAISE ,failed +16814,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[False-top-False-average-None--1-0-NotImplementedError],Failed: DID NOT RAISE ,failed +16816,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_False-group_series_True-dropna_True-basic_snowpark_pandas_df_with_missing_values-col3-None-col3-indices],"AssertionError: Actual type is not the same as expected type , and instead is type . Actual value is {3.1: [0], 4.0: [4], 8.0: [1], 10.0: [3], 12.0: [2]}",failed +16818,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[False-top-False-average-group-0-1-NotImplementedError],Failed: DID NOT RAISE ,failed +16821,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_False-dropna_False-basic_snowpark_pandas_df_with_missing_values-index_cols11-None-level11-indices],ValueError: Cannot remove 2 levels from an index with 2 levels: at least one level must be left.,failed +16822,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[False-bottom-True-min-group-0-0-NotImplementedError],Failed: DID NOT RAISE ,failed +16824,tests.integ.modin.groupby.test_groupby_resample,test_resample_series_negative,KeyError: 'grp_col',failed +16826,tests.integ.modin.frame.test_merge,test_merge_left_on_right_on[inner-True-left_on9-right_on9],KeyError: 'right_i',failed +16827,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[False-bottom-True-min-None--1-0-NotImplementedError],Failed: DID NOT RAISE ,failed +16829,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_False-group_series_True-dropna_True-basic_snowpark_pandas_df_with_missing_values-index_cols10-col3-None-indices],"AssertionError: Actual type is not the same as expected type , and instead is type . Actual value is {3.1: [0], 4.0: [4], 8.0: [1], 10.0: [3], 12.0: [2]}",failed +16831,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[False-bottom-True-min-group-0-1-NotImplementedError],Failed: DID NOT RAISE ,failed +16833,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[False-bottom-True-dense-group-0-0-NotImplementedError],Failed: DID NOT RAISE ,failed +16835,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_False-dropna_False-basic_snowpark_pandas_df_with_missing_values-index_cols12-None-level12-groups],ValueError: Cannot remove 2 levels from an index with 2 levels: at least one level must be left.,failed +16837,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[False-bottom-True-dense-None--1-0-NotImplementedError],Failed: DID NOT RAISE ,failed +16839,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_False-group_series_True-dropna_True-basic_snowpark_pandas_df_with_missing_values-index_cols11-None-level11-groups],ValueError: Cannot remove 2 levels from an index with 2 levels: at least one level must be left.,failed +16840,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[False-bottom-True-dense-group-0-1-NotImplementedError],Failed: DID NOT RAISE ,failed +16842,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[False-bottom-True-first-group-0-0-NotImplementedError],Failed: DID NOT RAISE ,failed +16846,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[False-bottom-True-first-None--1-0-NotImplementedError],Failed: DID NOT RAISE ,failed +16847,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_False-as_index_False-group_series_False-dropna_False-basic_snowpark_pandas_df_with_missing_values-index_cols12-None-level12-indices],ValueError: Cannot remove 2 levels from an index with 2 levels: at least one level must be left.,failed +16849,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[False-bottom-True-first-group-0-1-NotImplementedError],Failed: DID NOT RAISE ,failed +16851,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_False-group_series_True-dropna_True-basic_snowpark_pandas_df_with_missing_values-index_cols11-None-level11-indices],ValueError: Cannot remove 2 levels from an index with 2 levels: at least one level must be left.,failed +16852,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[False-bottom-True-max-group-0-0-NotImplementedError],Failed: DID NOT RAISE ,failed +16854,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[False-bottom-True-max-None--1-0-NotImplementedError],Failed: DID NOT RAISE ,failed +16855,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices_column_name_conflicts_with_index_name[groups],AttributeError: 'numpy.int64' object has no attribute 'values',failed +16857,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[False-bottom-True-max-group-0-1-NotImplementedError],Failed: DID NOT RAISE ,failed +16860,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[False-bottom-True-average-group-0-0-NotImplementedError],Failed: DID NOT RAISE ,failed +16861,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices_column_name_conflicts_with_index_name[indices],AttributeError: 'numpy.int64' object has no attribute 'values',failed +16864,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_False-group_series_True-dropna_True-basic_snowpark_pandas_df_with_missing_values-index_cols12-None-level12-groups],ValueError: Cannot remove 2 levels from an index with 2 levels: at least one level must be left.,failed +16865,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[False-bottom-True-average-None--1-0-NotImplementedError],Failed: DID NOT RAISE ,failed +16869,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[False-bottom-True-average-group-0-1-NotImplementedError],Failed: DID NOT RAISE ,failed +16871,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[False-bottom-False-min-group-0-0-NotImplementedError],Failed: DID NOT RAISE ,failed +16874,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_False-group_series_True-dropna_True-basic_snowpark_pandas_df_with_missing_values-index_cols12-None-level12-indices],ValueError: Cannot remove 2 levels from an index with 2 levels: at least one level must be left.,failed +16875,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[False-bottom-False-min-None--1-0-NotImplementedError],Failed: DID NOT RAISE ,failed +16878,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[False-bottom-False-min-group-0-1-NotImplementedError],Failed: DID NOT RAISE ,failed +16882,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[False-bottom-False-dense-group-0-0-NotImplementedError],Failed: DID NOT RAISE ,failed +16885,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[False-bottom-False-dense-None--1-0-NotImplementedError],Failed: DID NOT RAISE ,failed +16888,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[False-bottom-False-dense-group-0-1-NotImplementedError],Failed: DID NOT RAISE ,failed +16891,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[False-bottom-False-first-group-0-0-NotImplementedError],Failed: DID NOT RAISE ,failed +16894,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[False-bottom-False-first-None--1-0-NotImplementedError],Failed: DID NOT RAISE ,failed +16897,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[False-bottom-False-first-group-0-1-NotImplementedError],Failed: DID NOT RAISE ,failed +16902,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[False-bottom-False-max-group-0-0-NotImplementedError],Failed: DID NOT RAISE ,failed +16905,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[False-bottom-False-max-None--1-0-NotImplementedError],Failed: DID NOT RAISE ,failed +16910,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[False-bottom-False-max-group-0-1-NotImplementedError],Failed: DID NOT RAISE ,failed +16913,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[False-bottom-False-average-group-0-0-NotImplementedError],Failed: DID NOT RAISE ,failed +16914,tests.integ.modin.frame.test_astype,test_astype_from_timestamp_ltz[float160],"AssertionError: Regex pattern did not match. + Regex: 'cannot be converted' + Input: 'Cannot cast DatetimeArray to dtype float16'",failed +16918,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[False-bottom-False-average-None--1-0-NotImplementedError],Failed: DID NOT RAISE ,failed +16921,tests.integ.modin.groupby.test_groupby_dataframe_rank,test_groupby_rank_negative[False-bottom-False-average-group-0-1-NotImplementedError],Failed: DID NOT RAISE ,failed +16927,tests.integ.modin.frame.test_replace,test_replace_method_negative,Failed: DID NOT RAISE ,failed +16930,tests.integ.modin.frame.test_replace,test_replace_limit_negative,Failed: DID NOT RAISE ,failed +16931,tests.integ.modin.frame.test_replace,test_replace_frame_with_timedelta_index_or_column_negative[pandas_df0],[XPASS(strict)] ,failed +16934,tests.integ.modin.frame.test_replace,test_replace_frame_with_timedelta_index_or_column_negative[pandas_df1],[XPASS(strict)] ,failed +16935,tests.integ.modin.frame.test_replace,test_replace_integer_value_with_timedelta_negative[to_replace_dict_with_pandas_timedelta],[XPASS(strict)] ,failed +16938,tests.integ.modin.frame.test_replace,test_replace_integer_value_with_timedelta_negative[to_replace_dict_with_numpy_timedelta],[XPASS(strict)] ,failed +16940,tests.integ.modin.frame.test_replace,test_replace_integer_value_with_timedelta_negative[to_replace_dict_with_datetime_timedelta],[XPASS(strict)] ,failed +16942,tests.integ.modin.frame.test_replace,test_replace_integer_value_with_timedelta_negative[value_timedelta_scalar],[XPASS(strict)] ,failed +16945,tests.integ.modin.frame.test_replace,test_replace_integer_value_with_timedelta_negative[value_timedelta_list],[XPASS(strict)] ,failed +16947,tests.integ.modin.frame.test_replace,test_replace_no_value_negative,Failed: DID NOT RAISE ,failed +16967,tests.integ.modin.groupby.test_groupby_resample,test_groupby_resample_by_a[max-1-s],AssertionError: Got type: ,failed +16979,tests.integ.modin.groupby.test_groupby_resample,test_groupby_resample_by_a[max-1-min],AssertionError: Got type: ,failed +16984,tests.integ.modin.groupby.test_groupby_basic_agg,test_single_group_row_groupby_with_variant[2-by_col_data1-expected_groupby_col1],TypeError: unhashable type: 'list',failed +16992,tests.integ.modin.frame.test_merge,test_merge_left_on_right_on[inner-False-left_i-right_i],KeyError: 'right_i',failed +16993,tests.integ.modin.groupby.test_groupby_resample,test_groupby_resample_by_a[max-1-h],AssertionError: Got type: ,failed +17005,tests.integ.modin.groupby.test_groupby_resample,test_groupby_resample_by_a[max-1-D],AssertionError: Got type: ,failed +17014,tests.integ.modin.groupby.test_groupby_resample,test_groupby_resample_by_a[max-3-s],AssertionError: Got type: ,failed +17016,tests.integ.modin.frame.test_merge,test_merge_left_on_right_on[inner-False-left_i-A],KeyError: 'left_i',failed +17023,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_False-group_series_True-dropna_False-basic_snowpark_pandas_df-index_cols11-None-level11-groups],ValueError: Cannot remove 2 levels from an index with 2 levels: at least one level must be left.,failed +17025,tests.integ.modin.groupby.test_groupby_resample,test_groupby_resample_by_a[max-3-min],AssertionError: Got type: ,failed +17032,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_False-group_series_True-dropna_False-basic_snowpark_pandas_df-index_cols11-None-level11-indices],ValueError: Cannot remove 2 levels from an index with 2 levels: at least one level must be left.,failed +17035,tests.integ.modin.groupby.test_groupby_resample,test_groupby_resample_by_a[max-3-h],AssertionError: Got type: ,failed +17042,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_False-group_series_True-dropna_False-basic_snowpark_pandas_df-index_cols12-None-level12-groups],ValueError: Cannot remove 2 levels from an index with 2 levels: at least one level must be left.,failed +17043,tests.integ.modin.frame.test_merge,test_merge_left_on_right_on[inner-False-B-right_i],KeyError: 'right_i',failed +17045,tests.integ.modin.groupby.test_groupby_resample,test_groupby_resample_by_a[max-3-D],AssertionError: Got type: ,failed +17051,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_False-group_series_True-dropna_False-basic_snowpark_pandas_df-index_cols12-None-level12-indices],ValueError: Cannot remove 2 levels from an index with 2 levels: at least one level must be left.,failed +17056,tests.integ.modin.groupby.test_groupby_resample,test_groupby_resample_by_a[max-5-s],AssertionError: Got type: ,failed +17062,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_False-group_series_True-dropna_False-basic_snowpark_pandas_df_with_missing_values-None-col1-None-groups],ValueError: Categorical categories cannot be null,failed +17071,tests.integ.modin.groupby.test_groupby_resample,test_groupby_resample_by_a[max-5-min],AssertionError: Got type: ,failed +17077,tests.integ.modin.groupby.test_groupby_property,test_groups_and_indices[sort_True-as_index_False-group_series_True-dropna_False-basic_snowpark_pandas_df_with_missing_values-None-by1-None-groups],"AssertionError: Actual dict has the wrong key at position 0. Actual key (nan, 4.0) is not equal to expected key (0.0, 5.0). +Actual dict: {(nan, 4.0): [0, 4], (0.0, 5.0): [5], (0.0, 7.0): [3], (1.0, 5.0): [1], (1.0, nan): [2]} +Expected dict: {(0.0, 5.0): [5], (0.0, 7.0): [3], (1.0, 5.0): [1], (1.0, nan): [2], (nan, 4.0): [0, 4]}",failed +17079,tests.integ.modin.frame.test_merge,test_merge_left_on_right_on[inner-False-left_on9-right_on9],KeyError: 'right_i',failed +17086,tests.integ.modin.groupby.test_groupby_resample,test_groupby_resample_by_a[max-5-h],AssertionError: Got type: ,failed +17095,tests.integ.modin.frame.test_repr,test_repr_html[native_df2-4],"AssertionError: assert '
\n\n
' == '
\n\n
' +
+