mirror of
https://github.com/pezkuwichain/revive-differential-tests.git
synced 2026-06-13 21:01:03 +00:00
Fix conficts with main
This commit is contained in:
@@ -110,7 +110,8 @@ impl AsRef<KurtosisConfiguration> for Context {
|
||||
impl AsRef<ZombienetConfiguration> for Context {
|
||||
fn as_ref(&self) -> &ZombienetConfiguration {
|
||||
match self {
|
||||
Self::ExecuteTests(context) => context.as_ref().as_ref(),
|
||||
Self::Test(context) => context.as_ref().as_ref(),
|
||||
Self::Benchmark(context) => context.as_ref().as_ref(),
|
||||
Self::ExportJsonSchema => unreachable!(),
|
||||
}
|
||||
}
|
||||
@@ -331,6 +332,10 @@ pub struct BenchmarkingContext {
|
||||
#[clap(flatten, next_help_heading = "Kitchensink Configuration")]
|
||||
pub kitchensink_configuration: KitchensinkConfiguration,
|
||||
|
||||
/// Configuration parameters for the Zombienet.
|
||||
#[clap(flatten, next_help_heading = "Zombienet Configuration")]
|
||||
pub zombienet_configuration: ZombienetConfiguration,
|
||||
|
||||
/// Configuration parameters for the Revive Dev Node.
|
||||
#[clap(flatten, next_help_heading = "Revive Dev Node Configuration")]
|
||||
pub revive_dev_node_configuration: ReviveDevNodeConfiguration,
|
||||
@@ -494,6 +499,12 @@ impl AsRef<KurtosisConfiguration> for BenchmarkingContext {
|
||||
}
|
||||
}
|
||||
|
||||
impl AsRef<ZombienetConfiguration> for BenchmarkingContext {
|
||||
fn as_ref(&self) -> &ZombienetConfiguration {
|
||||
&self.zombienet_configuration
|
||||
}
|
||||
}
|
||||
|
||||
impl AsRef<KitchensinkConfiguration> for BenchmarkingContext {
|
||||
fn as_ref(&self) -> &KitchensinkConfiguration {
|
||||
&self.kitchensink_configuration
|
||||
|
||||
Reference in New Issue
Block a user