Commit 9a7cfa8b authored by Jason Madden's avatar Jason Madden

svb

parent 269ea5ab
...@@ -15,10 +15,10 @@ _version_info = namedtuple('version_info', ...@@ -15,10 +15,10 @@ _version_info = namedtuple('version_info',
#: The programatic version identifier. The fields have (roughly) the #: The programatic version identifier. The fields have (roughly) the
#: same meaning as :data:`sys.version_info` #: same meaning as :data:`sys.version_info`
version_info = _version_info(1, 1, 1, 'final', 0) version_info = _version_info(1, 1, 2, 'dev', 0)
#: The human-readable PEP 440 version identifier #: The human-readable PEP 440 version identifier
__version__ = '1.1.1' __version__ = '1.1.2.dev0'
__all__ = ['get_hub', __all__ = ['get_hub',
......
...@@ -363,6 +363,14 @@ if sys.version_info[:2] >= (3, 4): ...@@ -363,6 +363,14 @@ if sys.version_info[:2] >= (3, 4):
# but fails under Travis # but fails under Travis
] ]
if os.environ.get('GEVENT_RESOLVER') == 'ares':
disabled_tests += [
# These raise different errors or can't resolve
# the IP address correctly
'test_socket.GeneralModuleTests.test_host_resolution',
'test_socket.GeneralModuleTests.test_getnameinfo',
]
if sys.version_info[:2] >= (3, 5): if sys.version_info[:2] >= (3, 5):
disabled_tests += [ disabled_tests += [
# XXX: Hangs # XXX: Hangs
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment