Packages
excoverage
0.1.0
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
Current section
Files
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