tests/hghaveaddon.py
author Pierre-Yves David <pierre-yves.david@octobus.net>
Wed, 29 Nov 2017 12:48:45 -0500
changeset 3242 55e1ad0d7174
parent 2959 ef361938dfa1
permissions -rw-r--r--
compat: in depth cache, only use cachevfs when available We support older version without the new vfs.

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