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