HI, I've unlocked parallel test execution for JUnit5 tests. By default it runs all the tests for a module in a single thread, however @Execution(CONCURRENT) activates parallel execution.
Note: the test needs be written in JUnit5 for the feature to work. Parallel execution can be per class and/or per method. On top of that, there's a notion of "resource locks", so we can prevent certain test methods from parallel execution if we need so. Documentation is here: https://junit.org/junit5/docs/snapshot/user-guide/#writing-tests-parallel-execution Vladimir
