Nothing
test_that("Native run conda command", {
testthat::skip_if_offline()
testthat::skip_on_cran()
px_res <- native_cmd("--help", verbose = FALSE)
expect_equal(
object = px_res$status,
expected = 0
)
px_res <- native_cmd("env", "list", verbose = FALSE)
expect_equal(
object = px_res$status,
expected = 0
)
px_res <- native_cmd("--version", verbose = FALSE)
expect_equal(
object = px_res$status,
expected = 0
)
})
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.