From 54f97e28fdfc565bf02dc04c9c6805f1f789dab9 Mon Sep 17 00:00:00 2001 From: MarcoIeni <11428655+MarcoIeni@users.noreply.github.com> Date: Mon, 3 Feb 2025 17:51:51 +0100 Subject: [PATCH] allow windows reserved names in CI --- crates/cargo-test-support/src/paths.rs | 5 ----- 1 file changed, 5 deletions(-) diff --git a/crates/cargo-test-support/src/paths.rs b/crates/cargo-test-support/src/paths.rs index 622fe633424..6fe6223af6d 100644 --- a/crates/cargo-test-support/src/paths.rs +++ b/crates/cargo-test-support/src/paths.rs @@ -373,11 +373,6 @@ pub fn sysroot() -> String { pub fn windows_reserved_names_are_allowed() -> bool { use cargo_util::is_ci; - // Ensure tests still run in CI until we need to migrate. - if is_ci() { - return false; - } - use std::ffi::OsStr; use std::os::windows::ffi::OsStrExt; use std::ptr;