Packages

Coverex is an Elixir Coverage tool used by mix. It provides tables with overviews of module and function coverage data, includings links to annotated source code files and supports coveralls.io.

Current section

Files

Jump to
coverex lib coverex.ex
Raw

lib/coverex.ex

defmodule Coverex do
@moduledoc false
def start(_type, _args) do
Coverex.Supervisor.start_link()
end
def start() do
start(:none, :none)
end
end