kopia lustrzana https://github.com/jupyterhub/repo2docker
commit
43525352a7
|
@ -81,7 +81,7 @@ class RBuildPack(PythonBuildPack):
|
||||||
"4.1": "4.1.2-1.1804.0",
|
"4.1": "4.1.2-1.1804.0",
|
||||||
}
|
}
|
||||||
# the default if nothing is specified
|
# the default if nothing is specified
|
||||||
r_version = "3.6"
|
r_version = "4.1"
|
||||||
|
|
||||||
if not hasattr(self, "_r_version"):
|
if not hasattr(self, "_r_version"):
|
||||||
parts = self.runtime.split("-")
|
parts = self.runtime.split("-")
|
||||||
|
|
|
@ -1,2 +1,7 @@
|
||||||
#!/usr/bin/env Rscript
|
#!/usr/bin/env Rscript
|
||||||
library('ggplot2')
|
library('ggplot2')
|
||||||
|
|
||||||
|
# Fail if version is not 4.1
|
||||||
|
if (!(version$major == "4" && as.double(version$minor) >= 1 && as.double(version$minor) < 2)) {
|
||||||
|
quit("yes", 1)
|
||||||
|
}
|
|
@ -22,7 +22,7 @@ def test_unsupported_version(tmpdir):
|
||||||
|
|
||||||
|
|
||||||
@pytest.mark.parametrize(
|
@pytest.mark.parametrize(
|
||||||
"runtime_version, expected", [("", "3.6"), ("3.6", "3.6"), ("3.5.1", "3.5")]
|
"runtime_version, expected", [("", "4.1"), ("3.6", "3.6"), ("3.5.1", "3.5")]
|
||||||
)
|
)
|
||||||
def test_version_specification(tmpdir, runtime_version, expected):
|
def test_version_specification(tmpdir, runtime_version, expected):
|
||||||
tmpdir.chdir()
|
tmpdir.chdir()
|
||||||
|
|
Ładowanie…
Reference in New Issue