aboutsummaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml37
1 files changed, 29 insertions, 8 deletions
diff --git a/.travis.yml b/.travis.yml
index 712829e..1b69aab 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -1,9 +1,30 @@
-language: r
-cache: packages
-r:
- - release
- - devel
-github_packages:
- - r-lib/covr
+language: c
+sudo: required
+dist: focal
+
+jobs:
+ include:
+ - name: linux
+ os: linux
+
+env:
+ global:
+ - USE_BSPM="true"
+ - RETICULATE_AUTOCONFIGURE="false"
+
+before_install:
+ - curl -OLs https://eddelbuettel.github.io/r-ci/run.sh && chmod 0755 run.sh
+ - ./run.sh bootstrap
+
+install:
+ - ./run.sh install_aptget python3-rdkit
+ - ./run.sh install_all
+
+script:
+ - ./run.sh run_tests
+
+after_failure:
+ - ./run.sh dump_logs
+
after_success:
- - Rscript -e 'covr::codecov()'
+ - travis_wait ./run.sh coverage

Contact - Imprint