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
I just cloned the master and set it up on my laptop for a clean start, and running the tests seems to do everything in working order, including giving the expected output
Test Summary: | Pass Broken Total Time
moment_kinetics tests | 118503 2 118505 6m23.8s
However, after this line (which used not to happen) is a long printout of lists, which starts with
Yeah, I've noticed the same thing - I think what has happened is that Test.jl returns this Test.DefaultTestSet struct so that you can (if you wanted to) query it for more information than just what was printed out to the terminal, and then Julia prints it by default (when you run the tests from the REPL).
I don't know why it didn't get printed before - maybe Test.jl didn't return the struct, or hadn't defined a method to print it, or Julia's 'print a generic struct' functionality got 'upgraded' so that it now prints stuff where it didn't before.
We might be able to modify the runtest() functions in the tests so that they all end with return nothing. On the other hand maybe these Test.DefaultTestSet things could be useful at some point. The workaround is to put a semicolon after the command in the REPL, e.g.
I just cloned the master and set it up on my laptop for a clean start, and running the tests seems to do everything in working order, including giving the expected output
However, after this line (which used not to happen) is a long printout of lists, which starts with
and so on. Is this output meant to be suppressed somewhere?
The text was updated successfully, but these errors were encountered: