Junit5 has an experimental feature for running tests in parallel.
https://junit.org/junit5/docs/current/user-guide/#writing-tests-parallel-execution
Would be a good idea to try it out to see how it works.
ShaclTest is a good place to start. There are thousands of test cases that can trivially run in parallel. The error logging when a test fails produces some weird results when run in parallel, but as long as everything passes it's ok. We can work on making the error logging thread safe (it's using a static variable at the moment).
Junit5 has an experimental feature for running tests in parallel.
https://junit.org/junit5/docs/current/user-guide/#writing-tests-parallel-execution
Would be a good idea to try it out to see how it works.
ShaclTestis a good place to start. There are thousands of test cases that can trivially run in parallel. The error logging when a test fails produces some weird results when run in parallel, but as long as everything passes it's ok. We can work on making the error logging thread safe (it's using a static variable at the moment).