From 55686be7aef03364ac84e89586005260b83b62e8 Mon Sep 17 00:00:00 2001 From: Artem Solomatin Date: Thu, 12 Oct 2023 02:17:50 +0300 Subject: [PATCH] Update README examples (#320) --- README.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 93cd0811..c28dd698 100644 --- a/README.md +++ b/README.md @@ -46,7 +46,8 @@ def project do coveralls: :test, "coveralls.detail": :test, "coveralls.post": :test, - "coveralls.html": :test + "coveralls.html": :test, + "coveralls.cobertura": :test ] # if you want to use espec, # test_coverage: [tool: ExCoveralls, test_task: "espec"] @@ -55,7 +56,7 @@ end defp deps do [ - {:excoveralls, "~> 0.10", only: :test}, + {:excoveralls, "~> 0.18", only: :test}, ] end ```