Merge pull request #1118 from yuvipanda/no-ggplot2

Use a smaller R library in our tests
pull/1122/head
Min RK 2022-01-25 15:53:33 +01:00 zatwierdzone przez GitHub
commit 3f07830957
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
14 zmienionych plików z 15 dodań i 15 usunięć

Wyświetl plik

@ -1,3 +1,3 @@
dependencies:
- r-base=3.6
- r-ggplot2
- r-testthat

Wyświetl plik

@ -2,6 +2,6 @@
jupyter serverextension list 2>&1 | grep jupyter_server_proxy
jupyter nbextension list 2>&1 | grep jupyter_server_proxy
R -e "library('ggplot2')"
R -e "library('testthat')"
# Fail if version is not 3.6
R -e 'if (!(version$major == "3" && as.double(version$minor) >= 6 && as.double(version$minor) < 7)) quit("yes", 1)'
R -e 'if (!(version$major == "3" && as.double(version$minor) >= 6 && as.double(version$minor) < 7)) quit("yes", 1)'

Wyświetl plik

@ -1 +1 @@
install.packages("ggplot2")
install.packages("testthat")

Wyświetl plik

@ -1,5 +1,5 @@
#!/usr/bin/env Rscript
library('ggplot2')
library('testthat')
print(version)

Wyświetl plik

@ -1 +1 @@
install.packages("ggplot2")
install.packages("testthat")

Wyświetl plik

@ -1,5 +1,5 @@
#!/usr/bin/env Rscript
library('ggplot2')
library('testthat')
print(version)
# Fail if version is not 3.6

Wyświetl plik

@ -1 +1 @@
install.packages("ggplot2")
install.packages("testthat")

Wyświetl plik

@ -1,5 +1,5 @@
#!/usr/bin/env Rscript
library('ggplot2')
library('testthat')
print(version)
# Fail if version is not 4.0

Wyświetl plik

@ -1 +1 @@
install.packages("ggplot2")
install.packages("testthat")

Wyświetl plik

@ -1,5 +1,5 @@
#!/usr/bin/env Rscript
library('ggplot2')
library('testthat')
print(version)
# Fail if version is not 4.0

Wyświetl plik

@ -1 +1 @@
install.packages("ggplot2")
install.packages("testthat")

Wyświetl plik

@ -1,5 +1,5 @@
#!/usr/bin/env Rscript
library('ggplot2')
library('testthat')
# Fail if version is not 4.1
if (!(version$major == "4" && as.double(version$minor) >= 1 && as.double(version$minor) < 2)) {

Wyświetl plik

@ -1 +1 @@
install.packages("ggplot2")
install.packages("testthat")

Wyświetl plik

@ -1,5 +1,5 @@
#!/usr/bin/env Rscript
library('ggplot2')
library('testthat')
# Fail if version is not 4.1
if (!(version$major == "4" && as.double(version$minor) >= 1 && as.double(version$minor) < 2)) {