diff options
author | Johannes Ranke <jranke@uni-bremen.de> | 2020-12-08 22:59:58 +0100 |
---|---|---|
committer | Johannes Ranke <jranke@uni-bremen.de> | 2020-12-08 22:59:58 +0100 |
commit | a8963031d1274170ffe6e6278ce25aa71b1b9cc3 (patch) | |
tree | 34ca4390d5b6d2509b077a37f793bc8193ae3bee /.travis.yml | |
parent | f606838c5310f365eea1c0d6421f5c3636a4dc79 (diff) |
Try to figure out while vdiffr fails
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/.travis.yml b/.travis.yml index 914efb6c..5e0da0a5 100644 --- a/.travis.yml +++ b/.travis.yml @@ -17,8 +17,8 @@ r_github_packages: r_packages: - nlme script: - - | - R CMD build . - travis_wait 30 R CMD check mkin_*.tar.gz + - R CMD build . + - R CMD check --no-tests mkin_*.tar.gz + - Rscript -e 'devtools::test()' after_success: - - travis_wait 30 Rscript -e 'covr::codecov()' + - Rscript -e 'covr::codecov()' |