testthat.R 211 Bytes
Newer Older
Guolin Ke's avatar
Guolin Ke committed
1
library(testthat)
2
library(lightgbm)  # nolint: [unused_import]
Guolin Ke's avatar
Guolin Ke committed
3

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