eftest
eftest copied to clipboard
nondeterministic execution order of tests
trafficstars
Between separate runs of my tests, I'm seeing them execute in a different order although the default execution order for JUnit is purported to be "deterministic but not predictable". Any way to get eftest to behave the same way?
Have you set the :multithread? option to false?
Yes
I've looked through the code, and the vars and namespaces are tested in the order they're found. If we want a deterministic ordering, we probably want to perform a sort when multithreading is off.
That would be great.