Commit 347b49d5 authored by Jason R. Coombs's avatar Jason R. Coombs

Skip test when MockServer can't detect the port to which it bound.

--HG--
branch : distribute
extra : rebase_source : c59caee49fcfb2e0d9b507fb1a01dfb2ddcdcdc8
parent 856ff28c
......@@ -275,6 +275,10 @@ class TestSetupRequires(unittest.TestCase):
p_index.start()
netloc = 1
p_index_loc = urlparse.urlparse(p_index.url)[netloc]
if p_index_loc.endswith(':0'):
# Some platforms (Jython) don't find a port to which to bind,
# so skip this test for them.
return
# I realize this is all-but-impossible to read, because it was
# ported from some well-factored, safe code using 'with'. If you
......
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