-
Notifications
You must be signed in to change notification settings - Fork 4
/
.travis.yml
36 lines (27 loc) · 891 Bytes
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
# Use R
language: r
sudo: true
cache: packages
warnings_are_errors: false
r:
- bioc-release
# environment variables set for all builds
env:
global:
- BIOC_USE_DEVEL="FALSE" ## Use the current release version
- R_BUILD_ARGS="--no-build-vignettes --no-manual"
- R_CHECK_ARGS="--no-build-vignettes --no-manual --no-examples --no-tests --timings" ## do not build vignettes or manual
- _R_CHECK_TIMINGS_="0" ## get the timing information for the examples for all of your functions
- _R_CHECK_DONTTEST_EXAMPLES_=FALSE
# we need to install BiocInstaller for testing Bioconductor packages
bioc_required: true
# for codecov
r_packages:
- covr
# only report coverage for the release version
after_success:
- test $TRAVIS_R_VERSION_STRING = 'release' && Rscript -e 'covr::codecov()'
notifications:
email:
on_success: change
on_failure: change