Hi, we have a lot of independent "integration tests", based on testNG - separated in different modules:
TS_01_aaaa\pom.xml TS_02_bbbb\pom.xml TS_03_cccc\pom.xml .... During developing phase, each module is executed by dedicated developers so each one just focuses on his own module. During release phase, I want to execute all tests and get an aggregated test-results view. Executing them sequentially, for example in a multi-module build won´t work, because the build will break at the moment the first integration-test module fails. Further, the execution time of some test modules is about some hours - so I need to execute them parallel. => How can I execute those modules in parallel and get an aggregated view? Thanx, Torsten
