pytest: Skip some tests that assume we have a sqlite3 db on postgres

These will not work since they touch the DB file itself.

Signed-off-by: Christian Decker <decker.christian@gmail.com>
This commit is contained in:
Christian Decker
2019-09-12 22:49:42 +02:00
committed by Rusty Russell
parent b89222f2d9
commit efc4aa94a3
4 changed files with 5 additions and 0 deletions

View File

@@ -290,6 +290,7 @@ def test_async_rpcmethod(node_factory, executor):
assert [r.result() for r in results] == [42] * len(results)
@unittest.skipIf(os.getenv('TEST_DB_PROVIDER', 'sqlite3') != 'sqlite3', "Only sqlite3 implements the db_write_hook currently")
def test_db_hook(node_factory, executor):
"""This tests the db hook."""
dbfile = os.path.join(node_factory.directory, "dblog.sqlite3")