Skip to content

Commit 586b7cb

Browse files
authored
fix: change theme to default (#85)
1 parent bff4e0e commit 586b7cb

File tree

3 files changed

+11
-8
lines changed

3 files changed

+11
-8
lines changed

.github/workflows/test.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,11 @@ jobs:
2222
- name: aragog
2323
report_pkg_dir: ./tests/packages/aragog
2424
report_template_path: ./template.qmd
25+
report_path: ./validation_report.pdf
2526
- name: buckbeak
2627
report_pkg_dir: ./tests/packages/buckbeak
2728
report_template_path: ./tests/packages/buckbeak/validation-template.qmd
29+
report_path: ./tests/packages/buckbeak/validation_report.pdf
2830

2931
steps:
3032
- name: Checkout ${{ matrix.package.name }}
@@ -42,5 +44,5 @@ jobs:
4244
if: success()
4345
with:
4446
name: ${{ matrix.package.name }} validation report
45-
path: validation_report.pdf
47+
path: ${{ matrix.package.report_path }}
4648
if-no-files-found: error

.github/workflows/test_no_cache.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ jobs:
2222
- name: buckbeak
2323
report_pkg_dir: ./tests/packages/buckbeak
2424
report_template_path: ./tests/packages/buckbeak/validation-template.qmd
25+
report_path: ./tests/packages/buckbeak/validation_report.pdf
2526

2627
steps:
2728
- name: Checkout ${{ matrix.package.name }}
@@ -40,5 +41,5 @@ jobs:
4041
if: success()
4142
with:
4243
name: ${{ matrix.package.name }} validation report
43-
path: validation_report.pdf
44+
path: ${{ matrix.package.report_path }}
4445
if-no-files-found: error

template.qmd

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ tt_sys_info_df <- data.frame(
5555
tt(
5656
tt_sys_info_df,
5757
caption = "System information",
58-
theme = "bootstrap"
58+
theme = "default"
5959
)
6060
```
6161

@@ -93,7 +93,7 @@ tt_git_df <- data.frame(
9393
tt(
9494
tt_git_df,
9595
caption = "Git information",
96-
theme = "bootstrap"
96+
theme = "default"
9797
)
9898
```
9999

@@ -135,7 +135,7 @@ tt_riskmetric_df <- d_riskmetric %>%
135135
tt(
136136
tt_riskmetric_df,
137137
caption = "Package info assessed by the R package riskmetric",
138-
theme = "bootstrap"
138+
theme = "default"
139139
)
140140
```
141141

@@ -209,7 +209,7 @@ if (require("covtracer", quietly = TRUE)) {
209209
tt(
210210
tt_covtracer_df,
211211
caption = "Tracebility matrix mapping unit tests to documented behaviours.",
212-
theme = "bootstrap"
212+
theme = "default"
213213
)
214214
} else {
215215
cat("No test suites.")
@@ -238,7 +238,7 @@ if (require("covtracer", quietly = TRUE)) {
238238
tt(
239239
tt_untested_df,
240240
caption = "Untested behaviours: documentation that is not covered by any test.",
241-
theme = "bootstrap"
241+
theme = "default"
242242
)
243243
}
244244
} else {
@@ -263,7 +263,7 @@ if (require("covtracer", quietly = TRUE)) {
263263
tt(
264264
tt_granularity_df,
265265
caption = "Granularity of unit tests: directly tested exported functions.",
266-
theme = "bootstrap"
266+
theme = "default"
267267
)
268268
} else {
269269
cat("{covtracer} not available to produce a traceability matrix")

0 commit comments

Comments
 (0)