-
-
Notifications
You must be signed in to change notification settings - Fork 3
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
Pre-release activities (prepare for CRAN release) #176
Conversation
Code Coverage Summary
Diff against main
Results for commit: 0b7de57 Minimum allowed coverage is ♻️ This comment has been updated with latest results |
Unit Tests Summary 1 files 24 suites 6s ⏱️ Results for commit 0b7de57. ♻️ This comment has been updated with latest results. |
d57332c
to
7765c0b
Compare
Signed-off-by: André Veríssimo <[email protected]>
Created this one: #196 Btw, the script uses |
# Pull Request <!--- Replace `#nnn` with your issue link for reference. --> Part of #172 #### Changes description - Add new regex style to object_name_linter to account for ADaM variables. - See `.lintr` file - `regexes = c(ANL = "^ANL_?[0-9]*$", ADaM = "^r?ADSL|ADTTE|ADLB|ADRS|ADAE$"))` - Allows for variables named `ANL` with optional underscore and numbers after. - note: can't use groups (`(rule_within_parenthesis)`) due to [r-lib/lintr/issues/2188](r-lib/lintr#2188) not being released yet. - Convert other `# nolint` to specific `# nolint: <rule name>.` for specificity --------- Signed-off-by: André Veríssimo <[email protected]> Co-authored-by: m7pr <[email protected]>
@averissimo Great work! 🚀 I checked the checklist and everything looks good. I created a small PR for minor changes.Please review and let me know your thoughts on that. #197 |
part of #176 I have made minor updates as part of review process - updated document - changed tags - added some punctuations - removed unused variable. --------- Signed-off-by: kartikeya kirar <[email protected]> Co-authored-by: André Veríssimo <[email protected]>
Signed-off-by: André Veríssimo <[email protected]>
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.
@averissimo Looks good to me! I believe it's ready to merge.
Pull Request
Fixes #172
Summary
merge_datasets
example is insufficientTitle
is not duplicated in PackageDescription
in DESCRIPTION file (e.g. this happens in teal.slice currently):::
in examples:::
, usegetFromNamespace()
function.teal.*
mentions are lower-cased and quoted/main/
in the address/latest-tag/
insteadTitle
andDescription
fields of DESCRIPTION file are quoted with'
(not backtick)New
Remove prefixes from data callsrADRS
,rADTTE
, etc... (just like{teal.data}
)return
wrapper if it is the last expression (per NEST guidelines)return
call if it is the last expression #177.lintr
:indentation_linter = NULL
Test for unused functions (in package and overall in NEST)@averissimo@title ➡️ @doctype ➡️ @description ➡️ @details ➡️ @rdname ➡️
➡️ @inheritParams ➡️ @params ➡️ @return ➡️ @seealso ➡️ @references ➡️
➡️ @examples ➡️ @export ➡️ @keywords ➡️ @noRd
@noMd
(in favor ofRoxygen: list(markdown = TRUE)
inDESCRIPTION
)To consider?
Addedresolve()
to the list of exported functions as the sub-functions are exported (resolve.delayed_variable_choices
, ...).resolve
should not be exported see aff0f35Move to its own issue
After checklist is completed (🚨 blocked until checklist is completed)
inst/WORDLIST
is minimalizedContent review (🚨 blocked for now)
All tasks above are mostly focused on structure, standards and cleanup. Here is to look at content
What to look for:
Content-related tasks should have a PR against this feature branch.