-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdev.R
More file actions
34 lines (26 loc) · 818 Bytes
/
dev.R
File metadata and controls
34 lines (26 loc) · 818 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
library(devtools)
check_man()
test()
test(filter = "config")
test(filter = "find_srcpkgs")
test(filter = "graph")
test(filter = "examples")
test(filter = "pkg_check")
test(filter = "pkg_load")
test(filter = "pkg_test")
test(filter = "pkg_utils")
test(filter = "pkgs_check")
test(filter = "pkgs_deps")
test(filter = "pkgs_test")
test(filter = "project_root")
test(filter = "srcpkg$")
test(filter = "srcpkgs")
check()
options(width = Sys.getenv("COLUMNS", 80))
system.time(withr::with_dir("vignettes", rmarkdown::render("testing_and_checking.Rmd")))
system.time(withr::with_dir("vignettes", rmarkdown::render("getting_started.Rmd")))
system.time(withr::with_dir("vignettes", rmarkdown::render("demo.Rmd")))
build_vignettes()
run_examples()
run_examples(run_donttest = TRUE)
rhub::rhub_check(platforms="windows")