Nothing
test_that("python_info() accepts system python", {
if (file.exists("/usr/bin/python")) {
info <- python_info("/usr/bin/python")
expected <- list(
python = "/usr/bin/python",
type = "system",
root = "/usr/bin"
)
expect_equal(info, expected)
}
if (file.exists("/usr/bin/python3")) {
info <- python_info("/usr/bin/python3")
expected <- list(
python = "/usr/bin/python3",
type = "system",
root = "/usr/bin"
)
expect_equal(info, expected)
}
})
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.