Is there a way to not sort Junit html results?

I’m using trying to use the nice HTML reports that Gradle generates when executing a test task of JUnit tests. The reports generate just fine, but they sort the test names alphabetically. Is there a way to turn off or change this sorting? The tests use Spock and some of the tests are @Stepwise, so it makes interpreting the results difficult. Thanks.

So, I went digging through the Gradle source to see if I could find an answer. If I finally was able to understand what I went digging through, the answer is no… but to be sure, I’ll ask here, again.

Is there any way to make the HTML reports generated for Test task JUnit results appear in execution order instead of some sorted order? Thanks.