Skip to content

Commit c93918b

Browse files
committed
Make directory if non-existent
1 parent d22effe commit c93918b

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/ParallelTestRunner.jl

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -317,6 +317,7 @@ end
317317
function save_test_history(mod::Module, history::Dict{String, Float64})
318318
history_file = get_history_file(mod)
319319
try
320+
mkpath(dirname(history_file))
320321
serialize(history_file, history)
321322
catch e
322323
@warn "Failed to save test history to $history_file" exception=e

0 commit comments

Comments
 (0)