From 0b53446841cc1fbca155f5d2dbf781ea558a9be9 Mon Sep 17 00:00:00 2001 From: Azalea Colburn Date: Fri, 21 Mar 2025 15:43:40 -0700 Subject: [PATCH] fix: ci checks --- build.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/build.rs b/build.rs index bf6dbbf..55b4216 100644 --- a/build.rs +++ b/build.rs @@ -11,6 +11,7 @@ use cmd::Cmd; fn main() -> io::Result<()> { // Since we are generating completions in the package directory, we need to // set this so that Cargo doesn't rebuild every time. + println!("cargo:rustc-check-cfg=cfg(test)"); println!("cargo:rerun-if-changed=build.rs"); println!("cargo:rerun-if-changed=src/"); println!("cargo:rerun-if-changed=templates/");