Replies: 2 comments
-
|
Hi @Saga789 ! The If you want to duplicate the execution of specific tests, Alternative ApproachIn your example, I’d suggest renaming suites 3 and 4 differently based on whether suite 1 or 2 is their prerequisite. This implies that there is some dependency between these suites, meaning the results of 3 and 4 may vary depending on what was executed in 1 or 2. Another possible solution could be merging suites 1 and 2 into a single suite and parameterizing the execution. For instance:
--variable presuite:1
--variable presuite:2Then, you could execute: This way, the execution would be controlled by a variable(s), and both scenarios could run in parallel. Feel free to ask or share more details about the contents of suites 1 and 2. Hope this helps! 🚀 |
Beta Was this translation helpful? Give feedback.
-
|
I am cleaning Pabot's issues and this looks more like a usage / Q&A topic, so I’m moving it to Discussions → Q&A where it’s easier for others to find and benefit from the answer. Feel free to continue the conversation there 👍 |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
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:
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?
Beta Was this translation helpful? Give feedback.
All reactions