@@ -365,6 +365,7 @@ def test_python_docs_table(self):
365
365
assert sorted (zz ) == sorted (['Repo' , 'What' ])
366
366
367
367
@pytest .mark .slow
368
+ @pytest .mark .skip (reason = 'test data removed for copyright reasons' )
368
369
def test_thousands_macau_stats (self , datapath ):
369
370
all_non_nan_table_index = - 2
370
371
macau_data = datapath ("io" , "data" , "macau.html" )
@@ -375,6 +376,7 @@ def test_thousands_macau_stats(self, datapath):
375
376
assert not any (s .isna ().any () for _ , s in df .iteritems ())
376
377
377
378
@pytest .mark .slow
379
+ @pytest .mark .skip (reason = 'test data removed for copyright reasons' )
378
380
def test_thousands_macau_index_col (self , datapath ):
379
381
all_non_nan_table_index = - 2
380
382
macau_data = datapath ('io' , 'data' , 'macau.html' )
@@ -531,6 +533,7 @@ def test_countries_municipalities(self):
531
533
res2 = self .read_html (data2 , header = 0 )
532
534
assert_framelist_equal (res1 , res2 )
533
535
536
+ @pytest .mark .skip (reason = 'test data removed for copyright reasons' )
534
537
def test_nyse_wsj_commas_table (self , datapath ):
535
538
data = datapath ('io' , 'data' , 'nyse_wsj.html' )
536
539
df = self .read_html (data , index_col = 0 , header = 0 ,
@@ -671,6 +674,7 @@ def test_parse_dates_combine(self):
671
674
newdf = DataFrame ({'datetime' : raw_dates })
672
675
tm .assert_frame_equal (newdf , res [0 ])
673
676
677
+ @pytest .mark .skip (reason = 'test data removed for copyright reasons' )
674
678
def test_computer_sales_page (self , datapath ):
675
679
data = datapath ('io' , 'data' , 'computer_sales_page.html' )
676
680
with tm .assert_raises_regex (ParserError ,
0 commit comments