Commit 2961f969 authored by pk910's avatar pk910 Committed by GitHub

fix: disable all assertoor tests by default (#738)

disable all assertoor tests by default to prevent accidentally running
tests twice
parent 78c2bc77
...@@ -607,12 +607,12 @@ assertoor_params: ...@@ -607,12 +607,12 @@ assertoor_params:
# - >= 80% correct head votes # - >= 80% correct head votes
# - no reorgs with distance > 2 blocks # - no reorgs with distance > 2 blocks
# - no more than 2 reorgs per epoch # - no more than 2 reorgs per epoch
run_stability_check: true run_stability_check: false
# Check block propöosals # Check block propöosals
# This check monitors the chain and succeeds if: # This check monitors the chain and succeeds if:
# - all client pairs have proposed a block # - all client pairs have proposed a block
run_block_proposal_check: true run_block_proposal_check: false
# Run normal transaction test # Run normal transaction test
# This test generates random EOA transactions and checks inclusion with/from all client pairs # This test generates random EOA transactions and checks inclusion with/from all client pairs
......
...@@ -93,8 +93,8 @@ goomy_blob_params: ...@@ -93,8 +93,8 @@ goomy_blob_params:
goomy_blob_args: [] goomy_blob_args: []
assertoor_params: assertoor_params:
image: "" image: ""
run_stability_check: true run_stability_check: false
run_block_proposal_check: true run_block_proposal_check: false
run_transaction_test: false run_transaction_test: false
run_blob_transaction_test: false run_blob_transaction_test: false
run_opcodes_transaction_test: false run_opcodes_transaction_test: false
......
...@@ -969,8 +969,8 @@ def get_default_goomy_blob_params(): ...@@ -969,8 +969,8 @@ def get_default_goomy_blob_params():
def get_default_assertoor_params(): def get_default_assertoor_params():
return { return {
"image": "", "image": "",
"run_stability_check": True, "run_stability_check": False,
"run_block_proposal_check": True, "run_block_proposal_check": False,
"run_lifecycle_test": False, "run_lifecycle_test": False,
"run_transaction_test": False, "run_transaction_test": False,
"run_blob_transaction_test": False, "run_blob_transaction_test": False,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment