We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ac8dd2d commit 04cbc37Copy full SHA for 04cbc37
.github/workflows/R-CMD-check.yaml
@@ -63,10 +63,16 @@ jobs:
63
cache-version: 3
64
needs: check
65
66
+ - name: Set up Python (for reticulate)
67
+ if: matrix.config.visual_tests == true
68
+ uses: actions/setup-python@v4
69
+ with:
70
+ python-version: '3.11'
71
+
72
- name: Install kaleido
73
if: matrix.config.visual_tests == true
74
run: |
- Rscript -e 'library(reticulate); use_python(install_python()); py_install(c("kaleido", "plotly"))'
75
+ Rscript -e 'library(reticulate); use_python(Sys.which("python")); py_install(c("kaleido", "plotly"))'
76
77
# Run test() before R CMD check since, for some reason, rcmdcheck::rcmdcheck() skips vdiffr tests
78
- name: Run Tests
0 commit comments