tests/hghaveaddon.py
author Anton Shestakov <av6@dwimlabs.net>
Thu, 09 Apr 2020 23:35:20 +0800
branchstable
changeset 5290 57ae9af43e6b
parent 2959 ef361938dfa1
permissions -rw-r--r--
manifest: just include all .py .sh and .t files from tests/ recursively

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