Skip to content

Commit

Permalink
Disable prev epoch receipt check for shuffled tests
Browse files Browse the repository at this point in the history
  • Loading branch information
maxtropets committed Jan 15, 2025
1 parent c99744a commit 9bd41b0
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion tests/recovery.py
Original file line number Diff line number Diff line change
Expand Up @@ -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),
Expand Down

0 comments on commit 9bd41b0

Please sign in to comment.