From 721636bc38b962b1216ebeccf48dc4f8fcba6d8b Mon Sep 17 00:00:00 2001 From: Colin Walters Date: Mon, 2 Dec 2024 11:45:48 -0500 Subject: [PATCH] tests: Add a docstring to fix CI It looks like with Rust 1.83, `#[deny(missing_docs)]` started triggering for our integration test. It looks like this is a known thing: https://github.com/rust-lang/rust/issues/130203#issuecomment-2348014975 Signed-off-by: Colin Walters --- ostree-ext/tests/it/main.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ostree-ext/tests/it/main.rs b/ostree-ext/tests/it/main.rs index 97a74f5da..5e32a6239 100644 --- a/ostree-ext/tests/it/main.rs +++ b/ostree-ext/tests/it/main.rs @@ -1,3 +1,5 @@ +//! Main integration tests that use the public APIs. + use anyhow::{Context, Result}; use camino::Utf8Path; use cap_std::fs::{Dir, DirBuilder, DirBuilderExt};