You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -538,9 +539,10 @@ function runtests(mod::Module, ARGS; test_filter = Returns(true), RecordType = T
538
539
539
540
append!(tests, files)
540
541
for file in files
541
-
test_runners[file]=quote
542
+
expr=quote
542
543
include($(joinpath(WORKDIR, file *".jl")))
543
544
end
545
+
test_runners[file] =test_transform(file, expr)
544
546
end
545
547
end
546
548
## finalize
@@ -575,7 +577,6 @@ function runtests(mod::Module, ARGS; test_filter = Returns(true), RecordType = T
575
577
jobs =clamp(jobs, 1, length(tests))
576
578
println(stdout, "Running $jobs tests in parallel. If this is too many, specify the `--jobs=N` argument to the tests, or set the `JULIA_CPU_THREADS` environment variable.")
0 commit comments