view tests/testlib/retain-extras-ext.py @ 6884:053ce6e0b3b7 stable

tests: add a correct test header to test-tutorial.t Otherwise the title of the entire HTML doc is "Initial setup".
author Anton Shestakov <av6@dwimlabs.net>
date Wed, 02 Oct 2024 20:13:39 +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')