Skip to content

Commit a83c321

Browse files
committedDec 16, 2017
codecov?
1 parent 991e3f3 commit a83c321

File tree

6 files changed

+23
-5
lines changed

6 files changed

+23
-5
lines changed
 

‎.Rbuildignore

+1
Original file line numberDiff line numberDiff line change
@@ -11,3 +11,4 @@
1111
^_pkgdown\.yml$
1212
^inst/data_files$
1313
^guía_de_estilo\.md$
14+
^codecov\.yml$

‎.travis.yml

+4-1
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,7 @@ addons:
88
apt:
99
packages:
1010
- libnetcdf-dev
11-
- netcdf-bin
11+
- netcdf-bin
12+
13+
after_success:
14+
- Rscript -e 'covr::codecov()'

‎DESCRIPTION

+4-2
Original file line numberDiff line numberDiff line change
@@ -32,10 +32,12 @@ Imports:
3232
Formula,
3333
formula.tools
3434
RoxygenNote: 6.0.1.9000
35-
Suggests: knitr,
35+
Suggests:
36+
knitr,
3637
rmarkdown,
3738
testthat,
3839
reshape2,
39-
irlba
40+
irlba,
41+
covr
4042
VignetteBuilder: knitr
4143
Roxygen: list(markdown = TRUE)

‎README.Rmd

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ knitr::opts_chunk$set(
1414

1515
# metR
1616

17-
[![Build Status](https://travis-ci.org/eliocamp/metR.svg?branch=master)](https://travis-ci.org/eliocamp/metR)
17+
[![Build Status](https://travis-ci.org/eliocamp/metR.svg?branch=master)](https://travis-ci.org/eliocamp/metR) [![Coverage status](https://codecov.io/gh/eliocamp/metR//branch/master/graph/badge.svg)](https://codecov.io/github/eliocamp/metR/?branch=master)
1818

1919
meteR packages several functions and utilities that make R better for hadling meteorological data in the tidy data paradigm. It's not intended to be the be-all and end-all and is (at least for now) mostly a packaging of assorted wrapers and tricks that I wrote for my day to day work as a researcher in atmospheric sciences. Since it's grown organically and for my own needs, do not expect a heavy emphasis on consistency across functions and do expect functions written with specific use cases in mind.
2020

‎README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
metR
44
====
55

6-
[![Build Status](https://travis-ci.org/eliocamp/metR.svg?branch=master)](https://travis-ci.org/eliocamp/metR)
6+
[![Build Status](https://travis-ci.org/eliocamp/metR.svg?branch=master)](https://travis-ci.org/eliocamp/metR) [![Coverage status](https://codecov.io/gh/eliocamp/metR//branch/master/graph/badge.svg)](https://codecov.io/github/eliocamp/metR/?branch=master)
77

88
meteR packages several functions and utilities that make R better for hadling meteorological data in the tidy data paradigm. It's not intended to be the be-all and end-all and is (at least for now) mostly a packaging of assorted wrapers and tricks that I wrote for my day to day work as a researcher in atmospheric sciences. Since it's grown organically and for my own needs, do not expect a heavy emphasis on consistency across functions and do expect functions written with specific use cases in mind.
99

‎codecov.yml

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
comment: false
2+
3+
coverage:
4+
status:
5+
project:
6+
default:
7+
target: auto
8+
threshold: 1%
9+
patch:
10+
default:
11+
target: auto
12+
threshold: 1%

0 commit comments

Comments
 (0)
Please sign in to comment.