View source: R/branch_metrics.R
| compare_brancht | R Documentation |
Given a test-file and two branches, returns the run-time details of the file against the first commit till the latest common commit in branch1, and against the latest commit in branch2.
compare_brancht(test_path, branch1, branch2 = "master")
test_path |
File-path for the test file to be tested. |
branch1 |
Branch against whose commits the test file is to be tested. |
branch2 |
Branch into which branch1 is supposedly to be merged. |
compare_brancht returns an object of class "data.frame".
The data-frame consists of the following columns:
test_name
metric_name
status
metric_val
message
date_time
branch
Function assumes the current directory to be the root directory of the package being tested.
## Not run:
# Set the current directory to the git repository concerned.
setwd("./Path/to/repository")
# Set the file-path
t_path <- "Path/to/file"
# Load the library and pass the parameters to the function
library(Rperform)
compare_brancht(test_path = t_path, branch1 = "helper", branch2 = "master")
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.