diff options
author | Zachary Ware <zachary.ware@gmail.com> | 2017-10-08 06:31:23 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-10-08 06:31:23 (GMT) |
commit | 73ffd3f2036179ed54591ef0455e5ba5694ae5bd (patch) | |
tree | d2861fbcbb5116606bbeb76b18ca9b9342c9cc8b /Lib/test/test_xmlrpc_net.py | |
parent | 79ba471488b936abda5ba5234b1ea90cbc94cae6 (diff) | |
download | cpython-73ffd3f2036179ed54591ef0455e5ba5694ae5bd.zip cpython-73ffd3f2036179ed54591ef0455e5ba5694ae5bd.tar.gz cpython-73ffd3f2036179ed54591ef0455e5ba5694ae5bd.tar.bz2 |
bpo-31724: Skip test_xmlrpc_net (GH-3921)
With the upgrade of buildbot.python.org from Buildbot 0.8.x to 0.9.x,
the xmlrpc interface has been removed. This test is now skipped until
it can be rewritten to query a suitable substitute.
Diffstat (limited to 'Lib/test/test_xmlrpc_net.py')
-rw-r--r-- | Lib/test/test_xmlrpc_net.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Lib/test/test_xmlrpc_net.py b/Lib/test/test_xmlrpc_net.py index ae0a28e..f3652b8 100644 --- a/Lib/test/test_xmlrpc_net.py +++ b/Lib/test/test_xmlrpc_net.py @@ -4,6 +4,8 @@ from test import support import xmlrpc.client as xmlrpclib + +@unittest.skip('XXX: buildbot.python.org/all/xmlrpc/ is gone') class PythonBuildersTest(unittest.TestCase): def test_python_builders(self): |