From 115e29fa7d9dcbb8a0e700ca8f2d0aec5f7b1dcc Mon Sep 17 00:00:00 2001 From: Takafumi Arakaki Date: Thu, 14 May 2020 20:04:19 -0700 Subject: [PATCH] Skip ambiguity tests on Julia 1.0 --- test/runtests.jl | 3 +++ 1 file changed, 3 insertions(+) diff --git a/test/runtests.jl b/test/runtests.jl index 646e32d5..5134d6ed 100644 --- a/test/runtests.jl +++ b/test/runtests.jl @@ -3,6 +3,9 @@ using Test @testset "$file" for file in sort([file for file in readdir(@__DIR__) if match(r"^test_.*\.jl$", file) !== nothing]) + # Ambiguity tests fail on Julia 1.0 as of writing. + VERSION < v"1.1" && file == "test_aqua.jl" && continue + include(file) end