We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0841106 commit 2473247Copy full SHA for 2473247
src/bin/rebot
@@ -3,4 +3,7 @@
3
import sys
4
from robot import rebot_cli
5
6
-rebot_cli(sys.argv[1:])
+# Multiprocessing guard
7
+# https://github.com/robotframework/robotframework/issues/2315
8
+if __name__ == '__main__':
9
+ rebot_cli(sys.argv[1:])
src/bin/robot
from robot import run_cli
-run_cli(sys.argv[1:])
+ run_cli(sys.argv[1:])
0 commit comments