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
The test_env path is very cryptic. It would be great, if it could include testenv or some other explicit name, which makes it easy to check, whether we have already loaded the test environment.
Usecase: Get idempotent execution
import TestEnv
if"testenv"∉ Base.active_project()
TestEnv.activate()
end
The text was updated successfully, but these errors were encountered:
I think that would be a good idea, to include it in the path.
I think that change would be faily easy.
Just change where we mktempdir to mkdir(joinpath(mktempdir, testenv))
The test_env path is very cryptic. It would be great, if it could include
testenv
or some other explicit name, which makes it easy to check, whether we have already loaded the test environment.Usecase: Get idempotent execution
The text was updated successfully, but these errors were encountered: