tests/hghaveaddon.py
author Pierre-Yves David <pierre-yves.david@octobus.net>
Mon, 18 Dec 2017 01:53:20 +0100
changeset 3308 65af5f9f232b
parent 2959 ef361938dfa1
permissions -rw-r--r--
stablerange: abstract the bit able to store cache into sql The part about actually storing the range is independent of the algorithm, so we should extract this before using it for the next iteration.

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