Skip to content

Commit

Permalink
test for ambiguities, non row_tables
Browse files Browse the repository at this point in the history
  • Loading branch information
tylerjthomas9 committed Jan 11, 2024
1 parent 3b25096 commit b463b7e
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
7 changes: 6 additions & 1 deletion test/mlj_interface.jl
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,12 @@
@test isempty(failures)
end
@testset "CatBoostClassifier" begin
for data in [MLJTestInterface.make_binary(), MLJTestInterface.make_multiclass()]
for data in [
MLJTestInterface.make_binary(),
MLJTestInterface.make_multiclass(),
MLJTestInterface.make_binary(row_table=true),
MLJTestInterface.make_multiclass(row_table=false),
]
X = data[1]
y = data[2]
failures, summary = MLJTestInterface.test([CatBoostClassifier], X, y;
Expand Down
2 changes: 1 addition & 1 deletion test/runtests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@ const MLJ_EXAMPLES_DIR = joinpath(@__DIR__, "..", "examples/mlj")
include("wrapper.jl")
include("mlj_interface.jl")

Aqua.test_all(CatBoost; ambiguities=false)
Aqua.test_all(CatBoost)

0 comments on commit b463b7e

Please sign in to comment.