Hi,
I have two sets of testsuites that have the following constraints:
TSType1 (N number tests) - these TS can only run sequential - technically they are just one test suite with a different data iteration to workaround issues with report generation
TSType2 (O number tests)- these TS can only run sequential - same reason as the other TSType
However, you can run TSType1 test with TSType2 tests in parallel.
Normally, you can think of just running all sequentially. However, to optimize for time, you can technically run TSType1 and TSType2 together. I’m looking at the documentation and I can only see that you either run sequential or parallel.
In my configuration, I have 2 test collections. TCTSType1 and TCTSType2 which are both sequential. At first, I thought I can nest it to make the 2 collections parallel (within the inner collection as sequential) but it seems that you can’t do it(you can only select TS and not TC within a TC).
I’m not sure if I did present my case clearly, so please ask for clarification. Do you guys have recommendations for me to optimize for test execution? The tests needs to have report to indicate the data variation that succeded and failed.