Hi. I have two scenarios and test suites 1- 4 that I run with commands:
robot tests1.robot tests3.robot tests4.robot
robot tests2.robot tests3.robot tests4.robot
I wanted to run the scenarios simultaneously using pabot with command:
pabot --processes 2 --ordering order.txt tests1.robot tests2.robot tests3.robot tests4.robot
and order.txt file
{
--suite Suites.Tests1
--suite Suites.Tests3
--suite Suites.Tests4
}
{
--suite Suites.Tests2
--suite Suites.Tests3
--suite Suites.Tests4
}
After that scenario1 run tests1, tests3, tests4 sequentially as I wanted, but scenario2 run only tests2.
How to run the scenarios as I described?