Packages
excoveralls
0.6.2
0.18.5
0.18.4
0.18.3
0.18.2
0.18.1
0.18.0
0.17.1
0.17.0
0.16.1
0.16.0
0.15.3
0.15.2
0.15.1
0.15.0
0.14.6
0.14.5
0.14.4
0.14.3
0.14.2
0.14.1
0.14.0
0.13.4
0.13.3
0.13.2
0.13.1
0.13.0
0.12.3
0.12.2
0.12.1
0.12.0
0.11.2
0.11.1
0.11.0
0.10.6
0.10.5
0.10.4
0.10.3
0.10.2
0.10.1
0.10.0
0.9.2
0.9.1
0.9.0
0.8.2
0.8.1
0.8.0
0.7.5
0.7.4
0.7.3
0.7.2
0.7.1
0.7.0
0.6.5
0.6.4
0.6.3
0.6.2
0.6.1
0.6.0
0.5.7
0.5.6
0.5.5
0.5.4
0.5.3
0.5.2
0.5.1
0.5.0
0.4.6
0.4.5
0.4.4
0.4.3
0.4.2
0.4.1
0.4.0
0.3.11
0.3.10
0.3.9
0.3.8
0.3.7
0.3.6
0.3.5
0.3.4
0.3.3
0.3.2
0.3.1
0.3.0
0.2.4
0.2.3
0.2.2
0.2.1
0.2.0
Coverage report tool for Elixir with coveralls.io integration.
Current section
90 Versions
Jump to
Current section
90 Versions
Compare versions
5
files changed
+10
additions
-5
deletions
| @@ -1,3 +1,8 @@ | |
| 1 | + 0.6.2 |
| 2 | + ------ |
| 3 | + #### Changes |
| 4 | + * Fix default handling for missing options (#86). |
| 5 | + |
| 1 6 | 0.6.1 |
| 2 7 | ------ |
| 3 8 | #### Changes |
| @@ -9,7 +9,7 @@ The followings are example projects. | |
| 9 9 | - [circle_sample](https://github.com/parroty/circle_sample) is for CircleCI . |
| 10 10 | - [semaphore_sample](https://github.com/parroty/semaphore_sample) is for Semaphore CI. |
| 11 11 | - [excoveralls_umbrella](https://github.com/parroty/excoveralls_umbrella) is for umbrella project. |
| 12 | - - [gitlab_sample](https://gitlab.com/zj/gitlab_sample) is for GitLab CI. |
| 12 | + - [gitlab_sample](https://gitlab.com/parroty/gitlab_sample) is for GitLab CI (using GitLab CI feature instead of coveralls.io). |
| 13 13 | |
| 14 14 | # Settings |
| 15 15 | ### mix.exs |
| @@ -32,4 +32,4 @@ | |
| 32 32 | {<<"name">>,<<"hackney">>}, |
| 33 33 | {<<"optional">>,false}, |
| 34 34 | {<<"requirement">>,<<">= 0.12.0">>}]]}. |
| 35 | - {<<"version">>,<<"0.6.1">>}. |
| 35 | + {<<"version">>,<<"0.6.2">>}. |
| @@ -22,7 +22,7 @@ defmodule ExCoveralls.Settings do | |
| 22 22 | Get coverage options from the json file. |
| 23 23 | """ |
| 24 24 | def get_coverage_options do |
| 25 | - read_config("coverage_options") |> Enum.into(Map.new) |
| 25 | + read_config("coverage_options", []) |> Enum.into(Map.new) |
| 26 26 | end |
| 27 27 | |
| 28 28 | @doc """ |
| @@ -39,7 +39,7 @@ defmodule ExCoveralls.Settings do | |
| 39 39 | Get terminal output options from the json file. |
| 40 40 | """ |
| 41 41 | def get_terminal_options do |
| 42 | - read_config("terminal_options") |> Enum.into(Map.new) |
| 42 | + read_config("terminal_options", []) |> Enum.into(Map.new) |
| 43 43 | end |
| 44 44 | |
| 45 45 | @doc """ |
| @@ -3,7 +3,7 @@ defmodule ExCoveralls.Mixfile do | |
| 3 3 | |
| 4 4 | def project do |
| 5 5 | [ app: :excoveralls, |
| 6 | - version: "0.6.1", |
| 6 | + version: "0.6.2", |
| 7 7 | elixir: "~> 1.2", |
| 8 8 | deps: deps(), |
| 9 9 | description: description(), |