tests/hghaveaddon.py
author Philippe Pepiot <phil@philpep.org>
Fri, 01 Sep 2017 08:32:17 +0200
changeset 2962 3f466d348047
parent 2959 ef361938dfa1
permissions -rw-r--r--
doc: add documentation for evolve commands By using a sphinx directive that call `hg help`.

import hghave

@hghave.check("docgraph-ext", "Extension to generate graph from repository")
def docgraph():
    try:
        import hgext.docgraph
        hgext.docgraph.cmdtable # trigger import
    except ImportError:
        try:
            import hgext3rd.docgraph
            hgext3rd.docgraph.cmdtable # trigger import
        except ImportError:
            return False
    return True