From 89a9e6309f47ba4cc4af8e60b63d869e7f430d9d Mon Sep 17 00:00:00 2001 From: UebelAndre Date: Sun, 9 Feb 2025 11:23:15 -0800 Subject: [PATCH] Addressed clippy errors --- util/collect_coverage/collect_coverage.rs | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/util/collect_coverage/collect_coverage.rs b/util/collect_coverage/collect_coverage.rs index fcd3c0ad4f..22b57f7911 100644 --- a/util/collect_coverage/collect_coverage.rs +++ b/util/collect_coverage/collect_coverage.rs @@ -9,13 +9,11 @@ //! data files to compute the coverage report. //! //! This script assumes the following environment variables are set: -//! - COVERAGE_DIR Directory containing metadata files needed for -//! coverage collection (e.g. gcda files, profraw). -//! - COVERAGE_OUTPUT_FILE The coverage action output path. -//! - ROOT Location from where the code coverage collection -//! was invoked. -//! - RUNFILES_DIR Location of the test's runfiles. -//! - VERBOSE_COVERAGE Print debug info from the coverage scripts +//! - `COVERAGE_DIR``: Directory containing metadata files needed for coverage collection (e.g. gcda files, profraw). +//! - `COVERAGE_OUTPUT_FILE`: The coverage action output path. +//! - `ROOT`: Location from where the code coverage collection was invoked. +//! - `RUNFILES_DIR`: Location of the test's runfiles. +//! - `VERBOSE_COVERAGE`: Print debug info from the coverage scripts //! //! The script looks in $COVERAGE_DIR for the Rust metadata coverage files //! (profraw) and uses lcov to get the coverage data. The coverage data