-
Notifications
You must be signed in to change notification settings - Fork 68
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
fix: derive_param_tte() fails for dplyr 1.1.0 #1965
Conversation
Hi Tarun. I have added you to the repo. Please use It will also give you the Pull Request TEmplate in your PR - not sure if that was removed or doesn't work with the fork. But the PR template will walk you through our conventions (testing, style, linting, etc) with links to our documentation. Thanks again for jumping on this! |
Hi @tarunsamanta2k20 do you need help with this PR - we were hoping to finish by the end of the week. |
@bms63 style check is failing. i don't know why. please look into this. |
Hey @tarunsamanta2k20 I put the checklist into your PR - I recommend following through each item as they will help you diagnose common issues you are facing - aslo be sure to check out our dev docs - https://pharmaverse.github.io/admiraldev/devel/articles/development_process.html |
Hi @tarunsamanta2k20 thanks for trying to make this happen. We have this and several other bug fixes being worked on in #1987 - so will close this PR. I think this was a tough issue to work on with being new to admiral. Could you try out #1839 and I can assist you on how to fix common issues from CI and R packages - then we can pick another issue for you to work on. HAppy to help and don't want to lose your enthusiasm!! @bms63 i have pushed the latest changes to the branch. this time it worked. please look into this once. |
these are failing - I believe this is due to not having |
Thank you for your Pull Request! We have developed this task checklist from the Development Process Guide to help with the final steps of the process. Completing the below tasks helps to ensure our reviewers can maximize their time on your code as well as making sure the admiral codebase remains robust and consistent.
Please check off each taskbox as an acknowledgment that you completed the task or check off that it is not relevant to your Pull Request. This checklist is part of the Github Action workflows and the Pull Request will not be merged into the
devel
branch until you have checked off each task.styler::style_file()
to style R and Rmd filesdevtools::document()
so all.Rd
files in theman
folder and theNAMESPACE
file in the project root are updated appropriatelyNEWS.md
if the changes pertain to a user-facing function (i.e. it has an@export
tag) or documentation aimed at users (rather than developers)pkgdown::build_site()
and check that all affected examples are displayed correctly and that all new functions occur on the "Reference" page.lintr::lint_package()
R CMD check
locally and address all errors and warnings -devtools::check()
Closes #1962
What happened?
If dlpyr 1.1.0 is used, some tests for derive_param_tte() fail. They pass for dplyr 1.0.5 (minimum version required by admiraldev) and also for dplyr 1.1.1.
In derive_param_tte()
should be replaced by
This is simpler and avoids the dplyr issue.