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 f3735d5 commit b6de47cCopy full SHA for b6de47c
src/ReTestItems.jl
@@ -461,7 +461,12 @@ function _runtests_in_current_env(
461
Test.TESTSET_PRINT_ENABLE[] = true
462
# Cleanup test setup logs
463
foreach(Iterators.filter(endswith(".log"), readdir(RETESTITEMS_TEMP_FOLDER[], join=true))) do logfile
464
- rm(logfile; force=true) # `force` to ignore error if file already cleaned up
+ try
465
+ # See https://github.com/JuliaTesting/ReTestItems.jl/issues/124
466
+ rm(logfile; force=true) # `force` to ignore error if file already cleaned up
467
+ catch err
468
+ @debug "Error while attempting to remove $(logfile)" err
469
+ end
470
end
471
472
return nothing
0 commit comments