Diff of /.travis.yml [000000] .. [d79ff0]

Switch to unified view

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