We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3a24990 commit f9d4c21Copy full SHA for f9d4c21
test/runtests.jl
@@ -24,9 +24,11 @@ isexamplefile(fn) =
24
# tests in groups based on folder structure
25
for testgroup in filter(isdir, readdir(@__DIR__))
26
if GROUP == "ALL" || GROUP == uppercase(testgroup)
27
- for file in filter(istestfile, readdir(joinpath(@__DIR__, testgroup); join=true))
+ groupdir = joinpath(@__DIR__, testgroup)
28
+ for file in filter(istestfile, readdir(groupdir))
29
+ filename = joinpath(groupdir, file)
30
@eval @safetestset $file begin
- include($file)
31
+ include($filename)
32
end
33
34
0 commit comments