From 3820d36231792d9ce42c3f46d9a54dd266534601 Mon Sep 17 00:00:00 2001 From: Artem Solomatin Date: Wed, 11 Oct 2023 16:39:37 +0300 Subject: [PATCH] Update README examples --- 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 ```