Packages

A tool for calculating test coverage written from the beginning to the end in elixir. Only function coverage support - WIP: lines and branches.

Current section

Files

Jump to
excoverage lib mix tasks excoverage.ex
Raw

lib/mix/tasks/excoverage.ex

defmodule Mix.Tasks.Excoverage do
@moduledoc """
Helper module for mix task
"""
@doc """
Runs a process from mix task
"""
@spec run(argv :: [binary()]) :: :ok
def run(argv) do
Excoverage.main([{:mix_task, true} | argv])
end
end