@@ -127,10 +127,7 @@ def test_ndframe_tests(self):
127
127
'pandas.core.generic.NDFrame.copy' : ['*' ],
128
128
'pandas.core.generic.NDFrame.droplevel' : ['*' ],
129
129
'pandas.core.generic.NDFrame.get' : ['*' ],
130
- 'pandas.core.generic.NDFrame.rank' : [
131
- # Modified dataframe
132
- 'df'
133
- ],
130
+ 'pandas.core.generic.NDFrame.rank' : ['*' ],
134
131
'pandas.core.generic.NDFrame.rename' : [
135
132
# Seems to be an upstream bug. The actual error has a different
136
133
# message:
@@ -704,8 +701,11 @@ def test_groupby_tests(self):
704
701
result = doctests .testmod (
705
702
pd .core .groupby .groupby ,
706
703
use_beam = False ,
704
+ verbose = True ,
707
705
wont_implement_ok = {
706
+ 'pandas.core.groupby.groupby.GroupBy.first' : ['*' ],
708
707
'pandas.core.groupby.groupby.GroupBy.head' : ['*' ],
708
+ 'pandas.core.groupby.groupby.GroupBy.last' : ['*' ],
709
709
'pandas.core.groupby.groupby.GroupBy.tail' : ['*' ],
710
710
'pandas.core.groupby.groupby.GroupBy.nth' : ['*' ],
711
711
'pandas.core.groupby.groupby.GroupBy.cumcount' : ['*' ],
@@ -831,6 +831,7 @@ def test_top_level(self):
831
831
'crosstab' : ['*' ],
832
832
'cut' : ['*' ],
833
833
'eval' : ['*' ],
834
+ 'from_dummies' : ['*' ],
834
835
'get_dummies' : ['*' ],
835
836
'infer_freq' : ['*' ],
836
837
'lreshape' : ['*' ],
@@ -863,7 +864,7 @@ def test_top_level(self):
863
864
},
864
865
skip = {
865
866
# error formatting
866
- 'concat' : ['pd.concat([df5, df6], verify_integrity=True)' ],
867
+ 'concat' : ['pd.concat([df5, df6], verify_integrity=True)' , 'pd.concat([df7, new_row.to_frame().T], ignore_index=True)' ],
867
868
# doctest DeprecationWarning
868
869
'melt' : ['df' ],
869
870
# Order-sensitive re-indexing.
0 commit comments