Disable Execution Request Testing On Mainnet (#15115)

* DisableOnMainnet

* Changelog
This commit is contained in:
Nishant Das
2025-04-01 18:38:05 +08:00
committed by GitHub
parent e38fdb09a4
commit 70c31949ba
2 changed files with 15 additions and 13 deletions

View File

@@ -0,0 +1,3 @@
### Ignored
- Disable Execution Request Testing on Mainnet.

View File

@@ -150,19 +150,18 @@ func e2eMainnet(t *testing.T, usePrysmSh, useMultiClient bool, cfg *params.Beaco
"--enable-tracing",
"--trace-sample-fraction=1.0",
},
ValidatorFlags: []string{},
EpochsToRun: uint64(epochsToRun),
TestSync: true,
TestFeature: true,
TestDeposits: true,
UseFixedPeerIDs: true,
UsePrysmShValidator: usePrysmSh,
TestExecutionRequests: true,
UsePprof: true,
TracingSinkEndpoint: tracingEndpoint,
Evaluators: evals,
EvalInterceptor: defaultInterceptor,
Seed: int64(seed),
ValidatorFlags: []string{},
EpochsToRun: uint64(epochsToRun),
TestSync: true,
TestFeature: true,
TestDeposits: true,
UseFixedPeerIDs: true,
UsePrysmShValidator: usePrysmSh,
UsePprof: true,
TracingSinkEndpoint: tracingEndpoint,
Evaluators: evals,
EvalInterceptor: defaultInterceptor,
Seed: int64(seed),
}
for _, o := range cfgo {
o(testConfig)