Skip to content

Commit 9b15533

Browse files
Update SciMLBenchmarks.jl
1 parent 5a41950 commit 9b15533

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/SciMLBenchmarks.jl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -52,22 +52,22 @@ function weave_file(folder,file,build_list=(:script,:github))
5252
end
5353
end
5454

55-
function weave_all()
55+
function weave_all(build_list=(:script,:github))
5656
for folder in readdir(joinpath(repo_directory,"benchmarks"))
5757
folder == "test.jmd" && continue
5858
weave_folder(joinpath(repo_directory,"benchmarks",folder),build_list)
5959
end
6060
end
6161

62-
function weave_folder(folder)
62+
function weave_folder(folder, build_list=(:script,:github))
6363
for file in readdir(folder)
6464
# Skip non-`.jmd` files
6565
if !endswith(file, ".jmd")
6666
continue
6767
end
6868

6969
try
70-
weave_file(folder, file)
70+
weave_file(folder, file, build_list)
7171
catch e
7272
@show folder, file
7373
@error(e)

0 commit comments

Comments
 (0)