diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2017-10-08 06:52:08 (GMT) |
---|---|---|
committer | Zachary Ware <zachary.ware@gmail.com> | 2017-10-08 06:52:07 (GMT) |
commit | d13a4e50679c0861971cfae2bb226f35b8bf5142 (patch) | |
tree | 98855f3f789a7cb615895ed0e8bf6ba2de824a31 | |
parent | cae6e4775b37c412609d3a0d303c0831ff0012ff (diff) | |
download | cpython-d13a4e50679c0861971cfae2bb226f35b8bf5142.zip cpython-d13a4e50679c0861971cfae2bb226f35b8bf5142.tar.gz cpython-d13a4e50679c0861971cfae2bb226f35b8bf5142.tar.bz2 |
[3.6] bpo-31724: Skip test_xmlrpc_net (GH-3922)
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.
(cherry picked from commit 73ffd3f2036179ed54591ef0455e5ba5694ae5bd)
-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): |