Nothing
context("runs")
run_dir <- with_tests_dir({
x <- training_run(echo = FALSE)$run_dir
normalizePath(x, winslash = "/")
})
test_that("run dir is created by initialize_run()", {
expect_true(dir.exists(run_dir))
})
test_that("list runs returns a data frame", {
runs <- ls_runs()
expect_true(is.data.frame(runs))
expect_true(all(c("start", "run_dir") %in% colnames(runs)))
})
test_that("latest_run retrieves run_dir", {
with_tests_dir({
expect_identical(basename(run_dir), basename(latest_run()$run_dir))
})
})
test_that("completed flag is set by training_run", {
with_tests_dir({
expect_true(ls_runs(latest_n = 1)$completed)
})
})
test_that("clean_runs and purge_runs remove runs", {
# then clean
with_tests_dir({
clean_runs(confirm = FALSE)
expect_equal(nrow(ls_runs()), 0)
expect_true(nrow(ls_runs(runs_dir = "runs/archive")) > 0)
# then purge
purge_runs(confirm = FALSE)
expect_equal(nrow(ls_runs(runs_dir = "runs/archive")), 0)
})
})
test_that("flags.yml can be passed to training_run", {
with_tests_dir({
training_run(flags = "flags-learning-rate.yml", echo = FALSE)
expect_equal(ls_runs(latest_n = 1)$flag_learning_rate, 0.05)
})
})
test_that("training errors are handled", {
tryCatch(
{
with_tests_dir({
training_run("train-error.R", echo = FALSE)
})
}, error = function(e) {
expect_equal(e$message, "Training error occurred")
}
)
run <- with_tests_dir({
ls_runs(latest_n = 1)
})
expect_true(!run$completed)
expect_equal(run$error_message, "Training error occurred")
})
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.