From 0d6d2fdc32e2498b11ea83cf312036511b634d26 Mon Sep 17 00:00:00 2001 From: Claudio Ortolina Date: Mon, 25 May 2026 22:15:31 +0300 Subject: [PATCH] Ignore application and router in cover config --- mix.exs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/mix.exs b/mix.exs index 7f7e5769..95550dff 100644 --- a/mix.exs +++ b/mix.exs @@ -43,6 +43,7 @@ defmodule MusicLibrary.MixProject do # suite). defp ignored_coverage_modules do [ + MusicLibrary.Application, MusicLibrary.Release, MusicLibrary.Repo, MusicLibrary.BackgroundRepo, @@ -54,6 +55,7 @@ defmodule MusicLibrary.MixProject do MusicLibraryWeb, MusicLibraryWeb.ErrorHTML, MusicLibraryWeb.ErrorJSON, + MusicLibraryWeb.Router, MusicLibraryWeb.SessionHTML, MusicLibraryWeb.Telemetry, MusicLibraryWeb.Telemetry.Storage,