From 9bd41b0de34e4110ac23b48254453378953129c0 Mon Sep 17 00:00:00 2001 From: Max Tropets Date: Wed, 15 Jan 2025 11:52:43 +0000 Subject: [PATCH] Disable prev epoch receipt check for shuffled tests --- tests/recovery.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/tests/recovery.py b/tests/recovery.py index 2de2936eb1a..8b1bbd3e5f6 100644 --- a/tests/recovery.py +++ b/tests/recovery.py @@ -358,9 +358,13 @@ def test_recover_service_with_wrong_identity(network, args): cli.get("/node/commit").body.json()["transaction_id"] ) + if os.getenv("SHUFFLE_SUITE"): + return recovered_network + # Check receipts for transactions after multiple recoveries. This test # relies on previous recoveries and is therefore prone to failures if - # surrounding test calls change. + # surrounding test calls change, therefore we don't run it in shuffle mode. + txids = [ # Last TX before previous recovery shifted_tx(previous_service_created_tx_id, -2, -1),