tests/hghaveaddon.py
author Pierre-Yves David <pierre-yves.david@octobus.net>
Mon, 27 Aug 2018 11:27:04 +0200
changeset 4009 c58362473bd4
parent 2959 ef361938dfa1
permissions -rw-r--r--
sqlcache: initialize meta table last It turns out that pysqlite commit after each table creation. This commit is an hopeless attemps to make the caches more concurrent friendly.

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