-
-
Notifications
You must be signed in to change notification settings - Fork 1
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
809 adjust default precision@main #810
Conversation
Unit Tests Summary 1 files 58 suites 2m 55s ⏱️ Results for commit 874f232. ♻️ This comment has been updated with latest results. |
Unit Test Performance Difference
Additional test case details
Results for commit abc114b ♻️ This comment has been updated with latest results. |
…n' into 809-adjust-default-precision@main
@cicdguy would you have time to look at the integation test ? I don't understand what is the difference between code and doc that makes the test fail. Thanks a lot. |
Yeah this is strange, as they look identical. I suspect it has something to do with the trailing newline in the docs (in egt01_main
Code: function(adam_db, dataset = "adeg", arm_var = "ACTARM",
lbl_overall = NULL, row_split_var = NULL, summaryvars
= c("AVAL", "CHG"), visitvar = "AVISIT", precision =
list(default = 0L), page_var = "PARAMCD", .stats =
c("n", "mean_sd", "median", "range"), skip = list(CHG
= "BASELINE"), ...)
Docs: function(adam_db, dataset = "adeg", arm_var = "ACTARM",
lbl_overall = NULL, row_split_var = NULL, summaryvars
= c("AVAL", "CHG"), visitvar = "AVISIT", precision =
list(default = 0L), page_var = "PARAMCD", .stats =
c("n", "mean_sd", "median", "range"), skip = list(CHG
= "BASELINE"), ...)
* checking Rd \usage sections ... OK Let me investigate further. |
Perhaps relevant? r-lib/roxygen2#1484 |
It isn't but using the same trick ( Line 13 in 1f182c0
thank you so much @cicdguy Note for future self: careful with documented functions generated programmatically. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Lgtm! I would avoid large snapshots as they make PR reviews problematic with my very old machine. Also, it helps to have more selective snapshot tests, so to have more clear regression tests at the end. Anyway very clear solution of the needed values ;) Thanks @BFalquet
I need to confirm the |
Thanks, PARAMCD codes confirmed thank you |
close #809
update default value in
egt01
, tests and NEWSthank you for the review