This message was deleted.
# community-support
s
This message was deleted.
v
Heavily depends on which parallelization you are talking about. If you for example talk about the parallel running of tests JUnit Jupiter or also Spock are capable of, then this is a pure setup withing JUnit Jupiter or Spock. If you for example mean you run with
--parallel
to have tasks of different projects run in parallel but don't want that for tests, then create a shared build service with max parallel usage 1 and declare all test tasks to use that service then it serves as exclusive lock.
👍 1
thank you 1
v
For JUnit5 use
@Isolated
thank you 1
👍 1