tests/hghaveaddon.py
author Sean Farley <sean@farley.io>
Tue, 19 Dec 2017 13:15:00 -0600
changeset 3518 d938808e31bc
parent 2959 ef361938dfa1
permissions -rw-r--r--
serverminitopic: attempt to fix assertion for repoview in branchmap This seems fine since we topic never impact public only caches.

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