hgext3rd/__init__.py
author Jun Wu <quark@fb.com>
Wed, 02 Aug 2017 21:24:29 -0700
changeset 34041 40313c63da87
parent 28541 4b81487a01d4
child 43076 2372284d9457
permissions -rw-r--r--
run-tests: allow bisecting a different repo Add `--bisect-repo` flag which accepts a different repo to bisect. 3rd party extensions may reuse `run-tests.py` from core to run tests. Test failure could be caused by either a core hg change or the 3rd party extension code itself. Having a way to specify which repo to bisect is useful. Differential Revision: https://phab.mercurial-scm.org/D578

# name space package to host third party extensions
from __future__ import absolute_import
import pkgutil
__path__ = pkgutil.extend_path(__path__, __name__)