view tests/testlib/retain-extras-ext.py @ 6601:7a9d3fde811f

tests: clarify what branch we're closing Turns out, the other topological head is on double//slash branch, but the one we're actually closing here is on default.
author Anton Shestakov <av6@dwimlabs.net>
date Mon, 30 Oct 2023 14:26:30 -0300
parents e36883d88108
children
line wrap: on
line source

"""
Wrap 'retained_extras_on_rebase' (from either mercurial or evolve) to retain
the "useful" extra.
"""

from mercurial import rewriteutil

try:
    rewriteutil.retained_extras_on_rebase
except AttributeError:
    # install the compatibility layer on older version
    from hgext3rd.evolve import compat
    compat.retained_extras_on_rebase # silence linter

def extsetup(ui):
    rewriteutil.retained_extras_on_rebase.add(b'useful')