diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2012-04-15 11:41:46 -0400 |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2012-04-15 11:41:46 -0400 |
commit | 347b49d545fbd9e8b2ef50f0778507fce84d2b19 (patch) | |
tree | c75efbafce75d14ef94c0062eb20f44f86e69d05 /setuptools/tests | |
parent | 856ff28c515c35ad35db6661d0b74579f59c3e4c (diff) | |
download | external_python_setuptools-347b49d545fbd9e8b2ef50f0778507fce84d2b19.tar.gz external_python_setuptools-347b49d545fbd9e8b2ef50f0778507fce84d2b19.tar.bz2 external_python_setuptools-347b49d545fbd9e8b2ef50f0778507fce84d2b19.zip |
Skip test when MockServer can't detect the port to which it bound.
--HG--
branch : distribute
extra : rebase_source : c59caee49fcfb2e0d9b507fb1a01dfb2ddcdcdc8
Diffstat (limited to 'setuptools/tests')
-rw-r--r-- | setuptools/tests/test_easy_install.py | 4 |
1 files changed, 4 insertions, 0 deletions
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 |