@@ -1401,6 +1401,9 @@ def test_where_with_int_data(self):
1401
1401
tm .assert_series_equal (result , dense_expected )
1402
1402
tm .assert_sp_series_equal (result , sparse_expected )
1403
1403
1404
+ @pytest .mark .skip (reason = 'Wrong SparseBlock initialization '
1405
+ '(Segfault) '
1406
+ '(GH 17386)' )
1404
1407
def test_where_with_int_data_and_int_other (self ):
1405
1408
# GH 17386
1406
1409
data = [1 , 1 , 2 , 2 , 3 , 3 , 4 , 4 , 0 , 0 ]
@@ -1417,6 +1420,9 @@ def test_where_with_int_data_and_int_other(self):
1417
1420
tm .assert_series_equal (result , dense_expected )
1418
1421
tm .assert_sp_series_equal (result , sparse_expected )
1419
1422
1423
+ @pytest .mark .skip (reason = 'Wrong SparseBlock initialization '
1424
+ '(Segfault) '
1425
+ '(GH 17386)' )
1420
1426
def test_where_with_int_data_and_float_other (self ):
1421
1427
# GH 17386
1422
1428
data = [1 , 1 , 2 , 2 , 3 , 3 , 4 , 4 , 0 , 0 ]
@@ -1433,6 +1439,9 @@ def test_where_with_int_data_and_float_other(self):
1433
1439
tm .assert_series_equal (result , dense_expected )
1434
1440
tm .assert_sp_series_equal (result , sparse_expected )
1435
1441
1442
+ @pytest .mark .skip (reason = 'Wrong SparseBlock initialization '
1443
+ '(Segfault) '
1444
+ '(GH 17386)' )
1436
1445
def test_where_with_int_data_and_complex_other (self ):
1437
1446
# GH 17386
1438
1447
data = [1 , 1 , 2 , 2 , 3 , 3 , 4 , 4 , 0 , 0 ]
@@ -1502,6 +1511,9 @@ def test_where_with_float_data_and_int_other(self):
1502
1511
tm .assert_series_equal (result , dense_expected )
1503
1512
tm .assert_sp_series_equal (result , sparse_expected )
1504
1513
1514
+ @pytest .mark .skip (reason = 'Wrong SparseBlock initialization '
1515
+ '(Segfault) '
1516
+ '(GH 17386)' )
1505
1517
def test_where_with_float_data_and_float_other (self ):
1506
1518
# GH 17386
1507
1519
data = [1.0 , 1.0 , 2.0 , 2.0 , 3.0 , 3.0 , 4.0 , 4.0 , nan , nan ]
@@ -1518,6 +1530,9 @@ def test_where_with_float_data_and_float_other(self):
1518
1530
tm .assert_series_equal (result , dense_expected )
1519
1531
tm .assert_sp_series_equal (result , sparse_expected )
1520
1532
1533
+ @pytest .mark .skip (reason = 'Wrong SparseBlock initialization '
1534
+ '(Segfault) '
1535
+ '(GH 17386)' )
1521
1536
def test_where_with_float_data_and_complex_other (self ):
1522
1537
# GH 17386
1523
1538
data = [1.0 , 1.0 , 2.0 , 2.0 , 3.0 , 3.0 , 4.0 , 4.0 , nan , nan ]
@@ -1595,6 +1610,9 @@ def test_where_with_complex_data_and_int_other(self):
1595
1610
tm .assert_series_equal (result , dense_expected )
1596
1611
tm .assert_sp_series_equal (result , sparse_expected )
1597
1612
1613
+ @pytest .mark .skip (reason = 'Wrong SparseBlock initialization '
1614
+ '(Segfault) '
1615
+ '(GH 17386)' )
1598
1616
def test_where_with_complex_data_and_float_other (self ):
1599
1617
# GH 17386
1600
1618
data = [1.0 , 1.0 + 1.0j ,
@@ -1615,6 +1633,9 @@ def test_where_with_complex_data_and_float_other(self):
1615
1633
tm .assert_series_equal (result , dense_expected )
1616
1634
tm .assert_sp_series_equal (result , sparse_expected )
1617
1635
1636
+ @pytest .mark .skip (reason = 'Wrong SparseBlock initialization '
1637
+ '(Segfault) '
1638
+ '(GH 17386)' )
1618
1639
def test_where_with_complex_data_and_complex_other (self ):
1619
1640
# GH 17386
1620
1641
data = [1.0 , 1.0 + 1.0j ,
0 commit comments