I expect that first process executes the suite 01-Suite and the second process the suites 02-Suite and 03-Suite.
However, the second process (ordering group) executes all suites that are specified with the --suite command line argument (the suites 01-Suite, 02-Suite and 03-Suite are executed in the group). With this, the suite 01-Suite is executed twice.
I have a directory (/tmp/testsuites) with the following files:
My ordering file (/tmp/order) looks like this:
My pabot command:
cd /tmp/testsuites && pabot --processes 2 --ordering /tmp/order --name "MyExecution" --suite 01-Suite --suite 02-Suite --suite 03-Suite .
I expect that first process executes the suite
01-Suite
and the second process the suites02-Suite
and03-Suite
. However, the second process (ordering group) executes all suites that are specified with the--suite
command line argument (the suites01-Suite
,02-Suite
and03-Suite
are executed in the group). With this, the suite01-Suite
is executed twice.