diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2012-04-15 13:36:30 -0400 |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2012-04-15 13:36:30 -0400 |
commit | 9f2aec42c42499d265215db77cc0e242711e034b (patch) | |
tree | a0b85951c8910f91199cd56af88a9780e05022c9 | |
parent | 1e64c9a55bc6e7b4560966b95c831d6ee8276295 (diff) | |
download | external_python_setuptools-9f2aec42c42499d265215db77cc0e242711e034b.tar.gz external_python_setuptools-9f2aec42c42499d265215db77cc0e242711e034b.tar.bz2 external_python_setuptools-9f2aec42c42499d265215db77cc0e242711e034b.zip |
Skip another test that fails on Jython due to port 0 binding behavior.
--HG--
branch : distribute
extra : rebase_source : 7cd547b51b3db433b6f3040f01b1533065af3d96
-rw-r--r-- | setuptools/tests/test_packageindex.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/setuptools/tests/test_packageindex.py b/setuptools/tests/test_packageindex.py index 3a8808f7..1319547b 100644 --- a/setuptools/tests/test_packageindex.py +++ b/setuptools/tests/test_packageindex.py @@ -104,6 +104,10 @@ class TestPackageIndex(unittest.TestCase): is used -> Distribute should use the link from pypi, not the external one. """ + if sys.platform.startswith('java'): + # Skip this test on jython because binding to :0 fails + return + # start an index server server = IndexServer() server.start() |