|
Hi, I've noticed that even with a fixed parallelism, all the test classes are created and their Is this the intended behavior of Spock? My classes' Thanks! |
Answered by
Vampire
Apr 15, 2025
Replies: 1 comment 19 replies
|
I cannot reproduce what you describe, can you knit an MCVE? |
19 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Another idea how to maybe approach your original problem.
Indeed build such a resource pool.
Have a
Semaphorewithparallelismamount of permits.acquireit before you create the driver,releaseit after you closed the driver.This way max 5 drivers are used as the others are waiting for the semaphore to have a permit available.
This might be the best solution in your case.