Learn R Programming

Rperform (version 0.0.0.9000)

time_commit: Test file's run-time.

Description

Given a test-file's path, measures its run-time against the commit specified by the commit object passed as a parameter.

Usage

time_commit(test_path, test_commit)

Arguments

test_path

File-path for the test file whose run-time is to be checked.

test_commit

git2r commit object corresponding to which the run-time is to be checked.

Value

time_commit returns an object of class "data.frame". The data-frame consists of the following columns: test_name metric_name status metric_val message sha date_time

Warning

Function assumes the current directory to be the root directory of the package being tested.

See Also

commits

Examples

Run this code
# NOT RUN {
## Example-1

# Set the current directory to the git repository concerned.
setwd("./Path/to/repository")

# Obtain the commit object
commit_list <- git2r::commits()
t_commit <- commit_list[[1]]

# Specify the test-file path
t_path <- "Path/to/file"

# Pass the parameters and obtain the run-time details
library(Rperform)
time_commit(t_path, t_commit)
# }
# NOT RUN {
# }

Run the code above in your browser using DataLab