tests/hghaveaddon.py
author Pierre-Yves David <pierre-yves.david@octobus.net>
Thu, 21 Sep 2017 16:55:17 +0200
changeset 2960 1a4f26eec0af
parent 2959 ef361938dfa1
permissions -rw-r--r--
test2rst: ignore the #if/#endif line in the output They are not useful for the rest.

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