view tests/hghaveaddon.py @ 3600:6fd84046d4a4 mercurial-4.1

branching: close mercurial-4.1 test branch
author Pierre-Yves David <pierre-yves.david@octobus.net>
date Thu, 22 Mar 2018 01:20:03 +0100
parents ef361938dfa1
children 6a50faea786d
line wrap: on
line source

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