Skip to content

Commit

Permalink
fix pkg_dir param in autotest_single_trace for #76
Browse files Browse the repository at this point in the history
  • Loading branch information
mpadge committed Aug 26, 2022
1 parent 6ac354d commit 2507de8
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package: autotest
Title: Automatic Package Testing
Version: 0.0.2.200
Version: 0.0.2.201
Authors@R: c(
person("Mark", "Padgham", , "[email protected]", role = c("aut", "cre"),
comment = c(ORCID = "0000-0003-2172-5265")),
Expand Down
4 changes: 3 additions & 1 deletion R/autotest-functions.R
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,7 @@ autotest_package <- function (package = ".",

res <- rbind (res,
autotest_single_trace (package,
pkg_dir,
readRDS (trace_files [i]),
fn_pars,
test = test,
Expand Down Expand Up @@ -157,7 +158,8 @@ get_package_loc <- function (package) {
#' @return An `autotest_pkg` object, derived from a \pkg{tibble}, detailing
#' instances of unexpected behaviour for every parameter of every function.
#' @noRd
autotest_single_trace <- function (pkg_dir = NULL,
autotest_single_trace <- function (package,
pkg_dir = NULL,
trace_data = NULL,
fn_pars,
test = TRUE,
Expand Down
2 changes: 1 addition & 1 deletion codemeta.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"codeRepository": "https://github.com/ropensci-review-tools/autotest",
"issueTracker": "https://github.com/ropensci-review-tools/autotest/issues",
"license": "https://spdx.org/licenses/GPL-3.0",
"version": "0.0.2.200",
"version": "0.0.2.201",
"programmingLanguage": {
"@type": "ComputerLanguage",
"name": "R",
Expand Down

0 comments on commit 2507de8

Please sign in to comment.