Cover Ignore a few other modules

This commit is contained in:
Claudio Ortolina
2026-04-20 23:00:44 +01:00
parent 56983c3e2c
commit ed4e92b1a7
+3 -1
View File
@@ -33,6 +33,7 @@ defmodule MusicLibrary.MixProject do
# - Telemetry instrumentation whose write paths are only reachable from real # - Telemetry instrumentation whose write paths are only reachable from real
# `:telemetry.execute/3` events emitted by external libraries. # `:telemetry.execute/3` events emitted by external libraries.
# - Vendored `SqliteVec.*` library code under `lib/sqlite_vec/`. # - 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 # - All Mix tasks (developer tooling not exercised by the application test
# suite). # suite).
defp ignored_coverage_modules do defp ignored_coverage_modules do
@@ -49,8 +50,9 @@ defmodule MusicLibrary.MixProject do
MusicLibraryWeb.ErrorHTML, MusicLibraryWeb.ErrorHTML,
MusicLibraryWeb.Telemetry, MusicLibraryWeb.Telemetry,
MusicLibraryWeb.Telemetry.Storage, MusicLibraryWeb.Telemetry.Storage,
Req.RateLimiter.SystemClock,
~r/^Mix\.Tasks\./, ~r/^Mix\.Tasks\./,
~r/^SqliteVec\./ ~r/SqliteVec\./
] ]
end end