Skip to content
Snippets Groups Projects
Commit 72684499 authored by Sébastien Galais's avatar Sébastien Galais
Browse files

Remove 'ggplot2' and 'xts' from Suggests.

parent 7929f50b
No related branches found
No related tags found
No related merge requests found
Pipeline #181147 passed with stage
in 7 minutes and 15 seconds
......@@ -12,7 +12,7 @@ before_script:
build_markdown_v1: # to test R Markdown v1 without pandoc, must install knitr and rmarkdown
image: jangorecki/r-base-dev
script:
- R -e 'install.packages(c("curl", "jsonlite", "data.table", "tinytest", "knitr", "rmarkdown", "ggplot2", "xts"))'
- R -e 'install.packages(c("curl", "jsonlite", "data.table", "tinytest", "knitr", "rmarkdown"))'
- R CMD build .
- PKG_FILE_NAME=$(ls -1t *.tar.gz | head -n 1)
- R CMD check "${PKG_FILE_NAME}" --no-manual --as-cran
......@@ -20,7 +20,7 @@ build_markdown_v1: # to test R Markdown v1 without pandoc, must install knitr an
build_cran:
image: jangorecki/r-pkg
script:
- R -e 'install.packages(c("curl", "jsonlite", "data.table", "tinytest", "ggplot2", "xts"))'
- R -e 'install.packages(c("curl", "jsonlite", "data.table", "tinytest"))'
- R CMD build .
- PKG_FILE_NAME=$(ls -1t *.tar.gz | head -n 1)
- R CMD check "${PKG_FILE_NAME}" --no-manual --as-cran
......@@ -28,7 +28,7 @@ build_cran:
build_version_latest:
image: rocker/r-ver:latest
script:
- R -e 'install.packages(c("curl", "jsonlite", "data.table", "tinytest", "knitr", "rmarkdown", "ggplot2", "xts"))'
- R -e 'install.packages(c("curl", "jsonlite", "data.table", "tinytest", "knitr", "rmarkdown"))'
- R CMD build .
- PKG_FILE_NAME=$(ls -1t *.tar.gz | head -n 1)
- R CMD check "${PKG_FILE_NAME}" --no-manual --as-cran
......@@ -36,7 +36,7 @@ build_version_latest:
build_version_devel:
image: rocker/r-ver:devel
script:
- R -e 'install.packages(c("curl", "jsonlite", "data.table", "tinytest", "knitr", "rmarkdown", "ggplot2", "xts"))'
- R -e 'install.packages(c("curl", "jsonlite", "data.table", "tinytest", "knitr", "rmarkdown"))'
- R CMD build .
- PKG_FILE_NAME=$(ls -1t *.tar.gz | head -n 1)
- R CMD check "${PKG_FILE_NAME}" --no-manual --as-cran
\ No newline at end of file
......@@ -20,10 +20,8 @@ Imports:
data.table,
jsonlite
Suggests:
ggplot2,
knitr,
rmarkdown,
tinytest,
xts
tinytest
VignetteBuilder: knitr
RoxygenNote: 7.1.1
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment