Blob Blame History Raw
##Skipping tests due to connection failures on Fedora build-system
##See https://github.com/PythonCharmers/python-future/issues/165 

--- tests/test_future/test_standard_library.orig.py	2014-11-21 12:52:03.000000000 +0100
+++ tests/test_future/test_standard_library.py	2015-09-02 11:37:36.808826777 +0200
@@ -333,6 +333,7 @@
         # pprint(r.read().decode('utf-8'))
         self.assertTrue(True)
 
+    @unittest.skip("ConnectionError: ('Connection aborted.', gaierror(-3, 'Temporary failure in name resolution'))...")
     def test_moves_urllib_request_http(self):
         """
         This site (python-future.org) uses plain http (as of 2014-09-23).
@@ -345,6 +345,7 @@
         data = r.read()
         self.assertTrue(b'</html>' in data)
 
+    @unittest.skip("ConnectionError: ('Connection aborted.', gaierror(-3, 'Temporary failure in name resolution'))...")
     def test_urllib_request_http(self):
         """
         This site (python-future.org) uses plain http (as of 2014-09-23).

--- tests/test_future/test_requests.orig.py	2014-11-21 12:52:03.000000000 +0100
+++ tests/test_future/test_requests.py	2015-09-02 11:39:01.509378296 +0200
@@ -57,6 +57,7 @@
     This class tests whether the requests module conflicts with the
     standard library import hooks, as in issue #19.
     """
+    @unittest.skip("ConnectionError: ('Connection aborted.', gaierror(-3, 'Temporary failure in name resolution'))...")
     def test_remove_hooks_then_requests(self):
         code = """
             from future import standard_library
@@ -79,6 +80,7 @@
             self.assertTrue(True)
 
 
+    @unittest.skip("ConnectionError: ('Connection aborted.', gaierror(-3, 'Temporary failure in name resolution'))...")
     def test_requests_cm(self):
         """
         Tests whether requests can be used importing standard_library modules