Skip to content

Commit

Permalink
Disable Amalthea's dummy kernel test on Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
lionel- committed Oct 8, 2024
1 parent cac78eb commit 3c8b072
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions crates/amalthea/tests/client.rs
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,11 @@ mod shell;

#[test]
fn test_kernel() {
// Let's skip this test on Windows for now to see if the Host Unreachable
// error only happens here
#[cfg(target_os = "windows")]
return;

let frontend = DummyFrontend::new();
let connection_file = frontend.get_connection_file();
let mut kernel = Kernel::new("amalthea", connection_file).unwrap();
Expand Down

0 comments on commit 3c8b072

Please sign in to comment.