File tree 6 files changed +49
-6
lines changed
6 files changed +49
-6
lines changed Original file line number Diff line number Diff line change 1
1
# R for travis: see documentation at https://docs.travis-ci.com/user/languages/r
2
2
3
3
language : R
4
- sudo : false
5
4
cache : packages
5
+
6
+ # ##### Custom Options
7
+
8
+ # Containers have 2 CPUs by default. Speed up the build by using both.
9
+ # c.f. https://docs.travis-ci.com/user/reference/overview/#virtualisation-environment-vs-operating-system
10
+ env :
11
+ global :
12
+ - MAKEFLAGS="-j 2"
13
+ - _R_CHECK_FORCE_SUGGESTS_=false
14
+
15
+ # Run R package on both release and developer versions
16
+ jobs :
17
+ include :
18
+ - r : release
19
+ - r : devel
20
+ - r : oldrel
21
+
22
+ # If one fails, avoid running the other.
23
+ matrix :
24
+ fast_finish : true
25
+
26
+ # Enable coverage check on unit tests
6
27
after_success :
7
- - Rscript -e 'covr::codecov()'
28
+ - Rscript -e 'covr::codecov()'
Original file line number Diff line number Diff line change 1
1
Package: searcher
2
2
Title: Query Search Interfaces
3
- Version: 0.0.3.9000
3
+ Version: 0.0.3.9100
4
4
Authors@R: c(person("James", "Balamuta",
5
5
email = "
[email protected] ", role = c("aut", "cre"),
6
6
comment = c(ORCID = "0000-0003-2826-8458")))
Original file line number Diff line number Diff line change 4
4
5
5
- Renamed search portal ` search_ixquick() ` to ` search_startpage() ` due to the
6
6
merging of ixquick into startpage. (#15 )
7
+ - Update the README overview for the project. (#16 )
7
8
9
+ ## Deployment
10
+
11
+ - Improve Travis CI testing deployments by testing across an array and using
12
+ all CPUs allotted to build the container. (#16 )
13
+ - Modify thresholding for code coverage rejections. (#16 )
8
14
9
15
# searcher 0.0.3
10
16
Original file line number Diff line number Diff line change @@ -12,10 +12,12 @@ knitr::opts_chunk$set(
12
12
)
13
13
```
14
14
15
+ <!-- badges: start -->
15
16
[ ![ Travis-CI Build Status] ( https://travis-ci.org/r-assist/searcher.svg?branch=master )] ( https://travis-ci.org/r-assist/searcher )
16
17
[ ![ CRAN RStudio mirror downloads] ( http://cranlogs.r-pkg.org/badges/searcher )] ( http://www.r-pkg.org/pkg/searcher )
17
18
[ ![ CRAN\_ Status\_ Badge] ( http://www.r-pkg.org/badges/version/searcher )] ( https://cran.r-project.org/package=searcher )
18
- [ ![ Coverage Status] ( https://img.shields.io/codecov/c/github/r-assist/searcher/master.svg )] ( https://codecov.io/github/r-assist/searcher?branch=master )
19
+ [ ![ Codecov test coverage] ( https://codecov.io/gh/r-assist/searcher/branch/master/graph/badge.svg )] ( https://codecov.io/gh/r-assist/searcher?branch=master )
20
+ <!-- badges: end -->
19
21
20
22
# searcher
21
23
Original file line number Diff line number Diff line change 1
1
2
2
<!-- README.md is generated from README.Rmd. Please edit that file -->
3
3
4
+ <!-- badges: start -->
5
+
4
6
[ ![ Travis-CI Build
5
7
Status] ( https://travis-ci.org/r-assist/searcher.svg?branch=master )] ( https://travis-ci.org/r-assist/searcher )
6
8
[ ![ CRAN RStudio mirror
7
9
downloads] ( http://cranlogs.r-pkg.org/badges/searcher )] ( http://www.r-pkg.org/pkg/searcher )
8
10
[ ![ CRAN\_ Status\_ Badge] ( http://www.r-pkg.org/badges/version/searcher )] ( https://cran.r-project.org/package=searcher )
9
- [ ![ Coverage
10
- Status] ( https://img.shields.io/codecov/c/github/r-assist/searcher/master.svg )] ( https://codecov.io/github/r-assist/searcher?branch=master )
11
+ [ ![ Codecov test
12
+ coverage] ( https://codecov.io/gh/r-assist/searcher/branch/master/graph/badge.svg )] ( https://codecov.io/gh/r-assist/searcher?branch=master )
13
+ <!-- badges: end -->
11
14
12
15
# searcher
13
16
Original file line number Diff line number Diff line change 1
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%
You can’t perform that action at this time.
0 commit comments