From 2b1b8c8909b6e81540fc1d14c8596f8281152427 Mon Sep 17 00:00:00 2001 From: woylie <13847569+woylie@users.noreply.github.com> Date: Wed, 11 Sep 2024 18:45:11 +0900 Subject: [PATCH] add mix coveralls.html.all --- mix.exs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/mix.exs b/mix.exs index 50f6dc4..8bfb474 100644 --- a/mix.exs +++ b/mix.exs @@ -19,6 +19,7 @@ defmodule Flop.MixProject do "coveralls.detail": :test, "coveralls.github": :test, "coveralls.html": :test, + "coveralls.html.all": :test, "coveralls.json": :test, "coveralls.json.all": :test, "coveralls.post": :test, @@ -114,6 +115,10 @@ defmodule Flop.MixProject do "test.postgres": &test_adapters(["postgres"], &1), "test.sqlite": &test_adapters(["sqlite"], &1), "test.adapters": &test_adapters/1, + "coveralls.html.all": [ + "test.adapters --cover", + "coveralls.html --import-cover cover" + ], "coveralls.json.all": [ "test.adapters --cover", "coveralls.json --import-cover cover"