Skip to content

Commit 4903302

Browse files
committed
Add scoverage + codecov report
1 parent e6ec08f commit 4903302

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

.travis.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ scala:
55
- 2.12.4
66

77
script:
8-
- sbt clean test
8+
- sbt clean coverage test coverageReport
99

1010
after_success:
1111
- bash <(curl -s https://codecov.io/bash)

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ Merkle trees are typically implemented as binary trees where each non-leaf node
44
The leaves can either be the data itself or a hash/signature of the data.
55

66
[![Build Status](https://travis-ci.org/arukavytsia/merkle-tree.svg)](https://travis-ci.org/arukavytsia/merkle-tree)
7+
[![Test Coverage](https://codecov.io/gh/arukavytsia/merkle-tree/branch/master/graphs/badge.svg)](https://codecov.io/gh/arukavytsia/merkle-tree/?branch=master)
78
[![License](https://img.shields.io/badge/license-GNU-green.svg)](https://github.com/arukavytsia/merkle-tree/blob/master/LICENSE)
89

910
## API

project/plugins.sbt

+3-1
Original file line numberDiff line numberDiff line change
@@ -1 +1,3 @@
1-
logLevel := Level.Warn
1+
logLevel := Level.Warn
2+
3+
addSbtPlugin("org.scoverage" % "sbt-scoverage" % "1.5.1")

0 commit comments

Comments
 (0)