From ebf5c706860dbaf94f563cd6f139020edd255172 Mon Sep 17 00:00:00 2001 From: Michael Abbott Date: Sat, 19 Dec 2020 16:54:25 +0100 Subject: [PATCH] skip some tests on nightly --- test/runtests.jl | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/test/runtests.jl b/test/runtests.jl index 99987d7..8f711d9 100644 --- a/test/runtests.jl +++ b/test/runtests.jl @@ -11,7 +11,7 @@ end is_buildkite = parse(Bool, get(ENV, "BUILDKITE", "false")) if is_buildkite - test_group = "2" # if this is Buildkite, we only run group 2 + test_group = "2" # only run group 2 on the GPU servers else test_group = get(ENV, "TULLIO_TEST_GROUP", "all") end @@ -20,9 +20,11 @@ end if test_group in ["all", "1"] include("group-1.jl") end -if test_group in ["all", "2"] + +if test_group in ["all", "2"] && VERSION <= v"1.6" # KA testing time-out https://github.com/JuliaGPU/KernelAbstractions.jl/issues/155 include("group-2.jl") end -if test_group in ["all", "3"] + +if test_group in ["all", "3"] && VERSION <= v"1.6" # LV issue with Vararg changes include("group-3.jl") end