From 347b49d545fbd9e8b2ef50f0778507fce84d2b19 Mon Sep 17 00:00:00 2001 From: "Jason R. Coombs" Date: Sun, 15 Apr 2012 11:41:46 -0400 Subject: Skip test when MockServer can't detect the port to which it bound. --HG-- branch : distribute extra : rebase_source : c59caee49fcfb2e0d9b507fb1a01dfb2ddcdcdc8 --- setuptools/tests/test_easy_install.py | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'setuptools/tests') diff --git a/setuptools/tests/test_easy_install.py b/setuptools/tests/test_easy_install.py index cf2f91d6..6fd45e8b 100644 --- a/setuptools/tests/test_easy_install.py +++ b/setuptools/tests/test_easy_install.py @@ -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 -- cgit v1.2.3