Furniture is not very reliable these days (buildbot failures).
diff --git a/Lib/test/test_robotparser.py b/Lib/test/test_robotparser.py
index cc8b390..86ebe9f 100644
--- a/Lib/test/test_robotparser.py
+++ b/Lib/test/test_robotparser.py
@@ -1,6 +1,7 @@
import io
import unittest
import urllib.robotparser
+from urllib.error import URLError
from test import support
class RobotTestCase(unittest.TestCase):
@@ -214,8 +215,11 @@
url = 'http://mueblesmoraleda.com'
parser = urllib.robotparser.RobotFileParser()
parser.set_url(url)
- parser.read()
- self.assertEqual(parser.can_fetch("*", url+"/robots.txt"), False)
+ try:
+ parser.read()
+ self.assertEqual(parser.can_fetch("*", url+"/robots.txt"), False)
+ except URLError:
+ self.skipTest('mueblesmoraleda.com is unavailable')
def testPythonOrg(self):
if not support.is_resource_enabled('network'):