This is a lightly edited README from skeletor which will be updated soon.
Now you can go to Travis and turn on continuous integration for your new package. You may need to click the "Sync account" button to get your new package to show up in the list.
If you have a codecov.io account, running your tests on Travis will trigger the code coverage job. No additional configuration is necessary
The pre-release version of the package can be pulled from GitHub using the BiocManager package:
# install.packages("remotes")
# install.packages("BiocManager")
BiocManager::install("trichelab/spiky", build_vignettes=TRUE)
The repository includes a Makefile to facilitate some common tasks.
$ make test
. Requires the testthat package. You can also specify a specific test file or files to run by adding a "file=" argument, like $ make test file=logging
. test_package
will do a regular-expression pattern match within the file names. See its documentation in the testthat
package.
$ make doc
. Requires the roxygen2 package.