nextest-runner 0.85.0

Core runner logic for cargo nextest.
Documentation
// Copyright (c) The nextest Contributors
// SPDX-License-Identifier: MIT OR Apache-2.0

//! Configuration elements for nextest.

mod archive;
mod global_timeout;
mod junit;
mod leak_timeout;
mod max_fail;
mod priority;
mod retry_policy;
mod slow_timeout;
mod test_group;
mod test_threads;
mod threads_required;

pub use archive::*;
pub use global_timeout::*;
pub use junit::*;
pub use leak_timeout::*;
pub use max_fail::*;
pub use priority::*;
pub use retry_policy::*;
pub use slow_timeout::*;
pub use test_group::*;
pub use test_threads::*;
pub use threads_required::*;