diff --git a/hugr-cli/tests/cli.rs b/hugr-cli/tests/cli.rs index beb1e19f2..1cd8b5438 100644 --- a/hugr-cli/tests/cli.rs +++ b/hugr-cli/tests/cli.rs @@ -1,3 +1,9 @@ +//! Tests for the CLI +//! +//! Miri is globally disabled for these tests because they mostly involve +//! calling the CLI binary, which Miri doesn't support. +#![cfg(all(test, not(miri)))] + use assert_cmd::Command; use assert_fs::{fixture::FileWriteStr, NamedTempFile}; use hugr_cli::VALID_PRINT;