tests/hghaveaddon.py
author Pierre-Yves David <pierre-yves.david@octobus.net>
Thu, 13 Sep 2018 17:09:44 +0200
branchstable
changeset 4106 dc50050dbf80
parent 2959 ef361938dfa1
permissions -rw-r--r--
obshashrangecache: be more paranoid in the errors we catch It seems like there error were already covered. Better safe than sorry.

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