tests/hghaveaddon.py
author Pierre-Yves David <pierre-yves.david@octobus.net>
Thu, 16 Aug 2018 20:22:19 +0200
branchstable
changeset 3953 2174de498a69
parent 2959 ef361938dfa1
permissions -rw-r--r--
stablerange: build closure a bit less inefficiently The new way make me a bit less sad than the old one.

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