From 6b0dea214320350e6210924cabc9d82429644381 Mon Sep 17 00:00:00 2001 From: "Anthony D. Blaom" Date: Fri, 16 Feb 2024 15:36:20 +1300 Subject: [PATCH 1/3] fix warning for too high a level in tests --- src/test.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test.jl b/src/test.jl index 6f81aa7..11f8d53 100644 --- a/src/test.jl +++ b/src/test.jl @@ -133,7 +133,7 @@ function test(model_types, data...; mod=Main, level=2, throw=false, verbosity=1, if level < 1 || level > 2 level = level < 1 ? 1 : 2 - @warn WARN(level) + @warn WARN_LEVEL(level) end nmodels = length(model_types) From 1af65e192565a1c7b3985516521f10b7870e3ae0 Mon Sep 17 00:00:00 2001 From: "Anthony D. Blaom" Date: Fri, 16 Feb 2024 15:36:52 +1300 Subject: [PATCH 2/3] bump 0.2.6 --- Project.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Project.toml b/Project.toml index 297eddb..c332b1e 100644 --- a/Project.toml +++ b/Project.toml @@ -1,7 +1,7 @@ name = "MLJTestInterface" uuid = "72560011-54dd-4dc2-94f3-c5de45b75ecd" authors = ["Anthony D. Blaom "] -version = "0.2.5" +version = "0.2.6" [deps] MLJBase = "a7f614a8-145f-11e9-1d2a-a57a1082229d" From d907601458dc0c5e3dbbd8316f33ef83fd6f44a4 Mon Sep 17 00:00:00 2001 From: "Anthony D. Blaom" Date: Fri, 16 Feb 2024 15:44:41 +1300 Subject: [PATCH 3/3] tweak codecov settings --- .github/codecov.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/codecov.yml b/.github/codecov.yml index dda9ad0..ced4e52 100644 --- a/.github/codecov.yml +++ b/.github/codecov.yml @@ -2,4 +2,7 @@ coverage: status: project: default: - threshold: 0.5% \ No newline at end of file + threshold: 0.5% + patch: + default: + target: 80%coverage: