From 215e2752a47485de848b041a5c0702046645f366 Mon Sep 17 00:00:00 2001 From: Philip Swannell <18028484+PGS62@users.noreply.github.com> Date: Sun, 7 Apr 2024 11:36:22 +0100 Subject: [PATCH] Omit testing corkendall_fromfile on Julia 1.3 and below --- test/runtests.jl | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/test/runtests.jl b/test/runtests.jl index 249c8e5..36516a8 100644 --- a/test/runtests.jl +++ b/test/runtests.jl @@ -3,7 +3,9 @@ using Test include("naive_implementations.jl") include("compare_implementations.jl") -include("corkendall_fromfile.jl") +if VERSION >= v"1.3"# otherwise "Unsatisfiable requirements detected for package CSV [336ed68f]:" + include("corkendall_fromfile.jl") +end include("versus_naive.jl") include("rankcorr.jl") include("pairwise.jl")