Skip to content

test_xmlrpc_net should use something other than buildbot.python.org #75905

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
zware opened this issue Oct 8, 2017 · 7 comments
Closed

test_xmlrpc_net should use something other than buildbot.python.org #75905

zware opened this issue Oct 8, 2017 · 7 comments
Labels
3.9 only security fixes 3.10 only security fixes 3.11 only security fixes tests Tests in the Lib/test dir

Comments

@zware
Copy link
Member

zware commented Oct 8, 2017

BPO 31724
Nosy @loewis, @zware, @iritkatriel
PRs
  • bpo-31724: Skip test_xmlrpc_net #3921
  • [3.6] bpo-31724: Skip test_xmlrpc_net (GH-3921) #3922
  • Note: these values reflect the state of the issue at the time it was migrated and might not reflect the current state.

    Show more details

    GitHub fields:

    assignee = None
    closed_at = None
    created_at = <Date 2017-10-08.05:44:01.243>
    labels = ['tests', '3.9', '3.10', '3.11']
    title = 'test_xmlrpc_net should use something other than buildbot.python.org'
    updated_at = <Date 2021-08-01.21:47:55.945>
    user = 'https://github.com/zware'

    bugs.python.org fields:

    activity = <Date 2021-08-01.21:47:55.945>
    actor = 'iritkatriel'
    assignee = 'none'
    closed = False
    closed_date = None
    closer = None
    components = ['Tests']
    creation = <Date 2017-10-08.05:44:01.243>
    creator = 'zach.ware'
    dependencies = []
    files = []
    hgrepos = []
    issue_num = 31724
    keywords = []
    message_count = 5.0
    messages = ['303894', '303895', '303896', '303897', '398721']
    nosy_count = 3.0
    nosy_names = ['loewis', 'zach.ware', 'iritkatriel']
    pr_nums = ['3921', '3922']
    priority = 'normal'
    resolution = None
    stage = 'needs patch'
    status = 'open'
    superseder = None
    type = None
    url = 'https://bugs.python.org/issue31724'
    versions = ['Python 3.9', 'Python 3.10', 'Python 3.11']

    Linked PRs

    @zware
    Copy link
    Member Author

    zware commented Oct 8, 2017

    With the upgrade to buildbot 0.9, the xmlrpc interface to buildbot.python.org is removed, causing test_xmlrpc to fail. The test should hit a different host, possibly on pythontest.net?

    @zware zware added 3.7 (EOL) end of life tests Tests in the Lib/test dir labels Oct 8, 2017
    @zware zware changed the title test_xmlrpc should use something other than buildbot.python.org test_xmlrpc_net should use something other than buildbot.python.org Oct 8, 2017
    @zware
    Copy link
    Member Author

    zware commented Oct 8, 2017

    New changeset 73ffd3f by Zachary Ware in branch 'master':
    bpo-31724: Skip test_xmlrpc_net (GH-3921)
    73ffd3f

    @zware
    Copy link
    Member Author

    zware commented Oct 8, 2017

    This is currently mitigated by some nasty hacks on the buildbot.python.org server to avoid breaking tests on every released version of Python 3, but this still needs to change. The test is skipped in master and (soon) 3.6 to minimize the damage when the hacks on buildbot.p.o break.

    @zware
    Copy link
    Member Author

    zware commented Oct 8, 2017

    New changeset d13a4e5 by Zachary Ware (Miss Islington (bot)) in branch '3.6':
    [3.6] bpo-31724: Skip test_xmlrpc_net (GH-3922)
    d13a4e5

    @iritkatriel
    Copy link
    Member

    The test is now skipped, but still need to be fixed.

    @iritkatriel iritkatriel added 3.9 only security fixes 3.10 only security fixes 3.11 only security fixes and removed 3.7 (EOL) end of life labels Aug 1, 2021
    @ezio-melotti ezio-melotti transferred this issue from another repository Apr 10, 2022
    vstinner added a commit to vstinner/cpython that referenced this issue Jun 14, 2023
    test_xmlrpc_net was skipped since 2017:
    commit 73ffd3f.
    
    The public buildbot.python.org server has no XML-RPC interface
    anymore, and no replacement server was found in 6 years.
    @vstinner
    Copy link
    Member

    I proposed PR #105796 to remove the test, so no volunteer proposed a change in 6 years to use a different public XML-RPC server. The local test_xmlrpc test is enough.

    vstinner added a commit that referenced this issue Jun 14, 2023
    test_xmlrpc_net was skipped since 2017:
    commit 73ffd3f.
    
    The public buildbot.python.org server has no XML-RPC interface
    anymore, and no replacement server was found in 6 years.
    @vstinner
    Copy link
    Member

    The test was removed by 820febc

    carljm added a commit to carljm/cpython that referenced this issue Jun 15, 2023
    * main: (57 commits)
      pythongh-105831: Fix NEWS blurb from pythongh-105828 (python#105833)
      pythongh-105820: Fix tok_mode expression buffer in file & readline tokenizer (python#105828)
      pythongh-105751, test_ctypes: Remove disabled tests (python#105826)
      pythongh-105821: Use a raw f-string in test_httpservers.py (python#105822)
      pythongh-105751: Remove platform usage in test_ctypes (python#105819)
      pythongh-105751: Reenable disable test_ctypes tests (python#105818)
      pythongh-105751: Remove dead code in test_ctypes (python#105817)
      More reorganisation of the typing docs (python#105787)
      Improve docs for `typing.dataclass_transform` (python#105792)
      pythonGH-89812: Churn `pathlib.Path` test methods (python#105807)
      pythongh-105800: Issue SyntaxWarning in f-strings for invalid escape sequences (python#105801)
      pythongh-105751: Cleanup test_ctypes imports (python#105803)
      pythongh-105481: add HAS_JUMP flag to opcode metadata (python#105791)
      pythongh-105751: test_ctypes avoids the operator module (pythonGH-105797)
      pythongh-105751: test_ctypes: Remove @need_symbol decorator (pythonGH-105798)
      pythongh-104909: Implement conditional stack effects for macros (python#105748)
      pythongh-75905: Remove test_xmlrpc_net: skipped since 2017 (python#105796)
      pythongh-105481: Fix types and a bug for pseudos (python#105788)
      Update DSL docs for cases generator (python#105753)
      pythonGH-77273: Better bytecodes for f-strings (pythonGH-6132)
      ...
    Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
    Labels
    3.9 only security fixes 3.10 only security fixes 3.11 only security fixes tests Tests in the Lib/test dir
    Projects
    None yet
    Development

    No branches or pull requests

    3 participants