diff --git a/crates/telnet-host/tests/integration_test.rs b/crates/telnet-host/tests/integration_test.rs
index 37a872f1..4eed4f1a 100644
--- a/crates/telnet-host/tests/integration_test.rs
+++ b/crates/telnet-host/tests/integration_test.rs
@@ -11,6 +11,8 @@
// this program. If not, see .
//
+#![cfg(target_os = "linux")]
+
use moor_moot::{MootOptions, telnet::ManagedChild, test_db_path};
use serial_test::serial;
use std::net::TcpListener;
@@ -159,21 +161,18 @@ fn test_moot_with_telnet_host>(moot_file: P) {
drop(telnet_host);
}
-#[cfg(target_os = "linux")]
#[test]
#[serial(telnet_host)]
fn test_echo() {
test_moot_with_telnet_host("echo");
}
-#[cfg(target_os = "linux")]
#[test]
#[serial(telnet_host)]
fn test_suspend_read_notify() {
test_moot_with_telnet_host("suspend_read_notify");
}
-#[cfg(target_os = "linux")]
#[test]
#[serial(telnet_host)]
fn test_huh() {