Skip to content

Commit

Permalink
clean up test-all
Browse files Browse the repository at this point in the history
  • Loading branch information
kylebaron committed Sep 1, 2024
1 parent f999290 commit 80c33b5
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions inst/maintenance/tests.R
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,12 @@ library(testthat)
library(dplyr)

message("tests/testthat")
e <- new.env()
a <- test_dir("tests/testthat", env = e)
a <- test_dir("tests/testthat")
a$result <- NULL
message("\ninst/maintenance/unit")
e <- new.env()
b <- test_dir("inst/maintenance/unit/", env = e)
b <- test_dir("inst/maintenance/unit/")
b$result <- NULL
e <- new.env()
c <- test_dir("inst/maintenance/unit-cpp/", env = e)
c <- test_dir("inst/maintenance/unit-cpp/")
c$result <- NULL

results <- dplyr::bind_rows(as_tibble(a),as_tibble(b),as_tibble(c))
Expand Down

0 comments on commit 80c33b5

Please sign in to comment.