Suppose I am using Julia 1.12, have
[workspace]
projects = ["test"]
in my Project.toml, and currently the test is my active project.
Is there a one-linear solution for running the tests from the REPL, equivalent to
SomePackage/test> activate ..
SomePackage> test
SomePackage> activate .
(if test/ is my current directory?)
If not, would test .. make sense as a special case? (currently it does not resolve)