rpytest-core 0.1.2

Core types and abstractions for rpytest
Documentation
1
2
3
4
5
6
7
8
9
10
//! Test inventory management.
//!
//! This module provides data structures and operations for managing
//! test inventories - the collection of all known tests in a repository.

mod nodes;
mod store;

pub use nodes::{TestNode, TestNodeId, TestNodeKind};
pub use store::{Inventory, InventoryMeta};