Replies: 1 comment 9 replies
-
I don't believe batching is implemented in the JUnit 5 runners. @nbarrett might know more. |
Beta Was this translation helpful? Give feedback.
9 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I upgraded to 4.0 recently. In JUnit4, test executions can be split into batches in Jenkins.
Example, 20 tests executed on 2 batches. The ideal expected result is batch1 executes 10tests and batch2 executes 10tests. The gist is tests are split and execute into batch.
When I execute tests on JUnit5, I observed batch 1 run all 20 tests and batch 2 run all 20 tests with similar set up.
Therefore, would like to confirm if batch is working for JUnit5 or is there additional set up I need to perform?
Beta Was this translation helpful? Give feedback.
All reactions