From ed4e92b1a78dfeee5de9d2b8b24691cb58b38bcb Mon Sep 17 00:00:00 2001 From: Claudio Ortolina Date: Mon, 20 Apr 2026 23:00:44 +0100 Subject: [PATCH] Cover Ignore a few other modules --- mix.exs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/mix.exs b/mix.exs index a62a226a..c4c57717 100644 --- a/mix.exs +++ b/mix.exs @@ -33,6 +33,7 @@ defmodule MusicLibrary.MixProject do # - Telemetry instrumentation whose write paths are only reachable from real # `:telemetry.execute/3` events emitted by external libraries. # - Vendored `SqliteVec.*` library code under `lib/sqlite_vec/`. + # - Req Rate Limiter System Clock (exposes std library built-ins) # - All Mix tasks (developer tooling not exercised by the application test # suite). defp ignored_coverage_modules do @@ -49,8 +50,9 @@ defmodule MusicLibrary.MixProject do MusicLibraryWeb.ErrorHTML, MusicLibraryWeb.Telemetry, MusicLibraryWeb.Telemetry.Storage, + Req.RateLimiter.SystemClock, ~r/^Mix\.Tasks\./, - ~r/^SqliteVec\./ + ~r/SqliteVec\./ ] end