8000 Fix 1133 - update qualification report filepath by mattroumaya · Pull Request #1135 · Gilead-BioStats/gsm · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Fix 1133 - update qualification report filepath #1135

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Apr 5, 2023
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
3 changes: 2 additions & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@ Authors@R: c(
person("Spencer", "Childress", email="spencer.childress@gilead.com", role = c("aut")),
person("Li", "Ge", role = c("aut")),
person("Colleen", "McLaughlin", email="colleen.mclaughlin@atorusresearch.com", role = c("aut")),
person("Chelsea", "Dickens", email="chelsea.dickens@atorusresearch.com", role = c("aut"))
person("Chelsea", "Dickens", email="chelsea.dickens@atorusresearch.com", role = c("aut")),
person("Maya", "Gans", email="maya.gans@atorusresearch.com", role = c("aut"))
)
URL: https://github.com/Gilead-BioStats/gsm
BugReports: https://github.com/Gilead-BioStats/gsm/issues
Expand Down
1 change: 1 addition & 0 deletions man/gsm-package.Rd

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

6 changes: 2 additions & 4 deletions vignettes/articles/QualificationWorkflow.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -150,11 +150,9 @@ Using the specifications, test cases, and test code outlined above the qualifica
An overview of the qualification test results is presented as a table, with one row for each function that has been tested. The results are presented as a series of columns for the number of tests, number of passing tests, number of failing tests, and number of skipped tests.

```{r}
spec_list <- list.files(here::here('tests', 'testqualification', 'qualification'), pattern = ".R")
spec_list <- list.files(here::here('tests', 'testqualification', 'qualification'), pattern = ".R", full.names = TRUE)
spec_list <- spec_list[-1]
spec_list <- spec_list[1:16]
# spec_list <- spec_list[1:15]
spec_list <- paste0("~/gsm/tests/testqualification/qualification/", spec_list)

scrape <- map_df(spec_list, function(x) {
testResultsRaw <- testthat::test_file(x, reporter = testthat::ListReporter, package = "gsm") %>%
as_tibble()
Expand Down
0