File tree Expand file tree Collapse file tree 3 files changed +11
-8
lines changed Expand file tree Collapse file tree 3 files changed +11
-8
lines changed Original file line number Diff line number Diff line change 22
22
- name : aragog
23
23
report_pkg_dir : ./tests/packages/aragog
24
24
report_template_path : ./template.qmd
25
+ report_path : ./validation_report.pdf
25
26
- name : buckbeak
26
27
report_pkg_dir : ./tests/packages/buckbeak
27
28
report_template_path : ./tests/packages/buckbeak/validation-template.qmd
29
+ report_path : ./tests/packages/buckbeak/validation_report.pdf
28
30
29
31
steps :
30
32
- name : Checkout ${{ matrix.package.name }}
42
44
if : success()
43
45
with :
44
46
name : ${{ matrix.package.name }} validation report
45
- path : validation_report.pdf
47
+ path : ${{ matrix.package.report_path }}
46
48
if-no-files-found : error
Original file line number Diff line number Diff line change 22
22
- name : buckbeak
23
23
report_pkg_dir : ./tests/packages/buckbeak
24
24
report_template_path : ./tests/packages/buckbeak/validation-template.qmd
25
+ report_path : ./tests/packages/buckbeak/validation_report.pdf
25
26
26
27
steps :
27
28
- name : Checkout ${{ matrix.package.name }}
40
41
if : success()
41
42
with :
42
43
name : ${{ matrix.package.name }} validation report
43
- path : validation_report.pdf
44
+ path : ${{ matrix.package.report_path }}
44
45
if-no-files-found : error
Original file line number Diff line number Diff line change @@ -55,7 +55,7 @@ tt_sys_info_df <- data.frame(
55
55
tt(
56
56
tt_sys_info_df,
57
57
caption = "System information",
58
- theme = "bootstrap "
58
+ theme = "default "
59
59
)
60
60
```
61
61
@@ -93,7 +93,7 @@ tt_git_df <- data.frame(
93
93
tt(
94
94
tt_git_df,
95
95
caption = "Git information",
96
- theme = "bootstrap "
96
+ theme = "default "
97
97
)
98
98
```
99
99
@@ -135,7 +135,7 @@ tt_riskmetric_df <- d_riskmetric %>%
135
135
tt(
136
136
tt_riskmetric_df,
137
137
caption = "Package info assessed by the R package riskmetric",
138
- theme = "bootstrap "
138
+ theme = "default "
139
139
)
140
140
```
141
141
@@ -209,7 +209,7 @@ if (require("covtracer", quietly = TRUE)) {
209
209
tt(
210
210
tt_covtracer_df,
211
211
caption = "Tracebility matrix mapping unit tests to documented behaviours.",
212
- theme = "bootstrap "
212
+ theme = "default "
213
213
)
214
214
} else {
215
215
cat("No test suites.")
@@ -238,7 +238,7 @@ if (require("covtracer", quietly = TRUE)) {
238
238
tt(
239
239
tt_untested_df,
240
240
caption = "Untested behaviours: documentation that is not covered by any test.",
241
- theme = "bootstrap "
241
+ theme = "default "
242
242
)
243
243
}
244
244
} else {
@@ -263,7 +263,7 @@ if (require("covtracer", quietly = TRUE)) {
263
263
tt(
264
264
tt_granularity_df,
265
265
caption = "Granularity of unit tests: directly tested exported functions.",
266
- theme = "bootstrap "
266
+ theme = "default "
267
267
)
268
268
} else {
269
269
cat("{covtracer} not available to produce a traceability matrix")
You can’t perform that action at this time.
0 commit comments