From ec176d6513a08eb939a2af245c22d39c896ca0a5 Mon Sep 17 00:00:00 2001 From: takasehideki Date: Wed, 6 Nov 2024 18:16:34 +0900 Subject: [PATCH] Set threshold of `mix.test --cover` to 80% --- mix.exs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/mix.exs b/mix.exs index b84f5ed..905cdd7 100644 --- a/mix.exs +++ b/mix.exs @@ -93,7 +93,9 @@ defmodule Zenohex.MixProject do defp test_coverage() do [ - ignore_modules: [Zenohex.Nif] + ignore_modules: [Zenohex.Nif], + # WHY: see https://github.com/biyooon-ex/zenohex/issues/77 + summary: [threshold: 80] ] end