Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Table theme workaround for out of memory problems #76

Merged
merged 10 commits into from
Jun 24, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading