mkorpela / pabot

Parallel executor for Robot Framework test cases.
https://pabot.org
Apache License 2.0
468 stars 151 forks source link

Reusing test suites #577

Open Saga789 opened 5 months ago

Saga789 commented 5 months ago

Hi. Is there a way to use same test suites during pabot execution? Example: I have test_suites 1 - 4 and I run two scenarios with robot commands: robot test_suite1.robot test_suite3.robot test_suite4.robot robot test_suite2.robot test_suite3.robot test_suite4.robot I'd like to run the two scenarios simultaneously. I try to use "--processes 2 --ordering order.txt test_suite1.robot test_suite2.robot test_suite3.robot test_suite4.robot" with config file:

{
--suite Suites.Test Suite 1
--suite Suites.Test Suite 3
--suite Suites.Test Suite 4
}
{
--suite Suites.Test Suite 2
--suite Suites.Test Suite 3
--suite Suites.Test Suite 4
}

After running this command first scenario executed test suites 1, 3, 4 but second scenario executed only test suite 2. How can I run the scenarios as described above?