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 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 }}
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
Original file line number Diff line number Diff line change 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 }}
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
Original file line number Diff line number Diff line change @@ -55,7 +55,7 @@ tt_sys_info_df <- data.frame(
5555tt(
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(
9393tt(
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 %>%
135135tt(
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")
You can’t perform that action at this time.
0 commit comments