File tree Expand file tree Collapse file tree 3 files changed +9
-5
lines changed
Expand file tree Collapse file tree 3 files changed +9
-5
lines changed Original file line number Diff line number Diff line change 11name = " ITensorPkgSkeleton"
22uuid = " 3d388ab1-018a-49f4-ae50-18094d5f71ea"
33authors = [" ITensor developers <support@itensor.org> and contributors" ]
4- version = " 0.2.0 "
4+ version = " 0.2.1 "
55
66[deps ]
77DocStringExtensions = " ffbed154-4ef7-542d-bbb7-c09d3a79fcae"
Original file line number Diff line number Diff line change @@ -24,9 +24,11 @@ isexamplefile(fn) =
2424 # tests in groups based on folder structure
2525 for testgroup in filter (isdir, readdir (@__DIR__ ))
2626 if GROUP == " ALL" || GROUP == uppercase (testgroup)
27- for file in filter (istestfile, readdir (joinpath (@__DIR__ , testgroup); join= true ))
27+ groupdir = joinpath (@__DIR__ , testgroup)
28+ for file in filter (istestfile, readdir (groupdir))
29+ filename = joinpath (groupdir, file)
2830 @eval @safetestset $ file begin
29- include ($ file )
31+ include ($ filename )
3032 end
3133 end
3234 end
Original file line number Diff line number Diff line change @@ -24,9 +24,11 @@ isexamplefile(fn) =
2424 # tests in groups based on folder structure
2525 for testgroup in filter (isdir, readdir (@__DIR__ ))
2626 if GROUP == " ALL" || GROUP == uppercase (testgroup)
27- for file in filter (istestfile, readdir (joinpath (@__DIR__ , testgroup); join= true ))
27+ groupdir = joinpath (@__DIR__ , testgroup)
28+ for file in filter (istestfile, readdir (groupdir))
29+ filename = joinpath (groupdir, file)
2830 @eval @safetestset $ file begin
29- include ($ file )
31+ include ($ filename )
3032 end
3133 end
3234 end
You can’t perform that action at this time.
0 commit comments