Skip to content
This repository was archived by the owner on Mar 19, 2021. It is now read-only.

Commit 84d567e

Browse files
authored
Merge pull request #52 from scouten/excoveralls
Add support for code coverage reporting using excoveralls.
2 parents 91fd7d1 + 74598ee commit 84d567e

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
/_build
2+
/cover
23
/deps
34
erl_crash.dump
45
*.ez

mix.exs

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ defmodule Sqlitex.Mixfile do
77
elixir: "~> 1.2",
88
deps: deps(),
99
package: package(),
10+
test_coverage: [tool: ExCoveralls],
11+
preferred_cli_env: [
12+
"coveralls": :test,
13+
"coveralls.detail": :test,
14+
"coveralls.post": :test,
15+
"coveralls.html": :test],
1016
description: """
1117
A thin Elixir wrapper around esqlite
1218
"""]
@@ -26,6 +32,7 @@ defmodule Sqlitex.Mixfile do
2632
{:credo, "~> 0.4", only: :dev},
2733
{:dialyze, "~> 0.2.0", only: :dev},
2834
{:earmark, "~> 0.2.1", only: :dev},
35+
{:excoveralls, "~> 0.6", only: :test},
2936
{:ex_doc, "~> 0.11", only: :dev},
3037
{:inch_ex, "~> 0.5", only: :dev},
3138

0 commit comments

Comments
 (0)