Skip to content

Commit c5de5c4

Browse files
author
Jack Dunham
committed
Test fix: tests founds in sub-directories are now actually ran when including runtests.jl.
1 parent b72a08f commit c5de5c4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/runtests.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ end
2424

2525
@time begin
2626
# tests in groups based on folder structure
27-
for testgroup in filter(isdir, readdir(@__DIR__))
27+
for testgroup in filter(f -> isdir(joinpath(@__DIR__, f)), readdir(@__DIR__))
2828
if GROUP == "ALL" || GROUP == uppercase(testgroup)
2929
groupdir = joinpath(@__DIR__, testgroup)
3030
for file in filter(istestfile, readdir(groupdir))

0 commit comments

Comments
 (0)