Elixir equivalent for simplecov?

Is there any package like simplecov for Elixir?

mix test --cover will work out-of-box. There is coverex for nicer reports and excoveralls for Coveralls uploading. That being said, full cover is harder in Elixir because of metadata, hidden functiobs like module_info not being covered normally.

1 Like

Nope doesn’t look like it. The best available option is coverx.

@KronicDeth: I don’t want to cover hidden function like that - just only code I created/contribute. Default cover is not so good, but it looks like that coverex is what I was looking for. Thanks!
hmmm
I don’t see a button to accept your answer (of course I’m logged in).