fix(ci): resolve all quick-checks failures
- Remove missing cli crate from workspace members - Fix TOML array syntax errors in pvf and benchmarking-cli Cargo.toml - Fix Rust import ordering with cargo fmt - Fix feature propagation with zepter (try-runtime, runtime-benchmarks, std)
This commit is contained in:
@@ -33,9 +33,9 @@ rstest = { workspace = true }
|
||||
[features]
|
||||
zombie-ci = []
|
||||
runtime-benchmarks = [
|
||||
"pezcumulus-zombienet-sdk-helpers/runtime-benchmarks",
|
||||
"pezkuwi-primitives/runtime-benchmarks",
|
||||
"pezsc-statement-store/runtime-benchmarks",
|
||||
"pezsp-keyring/runtime-benchmarks",
|
||||
"pezsp-statement-store/runtime-benchmarks",
|
||||
"pezcumulus-zombienet-sdk-helpers/runtime-benchmarks",
|
||||
"pezkuwi-primitives/runtime-benchmarks",
|
||||
"pezsc-statement-store/runtime-benchmarks",
|
||||
"pezsp-keyring/runtime-benchmarks",
|
||||
"pezsp-statement-store/runtime-benchmarks",
|
||||
]
|
||||
|
||||
+1
-1
@@ -7,11 +7,11 @@ use crate::utils::initialize_network;
|
||||
|
||||
use pezcumulus_zombienet_sdk_helpers::{assert_finality_lag, assert_para_throughput, assign_cores};
|
||||
use pezkuwi_primitives::Id as ParaId;
|
||||
use serde_json::json;
|
||||
use pezkuwi_zombienet_sdk::{
|
||||
subxt::{OnlineClient, PezkuwiConfig},
|
||||
NetworkConfig, NetworkConfigBuilder,
|
||||
};
|
||||
use serde_json::json;
|
||||
|
||||
const PARA_ID: u32 = 2400;
|
||||
|
||||
|
||||
@@ -10,12 +10,12 @@ use pezcumulus_zombienet_sdk_helpers::{
|
||||
assert_para_is_registered, assert_para_throughput, assign_cores,
|
||||
};
|
||||
use pezkuwi_primitives::Id as ParaId;
|
||||
use serde_json::json;
|
||||
use pezkuwi_zombienet_orchestrator::network::node::LogLineCountOptions;
|
||||
use pezkuwi_zombienet_sdk::{
|
||||
subxt::{OnlineClient, PezkuwiConfig},
|
||||
NetworkConfig, NetworkConfigBuilder, RegistrationStrategy,
|
||||
};
|
||||
use serde_json::json;
|
||||
|
||||
const PARA_ID: u32 = 2100;
|
||||
|
||||
|
||||
+1
-1
@@ -7,9 +7,9 @@ use std::time::Duration;
|
||||
use crate::utils::{initialize_network, BEST_BLOCK_METRIC};
|
||||
|
||||
use pezcumulus_zombienet_sdk_helpers::assign_cores;
|
||||
use serde_json::json;
|
||||
use pezkuwi_zombienet_orchestrator::network::node::LogLineCountOptions;
|
||||
use pezkuwi_zombienet_sdk::{NetworkConfig, NetworkConfigBuilder};
|
||||
use serde_json::json;
|
||||
|
||||
const PARA_ID_1: u32 = 2100;
|
||||
const PARA_ID_2: u32 = 2000;
|
||||
|
||||
+1
-1
@@ -6,11 +6,11 @@
|
||||
|
||||
use anyhow::anyhow;
|
||||
use pezcumulus_zombienet_sdk_helpers::{assert_relay_parent_offset, assign_cores};
|
||||
use serde_json::json;
|
||||
use pezkuwi_zombienet_sdk::{
|
||||
subxt::{OnlineClient, PezkuwiConfig},
|
||||
NetworkConfigBuilder,
|
||||
};
|
||||
use serde_json::json;
|
||||
|
||||
#[tokio::test(flavor = "multi_thread")]
|
||||
async fn elastic_scaling_slot_based_relay_parent_offset_test() -> Result<(), anyhow::Error> {
|
||||
|
||||
+1
-1
@@ -11,11 +11,11 @@ use pezcumulus_zombienet_sdk_helpers::{
|
||||
assert_para_throughput, assign_cores, runtime_upgrade, wait_for_upgrade,
|
||||
};
|
||||
use pezkuwi_primitives::Id as ParaId;
|
||||
use rstest::rstest;
|
||||
use pezkuwi_zombienet_sdk::{
|
||||
subxt::{OnlineClient, PezkuwiConfig},
|
||||
NetworkConfig, NetworkConfigBuilder,
|
||||
};
|
||||
use rstest::rstest;
|
||||
|
||||
const PARA_ID: u32 = 2000;
|
||||
const WASM_WITH_ELASTIC_SCALING: &str =
|
||||
|
||||
@@ -9,12 +9,12 @@ use crate::utils::{initialize_network, BEST_BLOCK_METRIC};
|
||||
|
||||
use pezcumulus_zombienet_sdk_helpers::assert_para_throughput;
|
||||
use pezkuwi_primitives::Id as ParaId;
|
||||
use pezsp_core::{hexdisplay::AsBytesRef, Bytes};
|
||||
use pezkuwi_zombienet_sdk::{
|
||||
subxt::{self, dynamic::Value, tx::DynamicPayload, OnlineClient, PezkuwiConfig},
|
||||
subxt_signer::sr25519::dev,
|
||||
NetworkConfig, NetworkConfigBuilder, RegistrationStrategy,
|
||||
};
|
||||
use pezsp_core::{hexdisplay::AsBytesRef, Bytes};
|
||||
|
||||
const PARA_ID: u32 = 2000;
|
||||
|
||||
|
||||
@@ -7,8 +7,6 @@ use crate::utils::{initialize_network, BEST_BLOCK_METRIC};
|
||||
|
||||
use pezcumulus_zombienet_sdk_helpers::{assert_para_is_registered, assert_para_throughput};
|
||||
use pezkuwi_primitives::Id as ParaId;
|
||||
use serde_json::json;
|
||||
use std::{sync::Arc, time::Duration};
|
||||
use pezkuwi_zombienet_configuration::types::Arg;
|
||||
use pezkuwi_zombienet_orchestrator::network::node::LogLineCountOptions;
|
||||
use pezkuwi_zombienet_sdk::{
|
||||
@@ -16,6 +14,8 @@ use pezkuwi_zombienet_sdk::{
|
||||
subxt::{OnlineClient, PezkuwiConfig},
|
||||
NetworkConfig, NetworkConfigBuilder, RegistrationStrategy,
|
||||
};
|
||||
use serde_json::json;
|
||||
use std::{sync::Arc, time::Duration};
|
||||
|
||||
const PARA_ID: u32 = 2000;
|
||||
|
||||
|
||||
@@ -5,8 +5,8 @@
|
||||
// propagated to peers.
|
||||
|
||||
use anyhow::anyhow;
|
||||
use pezsp_core::{Bytes, Encode};
|
||||
use pezkuwi_zombienet_sdk::{subxt::ext::pezkuwi_subxt_rpcs::rpc_params, NetworkConfigBuilder};
|
||||
use pezsp_core::{Bytes, Encode};
|
||||
|
||||
#[tokio::test(flavor = "multi_thread")]
|
||||
async fn statement_store() -> Result<(), anyhow::Error> {
|
||||
|
||||
@@ -6,15 +6,15 @@
|
||||
use anyhow::anyhow;
|
||||
use codec::{Decode, Encode};
|
||||
use log::{debug, info, trace};
|
||||
use pezkuwi_zombienet_sdk::{
|
||||
subxt::{backend::rpc::RpcClient, ext::pezkuwi_subxt_rpcs::rpc_params},
|
||||
LocalFileSystem, Network, NetworkConfigBuilder,
|
||||
};
|
||||
use pezsc_statement_store::{DEFAULT_MAX_TOTAL_SIZE, DEFAULT_MAX_TOTAL_STATEMENTS};
|
||||
use pezsp_core::{blake2_256, sr25519, Bytes, Pair};
|
||||
use pezsp_statement_store::{Channel, Statement, Topic};
|
||||
use std::{cell::Cell, collections::HashMap, time::Duration};
|
||||
use tokio::time::timeout;
|
||||
use pezkuwi_zombienet_sdk::{
|
||||
subxt::{backend::rpc::RpcClient, ext::pezkuwi_subxt_rpcs::rpc_params},
|
||||
LocalFileSystem, Network, NetworkConfigBuilder,
|
||||
};
|
||||
|
||||
const GROUP_SIZE: u32 = 6;
|
||||
const PARTICIPANT_SIZE: u32 = GROUP_SIZE * 8333; // Target ~50,000 total
|
||||
|
||||
Reference in New Issue
Block a user