fix(fxt): mark machine_id test as #[ignore] for container CI

test_machine_id_derivation reads /etc/machine-id which doesn't exist
in container environments.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
jgrusewski
2026-02-25 14:35:56 +01:00
parent d7f11449f4
commit b84e14e175

View File

@@ -446,6 +446,7 @@ mod tests {
}
#[test]
#[ignore] // Requires /etc/machine-id (not available in containers)
fn test_machine_id_derivation() {
// This test verifies we can get a machine ID
let machine_id = KeyManager::get_machine_id().expect("Failed to get machine ID");