CMD:
C:\Python33\python.exe C:\Python33\Lib\site-packages\pabot\pabot.py D:\Example\test.robot
File "C:\Python33\Lib\site-packages\pabot\pabot.py", line 152
print "get_suite_names: output_file='%s' does not exist" % output_file
^
SyntaxError: invalid syntaxPabot doesn't seem to be Python 3 compatible. Please submit an issue about it to Pabot's tracker if there isn't one already. Mikko would probably appreciate pull requests too.
Before Pabot supports Python 3, you need to use Python 2.7.
Sent from my mobile.
--
You received this message because you are subscribed to the Google Groups "robotframework-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to robotframework-u...@googlegroups.com.
To post to this group, send email to robotframe...@googlegroups.com.
Visit this group at https://groups.google.com/group/robotframework-users.
For more options, visit https://groups.google.com/d/optout.
print("get_suite_names: output_file='{0}' does not exist".format(output_file))--