Skip to content

Commit

Permalink
skip some tests on nightly
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael Abbott committed Dec 19, 2020
1 parent f389f2b commit ebf5c70
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions test/runtests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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

0 comments on commit ebf5c70

Please sign in to comment.