You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
excludedfiles = [ "test_excluded.jl", "test_incremental_compilation.jl", "test_revise.jl"]; #TODO: test_incremental_compilation has to be deactivated until Polyester support released
println("Test Error: an exception occurred while running the test file $f :")
59
+
println(ex)
60
+
finally
61
+
ifispath(stdout_path)
62
+
rm(stdout_path; force=true)
63
+
end
64
+
ifispath(stderr_path)
65
+
rm(stderr_path; force=true)
66
+
end
67
+
end
68
+
if!occursin(r"(?i)test summary", stdout_content)
69
+
nerror +=1
70
+
push!(errorfiles, f)
71
+
end
72
+
end
73
+
println("")
74
+
if nerror ==0
75
+
printstyled("Test suite: all selected test files executed (see above for results).\n"; bold=true, color=:green)
76
+
else
77
+
printstyled("Test suite: $nerror test file(s) aborted execution due to error (see above for details); files aborting execution:\n"; bold=true, color=:red)
0 commit comments