From 64b61dadf37f7e9f2907319361d3761e131ef642 Mon Sep 17 00:00:00 2001 From: TeoGiane Date: Wed, 11 Oct 2023 14:00:23 +0200 Subject: [PATCH] Enable CI for R interface --- .github/workflows/test.yaml | 4 ++-- resources/docker/test/Dockerfile | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index b43e27f5a..0d78b1c1b 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -30,5 +30,5 @@ jobs: - name: Run Python tests run: docker run test /bin/bash -c "cd python && pytest" - # - name: run R tests - # run: docker run test Rscript --vanilla -e "testthat::test_package('bayesmixr')" + - name: run R tests + run: docker run test Rscript --vanilla -e "testthat::test_package('bayesmixr')" diff --git a/resources/docker/test/Dockerfile b/resources/docker/test/Dockerfile index 889eee784..4c144bcfc 100644 --- a/resources/docker/test/Dockerfile +++ b/resources/docker/test/Dockerfile @@ -26,6 +26,6 @@ RUN cd build \ RUN cd python && python3 -m pip install -e . # Install bayesmixr -# RUN cd R && Rscript --vanilla -e "devtools::install('bayesmixr/', quick = T, args = '--clean')" +RUN cd R && Rscript --vanilla -e "devtools::install('bayesmixr/', quick = T, args = '--clean')" LABEL Name=bayesmix-test Version=0.0.1