From c1115af8416a114c52739a172e4ebc12b20bb6bb Mon Sep 17 00:00:00 2001 From: Benjamin Leggett Date: Wed, 25 Mar 2026 16:07:21 -0400 Subject: [PATCH] Skip the UEFI crates during `cargo test` --- crates/boot/Cargo.toml | 1 + crates/eficore/Cargo.toml | 1 + 2 files changed, 2 insertions(+) diff --git a/crates/boot/Cargo.toml b/crates/boot/Cargo.toml index 6545e2d..c86cb09 100644 --- a/crates/boot/Cargo.toml +++ b/crates/boot/Cargo.toml @@ -27,3 +27,4 @@ edera-sprout-build.path = "../build" [[bin]] name = "sprout" path = "src/main.rs" +test = false diff --git a/crates/eficore/Cargo.toml b/crates/eficore/Cargo.toml index 7898c91..45f7e4a 100644 --- a/crates/eficore/Cargo.toml +++ b/crates/eficore/Cargo.toml @@ -19,3 +19,4 @@ uefi-raw.workspace = true [lib] name = "eficore" path = "src/lib.rs" +test = false