diff --git a/docs_issues.qmd b/docs_issues.qmd index e4fba66..81dde8c 100644 --- a/docs_issues.qmd +++ b/docs_issues.qmd @@ -64,3 +64,31 @@ When using 'devtools', the function [`devtools::document()`](https://www.rdocume ::: --------------------------------------------------------- + +# Overall Checktime + +## Problem + +Automatic CRAN tests give a NOTE saying the overall checktime of your package is too long. + +## Solution + +Reduce the length and quantity of your examples, vignettes and tests. + +### Details + +::: {.callout-note title="CRAN NOTE" icon=false} + +Check: Overall checktime, Result: NOTE\ +  Overall checktime 20 min > 10 min + + +::: + + +Unwrapped examples, vignettes and tests of packages are run frequently on CRAN's test servers. The overall time it takes to run all of them should therefore be less than 10 minutes in total. + +Write vignettes and tests with fewer iterations, run them on small toy data or provide precomputed results. Focus on writing sensible test and documentation, retaining high code coverage instead of disabling test or removing examples. + + + diff --git a/style.css b/style.css index 4665230..ce57397 100644 --- a/style.css +++ b/style.css @@ -1,8 +1,8 @@ hr { border: none; + border-radius: 4px; height: 5px; - color: blue; - background-color: blue; + background-color: #2780e3; }