Skip to main content

nextest_runner/
lib.rs

1// Copyright (c) The nextest Contributors
2// SPDX-License-Identifier: MIT OR Apache-2.0
3
4#![warn(missing_docs)]
5
6//! Core functionality for [cargo nextest](https://crates.io/crates/cargo-nextest). For a
7//! higher-level overview, see that documentation.
8//!
9//! For the basic flow of operations in nextest, see [this blog
10//! post](https://sunshowers.io/posts/nextest-and-tokio/).
11
12pub mod cargo_config;
13pub mod config;
14#[cfg(feature = "experimental-tokio-console")]
15pub mod console;
16pub mod double_spawn;
17pub mod errors;
18pub mod helpers;
19pub mod indenter;
20pub mod input;
21pub mod list;
22pub mod output_spec;
23pub mod pager;
24pub mod partition;
25pub mod platform;
26pub mod record;
27pub mod redact;
28pub mod reporter;
29pub mod reuse_build;
30pub mod run_mode;
31pub mod runner;
32// TODO: move this module to the cargo-nextest crate and make it a private module once we get rid of
33// the tests in nextest-runner/tests/integration which depend on this to provide correct host and
34// target libdir.
35mod rustc_cli;
36pub mod show_config;
37pub mod signal;
38pub mod target_runner;
39mod test_command;
40pub mod test_filter;
41pub mod test_output;
42mod time;
43#[cfg(feature = "self-update")]
44pub mod update;
45pub mod usdt;
46pub mod user_config;
47pub mod write_str;
48
49pub use rustc_cli::RustcCli;