Closed lgoettgens closed 11 months ago
All modified and coverable lines are covered by tests :white_check_mark:
Comparison is base (
0f04e76
) 76.24% compared to head (0e439ea
) 76.27%.
:umbrella: View full report in Codecov by Sentry.
:loudspeaker: Have feedback on the report? Share it here.
On the CI testing setup of AbstractAlgebra.jl, I got the following error in the sub-process of
test_persistent_tasks
. (log)After some digging around, I found that
LOAD_PATH
was just["@", "/tmp/jl_yzJAOE"]
there, so that's the reason whyPkg
could not be found. The easiest (and only) solution I could find, was to clear the ENV of the sub-process explicitly to allow a default value forLOAD_PATH
to populate (see https://docs.julialang.org/en/v1/manual/environment-variables/#JULIA_LOAD_PATH).Furthermore, this PR allows errors in the sub-process to show up in the stderr of the main process.