Hello everyone,
It is my second post here today, don't want to flood but I am facing another problem.
I have a python library that I am using like
And I run my robot command as:
py -3 -m robot test.robot
And it runs without problems.
However, when trying the same command, with the same test script, using Python 2:
py -2 -m robot test.robot
I get the following warning:
[ WARN ] Imported library 'userlib' contains no keywords.
It this expected? I have Robot Framework 3.0.2 in both environments.
userlib is implemented as a __init__.py file that imports some functions from an implementation py file. As I said, it works fine in normal python scripts and with Robot Framework + python 3.
Thanks!