# HG changeset patch # User Pierre-Yves David # Date 1610715932 -3600 # Node ID 7149fb17ff727a0743f0e54ce18f1412dca389c1 # Parent d46646ce31587a2aae5a5d3554a983c249b2a6a4 hghave: clarify `sqlite` requirements We need more than the python module, we also need the sqlite3 command line. Differential Revision: https://phab.mercurial-scm.org/D9787 diff -r d46646ce3158 -r 7149fb17ff72 tests/hghave.py --- a/tests/hghave.py Fri Jan 15 01:21:58 2021 +0100 +++ b/tests/hghave.py Fri Jan 15 14:05:32 2021 +0100 @@ -1006,7 +1006,7 @@ return 'fncache' in getrepofeatures() -@check('sqlite', 'sqlite3 module is available') +@check('sqlite', 'sqlite3 module and matching cli is available') def has_sqlite(): try: import sqlite3