Skip to content

Commit

Permalink
fix: disable all assertoor tests by default (#738)
Browse files Browse the repository at this point in the history
disable all assertoor tests by default to prevent accidentally running
tests twice
  • Loading branch information
pk910 committed Aug 13, 2024
1 parent 78c2bc7 commit 2961f96
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -607,12 +607,12 @@ assertoor_params:
# - >= 80% correct head votes
# - no reorgs with distance > 2 blocks
# - no more than 2 reorgs per epoch
run_stability_check: true
run_stability_check: false
# Check block propöosals
# This check monitors the chain and succeeds if:
# - all client pairs have proposed a block
run_block_proposal_check: true
run_block_proposal_check: false
# Run normal transaction test
# This test generates random EOA transactions and checks inclusion with/from all client pairs
Expand Down
4 changes: 2 additions & 2 deletions network_params.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -93,8 +93,8 @@ goomy_blob_params:
goomy_blob_args: []
assertoor_params:
image: ""
run_stability_check: true
run_block_proposal_check: true
run_stability_check: false
run_block_proposal_check: false
run_transaction_test: false
run_blob_transaction_test: false
run_opcodes_transaction_test: false
Expand Down
4 changes: 2 additions & 2 deletions src/package_io/input_parser.star
Original file line number Diff line number Diff line change
Expand Up @@ -969,8 +969,8 @@ def get_default_goomy_blob_params():
def get_default_assertoor_params():
return {
"image": "",
"run_stability_check": True,
"run_block_proposal_check": True,
"run_stability_check": False,
"run_block_proposal_check": False,
"run_lifecycle_test": False,
"run_transaction_test": False,
"run_blob_transaction_test": False,
Expand Down

0 comments on commit 2961f96

Please sign in to comment.