@@ -5251,7 +5251,9 @@ def test_hist(self):
5251
5251
self .assertPlotsEqual (tbl .hist ()[3 ][2 ], df .hist ()[3 ][2 ])
5252
5252
5253
5253
except Exception as msg :
5254
- if isinstance (msg , ImportError ) or type (msg ).__name__ in ['TclError' ]:
5254
+ if isinstance (msg , ImportError ) or \
5255
+ type (msg ).__name__ in ['TclError' ] or \
5256
+ 'rowNum' in ('%s' % msg ):
5255
5257
tm .TestCase .skipTest (self , '%s' % msg )
5256
5258
raise
5257
5259
@@ -5268,7 +5270,8 @@ def test_boxplot(self):
5268
5270
except Exception as msg :
5269
5271
if isinstance (msg , ImportError ) or \
5270
5272
type (msg ).__name__ in ['TclError' ] or \
5271
- 'FixedLocator' in ('%s' % msg ):
5273
+ 'FixedLocator' in ('%s' % msg ) or \
5274
+ 'rowNum' in ('%s' % msg ):
5272
5275
tm .TestCase .skipTest (self , '%s' % msg )
5273
5276
raise
5274
5277
@@ -5316,7 +5319,9 @@ def test_plot(self):
5316
5319
)
5317
5320
5318
5321
except Exception as msg :
5319
- if isinstance (msg , ImportError ) or type (msg ).__name__ in ['TclError' ]:
5322
+ if isinstance (msg , ImportError ) or \
5323
+ type (msg ).__name__ in ['TclError' ] or \
5324
+ 'rowNum' in ('%s' % msg ):
5320
5325
tm .TestCase .skipTest (self , '%s' % msg )
5321
5326
raise
5322
5327
@@ -5332,7 +5337,9 @@ def test_plot_sampling(self):
5332
5337
)
5333
5338
5334
5339
except Exception as msg :
5335
- if isinstance (msg , ImportError ) or type (msg ).__name__ in ['TclError' ]:
5340
+ if isinstance (msg , ImportError ) or \
5341
+ type (msg ).__name__ in ['TclError' ] or \
5342
+ 'rowNum' in ('%s' % msg ):
5336
5343
tm .TestCase .skipTest (self , '%s' % msg )
5337
5344
raise
5338
5345
@@ -5349,7 +5356,9 @@ def test_plot_area(self):
5349
5356
)
5350
5357
5351
5358
except Exception as msg :
5352
- if isinstance (msg , ImportError ) or type (msg ).__name__ in ['TclError' ]:
5359
+ if isinstance (msg , ImportError ) or \
5360
+ type (msg ).__name__ in ['TclError' ] or \
5361
+ 'rowNum' in ('%s' % msg ):
5353
5362
tm .TestCase .skipTest (self , '%s' % msg )
5354
5363
raise
5355
5364
@@ -5364,7 +5373,9 @@ def test_plot_bar(self):
5364
5373
)
5365
5374
5366
5375
except Exception as msg :
5367
- if isinstance (msg , ImportError ) or type (msg ).__name__ in ['TclError' ]:
5376
+ if isinstance (msg , ImportError ) or \
5377
+ type (msg ).__name__ in ['TclError' ] or \
5378
+ 'rowNum' in ('%s' % msg ):
5368
5379
tm .TestCase .skipTest (self , '%s' % msg )
5369
5380
raise
5370
5381
@@ -5379,7 +5390,9 @@ def test_plot_barh(self):
5379
5390
)
5380
5391
5381
5392
except Exception as msg :
5382
- if isinstance (msg , ImportError ) or type (msg ).__name__ in ['TclError' ]:
5393
+ if isinstance (msg , ImportError ) or \
5394
+ type (msg ).__name__ in ['TclError' ] or \
5395
+ 'rowNum' in ('%s' % msg ):
5383
5396
tm .TestCase .skipTest (self , '%s' % msg )
5384
5397
raise
5385
5398
@@ -5394,7 +5407,9 @@ def test_plot_box(self):
5394
5407
)
5395
5408
5396
5409
except Exception as msg :
5397
- if isinstance (msg , ImportError ) or type (msg ).__name__ in ['TclError' ]:
5410
+ if isinstance (msg , ImportError ) or \
5411
+ type (msg ).__name__ in ['TclError' ] or \
5412
+ 'rowNum' in ('%s' % msg ):
5398
5413
tm .TestCase .skipTest (self , '%s' % msg )
5399
5414
raise
5400
5415
@@ -5409,7 +5424,9 @@ def test_plot_density(self):
5409
5424
)
5410
5425
5411
5426
except Exception as msg :
5412
- if isinstance (msg , ImportError ) or type (msg ).__name__ in ['TclError' ]:
5427
+ if isinstance (msg , ImportError ) or \
5428
+ type (msg ).__name__ in ['TclError' ] or \
5429
+ 'rowNum' in ('%s' % msg ):
5413
5430
tm .TestCase .skipTest (self , '%s' % msg )
5414
5431
raise
5415
5432
@@ -5424,7 +5441,9 @@ def test_plot_hexbin(self):
5424
5441
)
5425
5442
5426
5443
except Exception as msg :
5427
- if isinstance (msg , ImportError ) or type (msg ).__name__ in ['TclError' ]:
5444
+ if isinstance (msg , ImportError ) or \
5445
+ type (msg ).__name__ in ['TclError' ] or \
5446
+ 'rowNum' in ('%s' % msg ):
5428
5447
tm .TestCase .skipTest (self , '%s' % msg )
5429
5448
raise
5430
5449
@@ -5439,7 +5458,9 @@ def test_plot_hist(self):
5439
5458
)
5440
5459
5441
5460
except Exception as msg :
5442
- if isinstance (msg , ImportError ) or type (msg ).__name__ in ['TclError' ]:
5461
+ if isinstance (msg , ImportError ) or \
5462
+ type (msg ).__name__ in ['TclError' ] or \
5463
+ 'rowNum' in ('%s' % msg ):
5443
5464
tm .TestCase .skipTest (self , '%s' % msg )
5444
5465
raise
5445
5466
@@ -5454,7 +5475,9 @@ def test_plot_kde(self):
5454
5475
)
5455
5476
5456
5477
except Exception as msg :
5457
- if isinstance (msg , ImportError ) or type (msg ).__name__ in ['TclError' ]:
5478
+ if isinstance (msg , ImportError ) or \
5479
+ type (msg ).__name__ in ['TclError' ] or \
5480
+ 'rowNum' in ('%s' % msg ):
5458
5481
tm .TestCase .skipTest (self , '%s' % msg )
5459
5482
raise
5460
5483
@@ -5469,7 +5492,9 @@ def test_plot_line(self):
5469
5492
)
5470
5493
5471
5494
except Exception as msg :
5472
- if isinstance (msg , ImportError ) or type (msg ).__name__ in ['TclError' ]:
5495
+ if isinstance (msg , ImportError ) or \
5496
+ type (msg ).__name__ in ['TclError' ] or \
5497
+ 'rowNum' in ('%s' % msg ):
5473
5498
tm .TestCase .skipTest (self , '%s' % msg )
5474
5499
raise
5475
5500
@@ -5484,7 +5509,9 @@ def test_plot_pie(self):
5484
5509
)
5485
5510
5486
5511
except Exception as msg :
5487
- if isinstance (msg , ImportError ) or type (msg ).__name__ in ['TclError' ]:
5512
+ if isinstance (msg , ImportError ) or \
5513
+ type (msg ).__name__ in ['TclError' ] or \
5514
+ 'rowNum' in ('%s' % msg ):
5488
5515
tm .TestCase .skipTest (self , '%s' % msg )
5489
5516
raise
5490
5517
@@ -5499,7 +5526,9 @@ def test_plot_scatter(self):
5499
5526
)
5500
5527
5501
5528
except Exception as msg :
5502
- if isinstance (msg , ImportError ) or type (msg ).__name__ in ['TclError' ]:
5529
+ if isinstance (msg , ImportError ) or \
5530
+ type (msg ).__name__ in ['TclError' ] or \
5531
+ 'rowNum' in ('%s' % msg ):
5503
5532
tm .TestCase .skipTest (self , '%s' % msg )
5504
5533
raise
5505
5534
0 commit comments