We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d2ec552 commit 0d9ed77Copy full SHA for 0d9ed77
test/Project.toml
@@ -30,4 +30,4 @@ EnzymeTestUtils = {path = "../lib/EnzymeTestUtils"}
30
31
[compat]
32
EnzymeTestUtils = "0.2.1"
33
-ParallelTestRunner = "0.1.1"
+ParallelTestRunner = "1.0.1"
test/runtests.jl
@@ -1,7 +1,8 @@
1
+import Enzyme
2
+import Enzyme_jll
3
using ParallelTestRunner: runtests
-using Enzyme_jll: Enzyme_jll
4
-function testfilter(test)
5
+function test_filter(test)
6
if test ∈ ("metal", "cuda", "amdgpu")
7
return false
8
end
@@ -50,4 +51,4 @@ const init_code = quote
50
51
52
53
@info "Testing against" Enzyme_jll.libEnzyme
-runtests(ARGS; testfilter, init_code)
54
+runtests(Enzyme, ARGS; test_filter, init_code)
0 commit comments