From 7dd1a68881b516502c38491d5a794ce49fe3df37 Mon Sep 17 00:00:00 2001 From: itowlson Date: Tue, 5 Nov 2024 09:07:52 +1300 Subject: [PATCH] Ignore MQTT test flake Signed-off-by: itowlson --- tests/runtime.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/runtime.rs b/tests/runtime.rs index 434475bec..9330346db 100644 --- a/tests/runtime.rs +++ b/tests/runtime.rs @@ -28,7 +28,7 @@ mod runtime_tests { #[test] fn conformance_tests() -> anyhow::Result<()> { - let config = conformance_tests::Config::new("canary"); + let config = conformance_tests::Config::new("canary").ignore("outbound-mqtt"); let conclusion = conformance_tests::run_tests(config, move |test| { conformance::run_test(test, &spin_binary()) })?;