Skip to content
This repository was archived by the owner on May 5, 2022. It is now read-only.

Commit 6f26475

Browse files
committed
default coveralls file width to 60 columns
1 parent 0f77e60 commit 6f26475

File tree

3 files changed

+14
-0
lines changed

3 files changed

+14
-0
lines changed

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,12 @@ The format is based on [Keep a
66
Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to
77
[Semantic Versioning](https://semver.org/spec/v2.0.0.html).
88

9+
## 0.0.3 - 2020-08-26
10+
11+
### Added
12+
13+
- The default coveralls file column width is now 60 columns
14+
915
## 0.0.2 - 2020-08-24
1016

1117
### Added

templates/coveralls.json

+3
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,8 @@
33
"minimum_coverage": 100,
44
"treat_no_relevant_lines_as_covered" : true
55
},
6+
"terminal_options": {
7+
"file_column_width": 60
8+
},
69
"skip_files": <%= Kernel.inspect(@coveralls_skip_files) %>
710
}

test/harness_dotfiles_test.exs

+5
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,11 @@ defmodule HarnessDotfilesTest do
2525
".formatter.exs" |> fixture() |> Code.eval_file()
2626
end
2727

28+
test "the json config can be read as valid json" do
29+
assert {:ok, _json} =
30+
"coveralls.json" |> fixture() |> File.read!() |> Jason.decode()
31+
end
32+
2833
defp fixture(filename) do
2934
Path.join("fixture", filename)
3035
end

0 commit comments

Comments
 (0)