From 08fdbac9f8a22b34d3a9c6d17e42a3764d11d6b8 Mon Sep 17 00:00:00 2001 From: Graham McIntire Date: Wed, 5 Aug 2026 08:41:39 -0500 Subject: [PATCH] fix: suppress NexradClient 404 and PathAnalysis elevation warnings in tests --- test/test_helper.exs | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/test/test_helper.exs b/test/test_helper.exs index c63c68c3..b2ec5435 100644 --- a/test/test_helper.exs +++ b/test/test_helper.exs @@ -72,7 +72,13 @@ Logger.put_module_level( # HTTP 500 responses — the warnings and Oban job-exception logs are # deliberate test behaviour, not bugs. Logger.put_module_level( - [Microwaveprop.Workers.NarrFetchWorker, Microwaveprop.ObanErrorReporter, Microwaveprop.Weather], + [ + Microwaveprop.Workers.NarrFetchWorker, + Microwaveprop.ObanErrorReporter, + Microwaveprop.Weather, + Microwaveprop.Weather.NexradClient, + Microwaveprop.Propagation.PathAnalysis + ], :critical )