[d79ff0]: / .travis.yml

Download this file

22 lines (16 with data), 472 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
# R for travis: see documentation at https://docs.travis-ci.com/user/languages/r
language: r
cache: packages
r_check_args:
# Tell Travis that we're using bioconductor packages.
# Could also use bioc-release
r: bioc-devel
warnings_are_errors: false
# Tell Travis to run BiocCheck.
bioc_check: true
# Install the covr dependancy
r_packages:
- covr
# Run the coverage tests after a successful build.
after_success:
- Rscript -e 'covr::codecov(type="all")'