Skip to main content

rpytest_core/inventory/
mod.rs

1//! Test inventory management.
2//!
3//! This module provides data structures and operations for managing
4//! test inventories - the collection of all known tests in a repository.
5
6mod nodes;
7mod store;
8
9pub use nodes::{TestNode, TestNodeId, TestNodeKind};
10pub use store::{Inventory, InventoryMeta};