nextest-runner 0.35.0

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

//! Configuration support for nextest.

mod config_impl;
mod identifier;
mod overrides;
mod retry_policy;
mod slow_timeout;
mod test_group;
mod test_threads;
mod threads_required;
mod tool_config;

pub use config_impl::*;
pub use identifier::*;
pub use overrides::*;
pub use retry_policy::*;
pub use slow_timeout::*;
pub use test_group::*;
pub use test_threads::*;
pub use threads_required::*;
pub use tool_config::*;

#[cfg(test)]
mod test_helpers;