Skip to content

Commit

Permalink
Table theme workaround for out of memory problems (#76)
Browse files Browse the repository at this point in the history
  • Loading branch information
walkowif authored Jun 24, 2024
1 parent dd23aab commit 0e24e97
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions template.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ tt_sys_info_df <- data.frame(
tt(
tt_sys_info_df,
caption = "System information",
theme = "striped"
theme = "bootstrap"
)
```

Expand Down Expand Up @@ -93,7 +93,7 @@ tt_git_df <- data.frame(
tt(
tt_git_df,
caption = "Git information",
theme = "striped"
theme = "bootstrap"
)
```

Expand Down Expand Up @@ -135,7 +135,7 @@ tt_riskmetric_df <- d_riskmetric %>%
tt(
tt_riskmetric_df,
caption = "Package info assessed by the R package riskmetric",
theme = "striped"
theme = "bootstrap"
)
```

Expand Down Expand Up @@ -209,7 +209,7 @@ if (require("covtracer", quietly = TRUE)) {
tt(
tt_covtracer_df,
caption = "Tracebility matrix mapping unit tests to documented behaviours.",
theme = "striped"
theme = "bootstrap"
)
} else {
cat("No test suites.")
Expand Down Expand Up @@ -238,7 +238,7 @@ if (require("covtracer", quietly = TRUE)) {
tt(
tt_untested_df,
caption = "Untested behaviours: documentation that is not covered by any test.",
theme = "striped"
theme = "bootstrap"
)
}
} else {
Expand All @@ -263,7 +263,7 @@ if (require("covtracer", quietly = TRUE)) {
tt(
tt_granularity_df,
caption = "Granularity of unit tests: directly tested exported functions.",
theme = "striped"
theme = "bootstrap"
)
} else {
cat("{covtracer} not available to produce a traceability matrix")
Expand Down

0 comments on commit 0e24e97

Please sign in to comment.