Mercurial > hg
view tests/testlib/ext-phase-report.py @ 35162:bdd2e18b54c5
hgweb: add .jshintrc with some basic rules
This file is picked up automatically by jshint, so no extra changes required in
test-check-jshint.t.
author | Anton Shestakov <av6@dwimlabs.net> |
---|---|
date | Wed, 22 Nov 2017 22:18:06 +0800 |
parents | 67a3204c83c1 |
children | 3b4d14beac3d |
line wrap: on
line source
# tiny extension to report phase changes during transaction from __future__ import absolute_import def reposetup(ui, repo): def reportphasemove(tr): for rev, move in sorted(tr.changes['phases'].iteritems()): if move[0] is None: ui.write(('test-debug-phase: new rev %d: x -> %d\n' % (rev, move[1]))) else: ui.write(('test-debug-phase: move rev %d: %s -> %d\n' % (rev, move[0], move[1]))) class reportphaserepo(repo.__class__): def transaction(self, *args, **kwargs): tr = super(reportphaserepo, self).transaction(*args, **kwargs) tr.addpostclose('report-phase', reportphasemove) return tr repo.__class__ = reportphaserepo