tests/hghaveaddon.py
author Pierre-Yves David <pierre-yves.david@octobus.net>
Tue, 22 Jan 2019 12:59:33 -0500
branchmercurial-4.3
changeset 4361 a7998b9cfcaf
parent 2959 ef361938dfa1
permissions -rw-r--r--
branching: closing test-compat branch for mercurial-4.3 We are dropping support for this version.

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