From a35f317d5cf86c18f28af7e960272b14ad16c995 Mon Sep 17 00:00:00 2001 From: thePR0M3TH3AN <53631862+PR0M3TH3AN@users.noreply.github.com> Date: Sat, 24 May 2025 21:56:44 -0400 Subject: [PATCH] Scope watch quick stop test to Unix --- cli-bin/tests/watch_unit.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/cli-bin/tests/watch_unit.rs b/cli-bin/tests/watch_unit.rs index 9230d92..8ab0151 100644 --- a/cli-bin/tests/watch_unit.rs +++ b/cli-bin/tests/watch_unit.rs @@ -8,8 +8,10 @@ use libmarlin::{self as marlin, db}; use marlin_cli::cli::watch::WatchCmd; use marlin_cli::cli::{watch, Format}; +#[cfg(unix)] #[test] fn watch_start_and_stop_quickly() { + // TODO: Use a Windows console control handler and enable this test on Windows. let tmp = tempdir().unwrap(); let db_path = tmp.path().join("index.db"); std::env::set_var("MARLIN_DB_PATH", &db_path);