Skip to content

Commit

Permalink
Mute R tests (#737)
Browse files Browse the repository at this point in the history
* Mute R tests
  • Loading branch information
savingoyal authored Oct 4, 2021
1 parent 6c19881 commit ab8a9c6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
lang: [Python, R]
lang: [Python]

steps:
- uses: actions/checkout@v2
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
lang: [Python, R]
lang: [Python]

steps:
- uses: actions/checkout@v2
Expand Down Expand Up @@ -53,9 +53,9 @@ jobs:
- name: Install R 3.6 Rlang dependencies
if: matrix.lang == 'R'
run: |
python3 -m pip install .
Rscript -e 'install.packages("devtools", repos="https://cloud.r-project.org", Ncpus=8)'
Rscript -e 'devtools::install_deps("R", dependencies=TRUE, repos="https://cloud.r-project.org", upgrade="default")'
python3 -m pip install .
R CMD INSTALL R
Rscript -e 'install.packages(c("data.table", "caret", "glmnet", "Matrix", "rjson"), repos="https://cloud.r-project.org", Ncpus=8)'
Expand Down

0 comments on commit ab8a9c6

Please sign in to comment.