tests/hghaveaddon.py
author Pierre-Yves David <pierre-yves.david@octobus.net>
Tue, 07 Apr 2020 15:39:23 +0200
branchstable
changeset 5297 2de59d916266
parent 2959 ef361938dfa1
permissions -rw-r--r--
auto-publish: issue the capabilities in all cases It seems better to message client that we support the capabilities in all cases.

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