cargo-nextest 0.9.133

A next-generation test runner for Rust.
Documentation
1
2
3
4
5
6
7
8
9
10
11
// Copyright (c) The nextest Contributors
// SPDX-License-Identifier: MIT OR Apache-2.0

use color_eyre::Result;

fn main() -> Result<()> {
    color_eyre::install()?;
    let _ = enable_ansi_support::enable_ansi_support();

    cargo_nextest::main_impl()
}