@@ -840,7 +840,7 @@ def test_append_preserve_index_name(self):
840
840
dt .datetime (2013 , 1 , 3 , 6 , 10 ),
841
841
dt .datetime (2013 , 1 , 3 , 7 , 12 )]),
842
842
pd .Index ([1 , 2 , 3 ]),
843
- ])
843
+ ], ids = lambda x : x . __class__ . __name__ )
844
844
def test_append_same_columns_type (self , df_columns ):
845
845
# GH18359
846
846
@@ -873,7 +873,7 @@ def test_append_same_columns_type(self, df_columns):
873
873
pd .DatetimeIndex ([dt .datetime (2013 , 1 , 3 , 0 , 0 ),
874
874
dt .datetime (2013 , 1 , 3 , 6 , 10 ),
875
875
dt .datetime (2013 , 1 , 3 , 7 , 12 )]),
876
- ], r = 2 ))
876
+ ], r = 2 ), ids = lambda x : x . __class__ . __name__ )
877
877
def test_append_different_columns_types (self , df_columns , series_index ):
878
878
# GH18359
879
879
# see also tests 'test_append_multi_index_raises' and
@@ -900,7 +900,7 @@ def test_append_different_columns_types(self, df_columns, series_index):
900
900
dt .datetime (2013 , 1 , 3 , 6 , 10 ),
901
901
dt .datetime (2013 , 1 , 3 , 7 , 12 )]),
902
902
pd .Index ([4 , 5 , 6 ]),
903
- ])
903
+ ], ids = lambda x : x . __class__ . __name__ )
904
904
def test_append_multi_index_raises (self , other_type ):
905
905
# GH18359
906
906
# .append will raise if MultiIndex appends or is appended to a
@@ -928,7 +928,7 @@ def test_append_multi_index_raises(self, other_type):
928
928
dt .datetime (2013 , 1 , 3 , 6 , 10 ),
929
929
dt .datetime (2013 , 1 , 3 , 7 , 12 )]),
930
930
pd .Index ([4 , 5 , 6 ]),
931
- ])
931
+ ], ids = lambda x : x . __class__ . __name__ )
932
932
def test_append_interval_index_raises (self , other_type ):
933
933
# GH18359
934
934
# .append will raise if IntervalIndex appends or is appended to a
0 commit comments