You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This will use all available cores to run tests, and parallelize by all - suite/class/method.
On machines with multiple cores, this will vastly improve test performance.
These times are on my M1 MBP with 10 (8P + 2E) cores. They were reported by maven on running `mvn verify`.
I first ran `mvn verify` and ignored the time.
Then I ran it thrice without this change, and thrice with this change.
All times in seconds.
| | Run 1 | Run 2 | Run 3 | Average |
| ------ | ----: | ----: | ----: | ------: |
| Before | 29 | 30 | 29 | 29 |
| After | 17 | 17 | 17 | 17 |
| Savings| | | | 12 |
| % | | | | 41 |
0 commit comments