testthat.R 184 Bytes
Newer Older
Guolin Ke's avatar
Guolin Ke committed
1
2
3
library(testthat)
library(lightgbm)

4
5
6
7
test_check(
    package = "lightgbm"
    , stop_on_failure = TRUE
    , stop_on_warning = FALSE
8
    , reporter = testthat::SummaryReporter$new()
9
)