fix: mark zombienet doc-tests as ignore to fix doc-test compilation

Doc-tests use full crate names (pezkuwi_zombienet_provider etc.) which
are not available as extern crates in the doc-test compilation context.
These examples require a running network and cannot be executed anyway.
This commit is contained in:
2026-02-11 23:59:23 +03:00
parent b2f5b4671a
commit f1ad47ac00
2 changed files with 5 additions and 5 deletions
@@ -107,7 +107,7 @@ impl<T: FileSystem> Network<T> {
/// Add a node to the relaychain
// The new node is added to the running network instance.
/// # Example:
/// ```rust
/// ```rust,ignore
/// # use pezkuwi_zombienet_provider::NativeProvider;
/// # use pezkuwi_zombienet_support::{fs::local::LocalFileSystem};
/// # use pezkuwi_zombienet_orchestrator::{errors, AddNodeOptions, Orchestrator};
@@ -219,7 +219,7 @@ impl<T: FileSystem> Network<T> {
/// then it adds collator to the first parachain
///
/// # Example:
/// ```rust
/// ```rust,ignore
/// # use pezkuwi_zombienet_provider::NativeProvider;
/// # use pezkuwi_zombienet_support::{fs::local::LocalFileSystem};
/// # use pezkuwi_zombienet_orchestrator::{errors, AddCollatorOptions, Orchestrator};
@@ -383,7 +383,7 @@ impl<T: FileSystem> Network<T> {
///
///
/// # Example:
/// ```rust
/// ```rust,ignore
/// # use anyhow::anyhow;
/// # use pezkuwi_zombienet_provider::NativeProvider;
/// # use pezkuwi_zombienet_support::{fs::local::LocalFileSystem};
@@ -567,7 +567,7 @@ impl<T: FileSystem> Network<T> {
///
///
/// # Example:
/// ```rust
/// ```rust,ignore
/// # use anyhow::anyhow;
/// # use pezkuwi_zombienet_provider::NativeProvider;
/// # use pezkuwi_zombienet_support::{fs::local::LocalFileSystem};
@@ -443,7 +443,7 @@ impl NetworkNode {
/// * `Err(e)` if an error occurred during log retrieval or matching.
///
/// # Example
/// ```rust
/// ```rust,ignore
/// # use std::{sync::Arc, time::Duration};
/// # use pezkuwi_zombienet_provider::NativeProvider;
/// # use pezkuwi_zombienet_support::{fs::local::LocalFileSystem};