From acf01f4c09796fa0fa24509eabe4a145fa2a6569 Mon Sep 17 00:00:00 2001 From: Rusty Russell Date: Tue, 14 Mar 2023 15:53:50 +1030 Subject: [PATCH] pytest: don't run test_backfill_scriptpubkeys under valgrind in CI. It seems that bitcoind frequently dies on this test. I assume running the multiple nodes under valgrind with the extra 214 blocks is too memory-hungry? Signed-off-by: Rusty Russell --- tests/test_db.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/test_db.py b/tests/test_db.py index 0a0f8bea9..ebc9743a5 100644 --- a/tests/test_db.py +++ b/tests/test_db.py @@ -227,6 +227,7 @@ def test_last_tx_psbt_upgrade(node_factory, bitcoind): bitcoind.rpc.decoderawtransaction(last_txs[1].hex()) +@pytest.mark.slow_test @unittest.skipIf(os.getenv('TEST_DB_PROVIDER', 'sqlite3') != 'sqlite3', "This test is based on a sqlite3 snapshot") @unittest.skipIf(TEST_NETWORK != 'regtest', "The network must match the DB snapshot") def test_backfill_scriptpubkeys(node_factory, bitcoind):