Blame SOURCES/future-skip_tests_with_connection_errors.patch

6d5dc0
##Skipping tests due to connection failures on Fedora build-system
6d5dc0
##See https://github.com/PythonCharmers/python-future/issues/165 
6d5dc0
6d5dc0
--- tests/test_future/test_standard_library.orig.py	2014-11-21 12:52:03.000000000 +0100
6d5dc0
+++ tests/test_future/test_standard_library.py	2015-09-02 11:37:36.808826777 +0200
6d5dc0
@@ -333,6 +333,7 @@
6d5dc0
         # pprint(r.read().decode('utf-8'))
6d5dc0
         self.assertTrue(True)
6d5dc0
 
6d5dc0
+    @unittest.skip("ConnectionError: ('Connection aborted.', gaierror(-3, 'Temporary failure in name resolution'))...")
6d5dc0
     def test_moves_urllib_request_http(self):
6d5dc0
         """
6d5dc0
         This site (python-future.org) uses plain http (as of 2014-09-23).
6d5dc0
@@ -345,6 +345,7 @@
6d5dc0
         data = r.read()
6d5dc0
         self.assertTrue(b'</html>' in data)
6d5dc0
 
6d5dc0
+    @unittest.skip("ConnectionError: ('Connection aborted.', gaierror(-3, 'Temporary failure in name resolution'))...")
6d5dc0
     def test_urllib_request_http(self):
6d5dc0
         """
6d5dc0
         This site (python-future.org) uses plain http (as of 2014-09-23).
6d5dc0
6d5dc0
--- tests/test_future/test_requests.orig.py	2014-11-21 12:52:03.000000000 +0100
6d5dc0
+++ tests/test_future/test_requests.py	2015-09-02 11:39:01.509378296 +0200
6d5dc0
@@ -57,6 +57,7 @@
6d5dc0
     This class tests whether the requests module conflicts with the
6d5dc0
     standard library import hooks, as in issue #19.
6d5dc0
     """
6d5dc0
+    @unittest.skip("ConnectionError: ('Connection aborted.', gaierror(-3, 'Temporary failure in name resolution'))...")
6d5dc0
     def test_remove_hooks_then_requests(self):
6d5dc0
         code = """
6d5dc0
             from future import standard_library
6d5dc0
@@ -79,6 +80,7 @@
6d5dc0
             self.assertTrue(True)
6d5dc0
 
6d5dc0
 
6d5dc0
+    @unittest.skip("ConnectionError: ('Connection aborted.', gaierror(-3, 'Temporary failure in name resolution'))...")
6d5dc0
     def test_requests_cm(self):
6d5dc0
         """
6d5dc0
         Tests whether requests can be used importing standard_library modules
6d5dc0