@@ -339,26 +339,33 @@ def test_setitem_index_float64(self, val, exp_dtype, request):
339
339
exp_index = pd .Index ([1.1 , 2.1 , 3.1 , 4.1 , val ])
340
340
self ._assert_setitem_index_conversion (obj , val , exp_index , exp_dtype )
341
341
342
+ @pytest .mark .xfail (reason = "Test not implemented" )
342
343
def test_setitem_series_period (self ):
343
- pytest . xfail ( "Test not implemented" )
344
+ raise NotImplementedError
344
345
346
+ @pytest .mark .xfail (reason = "Test not implemented" )
345
347
def test_setitem_index_complex128 (self ):
346
- pytest . xfail ( "Test not implemented" )
348
+ raise NotImplementedError
347
349
350
+ @pytest .mark .xfail (reason = "Test not implemented" )
348
351
def test_setitem_index_bool (self ):
349
- pytest . xfail ( "Test not implemented" )
352
+ raise NotImplementedError
350
353
354
+ @pytest .mark .xfail (reason = "Test not implemented" )
351
355
def test_setitem_index_datetime64 (self ):
352
- pytest . xfail ( "Test not implemented" )
356
+ raise NotImplementedError
353
357
358
+ @pytest .mark .xfail (reason = "Test not implemented" )
354
359
def test_setitem_index_datetime64tz (self ):
355
- pytest . xfail ( "Test not implemented" )
360
+ raise NotImplementedError
356
361
362
+ @pytest .mark .xfail (reason = "Test not implemented" )
357
363
def test_setitem_index_timedelta64 (self ):
358
- pytest . xfail ( "Test not implemented" )
364
+ raise NotImplementedError
359
365
366
+ @pytest .mark .xfail (reason = "Test not implemented" )
360
367
def test_setitem_index_period (self ):
361
- pytest . xfail ( "Test not implemented" )
368
+ raise NotImplementedError
362
369
363
370
364
371
class TestInsertIndexCoercion (CoercionBase ):
@@ -511,11 +518,13 @@ def test_insert_index_period(self, insert, coerced_val, coerced_dtype):
511
518
# passing keywords to pd.Index
512
519
pd .Index (data , freq = "M" )
513
520
521
+ @pytest .mark .xfail (reason = "Test not implemented" )
514
522
def test_insert_index_complex128 (self ):
515
- pytest . xfail ( "Test not implemented" )
523
+ raise NotImplementedError
516
524
525
+ @pytest .mark .xfail (reason = "Test not implemented" )
517
526
def test_insert_index_bool (self ):
518
- pytest . xfail ( "Test not implemented" )
527
+ raise NotImplementedError
519
528
520
529
521
530
class TestWhereCoercion (CoercionBase ):
@@ -760,17 +769,21 @@ def test_where_index_datetime64tz(self):
760
769
761
770
self ._assert_where_conversion (obj , cond , values , exp , exp_dtype )
762
771
772
+ @pytest .mark .xfail (reason = "Test not implemented" )
763
773
def test_where_index_complex128 (self ):
764
- pytest . xfail ( "Test not implemented" )
774
+ raise NotImplementedError
765
775
776
+ @pytest .mark .xfail (reason = "Test not implemented" )
766
777
def test_where_index_bool (self ):
767
- pytest . xfail ( "Test not implemented" )
778
+ raise NotImplementedError
768
779
780
+ @pytest .mark .xfail (reason = "Test not implemented" )
769
781
def test_where_series_timedelta64 (self ):
770
- pytest . xfail ( "Test not implemented" )
782
+ raise NotImplementedError
771
783
784
+ @pytest .mark .xfail (reason = "Test not implemented" )
772
785
def test_where_series_period (self ):
773
- pytest . xfail ( "Test not implemented" )
786
+ raise NotImplementedError
774
787
775
788
@pytest .mark .parametrize (
776
789
"value" , [pd .Timedelta (days = 9 ), timedelta (days = 9 ), np .timedelta64 (9 , "D" )]
@@ -822,8 +835,9 @@ class TestFillnaSeriesCoercion(CoercionBase):
822
835
823
836
method = "fillna"
824
837
838
+ @pytest .mark .xfail (reason = "Test not implemented" )
825
839
def test_has_comprehensive_tests (self ):
826
- pytest . xfail ( "Test not implemented" )
840
+ raise NotImplementedError
827
841
828
842
def _assert_fillna_conversion (self , original , value , expected , expected_dtype ):
829
843
""" test coercion triggered by fillna """
@@ -942,29 +956,37 @@ def test_fillna_datetime64tz(self, index_or_series, fill_val, fill_dtype):
942
956
)
943
957
self ._assert_fillna_conversion (obj , fill_val , exp , fill_dtype )
944
958
959
+ @pytest .mark .xfail (reason = "Test not implemented" )
945
960
def test_fillna_series_int64 (self ):
946
- pytest . xfail ( "Test not implemented" )
961
+ raise NotImplementedError
947
962
963
+ @pytest .mark .xfail (reason = "Test not implemented" )
948
964
def test_fillna_index_int64 (self ):
949
- pytest . xfail ( "Test not implemented" )
965
+ raise NotImplementedError
950
966
967
+ @pytest .mark .xfail (reason = "Test not implemented" )
951
968
def test_fillna_series_bool (self ):
952
- pytest . xfail ( "Test not implemented" )
969
+ raise NotImplementedError
953
970
971
+ @pytest .mark .xfail (reason = "Test not implemented" )
954
972
def test_fillna_index_bool (self ):
955
- pytest . xfail ( "Test not implemented" )
973
+ raise NotImplementedError
956
974
975
+ @pytest .mark .xfail (reason = "Test not implemented" )
957
976
def test_fillna_series_timedelta64 (self ):
958
- pytest . xfail ( "Test not implemented" )
977
+ raise NotImplementedError
959
978
979
+ @pytest .mark .xfail (reason = "Test not implemented" )
960
980
def test_fillna_series_period (self ):
961
- pytest . xfail ( "Test not implemented" )
981
+ raise NotImplementedError
962
982
983
+ @pytest .mark .xfail (reason = "Test not implemented" )
963
984
def test_fillna_index_timedelta64 (self ):
964
- pytest . xfail ( "Test not implemented" )
985
+ raise NotImplementedError
965
986
987
+ @pytest .mark .xfail (reason = "Test not implemented" )
966
988
def test_fillna_index_period (self ):
967
- pytest . xfail ( "Test not implemented" )
989
+ raise NotImplementedError
968
990
969
991
970
992
class TestReplaceSeriesCoercion (CoercionBase ):
@@ -1120,5 +1142,6 @@ def test_replace_series_datetime_datetime(self, how, to_key, from_key):
1120
1142
1121
1143
tm .assert_series_equal (result , exp )
1122
1144
1145
+ @pytest .mark .xfail (reason = "Test not implemented" )
1123
1146
def test_replace_series_period (self ):
1124
- pytest . xfail ( "Test not implemented" )
1147
+ raise NotImplementedError
0 commit comments