File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -79,7 +79,7 @@ $ git merge upstream/master
7979```
8080
81815 . ** Develop** your code changes. A helpful resource for package development in R
82- is Hadley Wickham's [ R Packages] ( https://r-pkgs.org/preface.html ) .
82+ is Hadley Wickham's [ R Packages] ( https://r-pkgs.org/preface.html ) and [ rOpenSci Packages ] ( https://devguide.ropensci.org/ ) .
8383The changes can be added and pushed via
8484``` bash
8585$ git add your_new_file your_modified_file
@@ -99,12 +99,12 @@ When opening the PR you will be guided with a checklist.
9999
100100- [x] ** References** to related issues or PRs are added.
101101
102- - [x] The code passes ` R CMD check ` and ** all (unit) tests**
102+ - [x] The code passes ` R CMD check ` and ** all (unit) tests** .
103103To check your code for common problems, run
104104``` R
105105devtools :: check()
106106```
107- In case you only want to run the tests, run
107+ By default, this runs all tests. In case you only want to run the tests, run
108108``` R
109109devtools :: test()
110110```
You can’t perform that action at this time.
0 commit comments