Skip to content

Commit

Permalink
Merge pull request #64 from r-devel/Runtime
Browse files Browse the repository at this point in the history
Runtime
  • Loading branch information
Baltmann01 authored Nov 6, 2024
2 parents 1df4ea3 + 64c6265 commit 97bb232
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 2 deletions.
28 changes: 28 additions & 0 deletions docs_issues.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -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.



4 changes: 2 additions & 2 deletions style.css
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
hr {
border: none;
border-radius: 4px;
height: 5px;
color: blue;
background-color: blue;
background-color: #2780e3;
}


Expand Down

0 comments on commit 97bb232

Please sign in to comment.