Skip to content

Commit ebf5c70

Browse files
author
Michael Abbott
committed
skip some tests on nightly
1 parent f389f2b commit ebf5c70

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

test/runtests.jl

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ end
1111

1212
is_buildkite = parse(Bool, get(ENV, "BUILDKITE", "false"))
1313
if is_buildkite
14-
test_group = "2" # if this is Buildkite, we only run group 2
14+
test_group = "2" # only run group 2 on the GPU servers
1515
else
1616
test_group = get(ENV, "TULLIO_TEST_GROUP", "all")
1717
end
@@ -20,9 +20,11 @@ end
2020
if test_group in ["all", "1"]
2121
include("group-1.jl")
2222
end
23-
if test_group in ["all", "2"]
23+
24+
if test_group in ["all", "2"] && VERSION <= v"1.6" # KA testing time-out https://github.com/JuliaGPU/KernelAbstractions.jl/issues/155
2425
include("group-2.jl")
2526
end
26-
if test_group in ["all", "3"]
27+
28+
if test_group in ["all", "3"] && VERSION <= v"1.6" # LV issue with Vararg changes
2729
include("group-3.jl")
2830
end

0 commit comments

Comments
 (0)