-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
less strict checking for 'outputs' folder. Fixes #72
- Loading branch information
Showing
7 changed files
with
74 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
Package: reportfactory | ||
Title: Lightweight Infrastructure for Handling Multiple R Markdown Documents | ||
Version: 0.1.2.9 | ||
Version: 0.1.3 | ||
Authors@R: c( | ||
person("Thibaut", "Jombart", role = "aut", email = "[email protected]"), | ||
person("Amy", "Gimma", role = "ctb", email = "[email protected]"), | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,15 @@ | ||
Further to Brian Ripley's email on 21-01-2020 I have added a System | ||
Requirement on Pandoc along with additional, user facing code, that errors | ||
if it is not installed. Check's requiring pandoc are now skipped on Solaris. | ||
## Reason for update | ||
* minor bugfix/workflow improvement. | ||
* resolves a failing test I noticed on the macos checks. | ||
|
||
## Tested on | ||
* Fedora 33, local R installation, R 4.0.3 (2020-10-10) | ||
* Solaris via RHub (unsure of version but I believe it is the current release) | ||
* Fedora 33, local R installation, (unstable) (2021-01-14 r79827) | ||
* win-builder, R Under development (unstable) (2021-02-13 r80000) | ||
|
||
### R CMD check results for above environments | ||
0 errors | 0 warnings | 1 note | ||
0 errors | 0 warnings | 0 note | ||
|
||
|
||
|
||
Days since last update: 0 | ||
|
||
Hopefully this is ok as at request of Brian Ripley | ||
|
18 changes: 18 additions & 0 deletions
18
tests/testthat/_snaps/compile_reports/outputs_deleted_param_report_check.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
Testing parameterised reports | ||
================ | ||
|
||
test parameter output | ||
|
||
``` r | ||
a <- params$test1 | ||
a | ||
``` | ||
|
||
## [1] "three" | ||
|
||
``` r | ||
b <- params$test2 | ||
b | ||
``` | ||
|
||
## [1] "four" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters