Skip to content

Commit 35f4a0e

Browse files
author
Katharine Hyatt
committed
Fixup again
1 parent c7184f4 commit 35f4a0e

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

test/runtests.jl

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,8 @@ AMDGPU.functional() || filter!(!startswith("amd") ∘ first, testsuite)
1616

1717
# On Buildkite (GPU CI runner): only run CUDA and AMDGPU tests
1818
if get(ENV, "BUILDKITE", "false") == "true"
19-
filter!(startswith("cuda") first || startswith("amd") first , testsuite)
19+
f(str) = startswith(first(str), "cuda") || startswith(first(str), "amd")
20+
filter!(f, testsuite)
2021
end
2122

2223
# ChainRules / Mooncake: skip on Apple CI and on Julia prerelease builds

0 commit comments

Comments
 (0)