Skip to content

Commit a3c4b59

Browse files
committed
TST: pythonxs link seems to have changed in test_html.py, skip tests
1 parent b55ca5c commit a3c4b59

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

pandas/io/tests/test_html.py

+4
Original file line numberDiff line numberDiff line change
@@ -358,12 +358,16 @@ def test_negative_skiprows(self):
358358

359359
@network
360360
def test_multiple_matches(self):
361+
raise nose.SkipTest("pythonxy link seems to have changed")
362+
361363
url = 'http://code.google.com/p/pythonxy/wiki/StandardPlugins'
362364
dfs = self.read_html(url, match='Python', attrs={'class': 'wikitable'})
363365
self.assertTrue(len(dfs) > 1)
364366

365367
@network
366368
def test_pythonxy_plugins_table(self):
369+
raise nose.SkipTest("pythonxy link seems to have changed")
370+
367371
url = 'http://code.google.com/p/pythonxy/wiki/StandardPlugins'
368372
dfs = self.read_html(url, match='Python', attrs={'class': 'wikitable'})
369373
zz = [df.iloc[0, 0] for df in dfs]

0 commit comments

Comments
 (0)