Skip to content

Commit

Permalink
don't parallelize in tests
Browse files Browse the repository at this point in the history
  • Loading branch information
mnwright committed Jan 5, 2024
1 parent bc7bdfe commit ac0bf8c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/testthat/test-arguments.R
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
test_that("FORDE works with alpha>0", {
arf <- adversarial_rf(iris)
expect_silent(forde(arf, iris, alpha = 0.01))
arf <- adversarial_rf(iris, parallel = FALSE)
expect_silent(forde(arf, iris, parallel = FALSE, alpha = 0.01))
})

0 comments on commit ac0bf8c

Please sign in to comment.