view tests/testlib/retain-extras-ext.py @ 6883:61e8bd377791 stable

tests: spell "sugar" correctly in test-topic-tutorial.t
author Anton Shestakov <av6@dwimlabs.net>
date Wed, 02 Oct 2024 20:07:25 +0400
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')