Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion NAMESPACE
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ export(logCreate)
export(logPending)
export(logRemove)
export(logSummary)
export(myQC)
export(renderQCReport)
export(renderQCSummary)
export(repoHistory)
Expand Down
2 changes: 0 additions & 2 deletions NEWS.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@

## New features and changes

- `myQC` outstanding QC check by user. (#138)

- `renderQCReport` render a QC report document. (#135)

- `logRemove` added to package to assist with removing files from the QC log. (#105)
Expand Down
9 changes: 5 additions & 4 deletions R/myQC.R
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
#' Users can also filter the results by days since their last edit, to only look at files edited
#' within a specified period of time.
#'
#' @param .user A character string indicating the user whose commit history is being examined. Default is the current system user, determined by `Sys.info()[["user"]]`.
#' @param .within_days A numeric value indicating how many days back to look for edits.
#' Default is `Inf`, meaning no time limit is applied.
#'
Expand All @@ -23,9 +22,11 @@
#' print(result$`Awaiting QC`)
#' }
#'
#' @export
myQC <- function(.user = Sys.info()[["user"]],
.within_days = Inf) {
#' @keywords internal experimental
myQC <- function(.within_days = Inf) {

.user <- svnProjInfo()$this_svn_user

rH <- repoHistory()
qclog <- logRead()

Expand Down
1 change: 0 additions & 1 deletion _pkgdown.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@ reference:
- compareFigures
- compareTables
- fileSummary
- myQC
- title: SVN Tools
desc: Easily access information about SVN repos
contents:
Expand Down
6 changes: 3 additions & 3 deletions man/myQC.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

23 changes: 0 additions & 23 deletions tests/testthat/test-myQC.R

This file was deleted.