I am using robotframework-maven-plugin which uses Jython version=2.5.1 for running my test cases. My issue is when I try to use different robotframework libraries such the robotframework-requests I get import errors as I believe Jython version=2.5.1 does not have the latest Python libraries required (Python version >= 2.6). I know this as the tests run when I use my installed version of python but do not when I use:
- maven robotframework:run command or
- the jybot command.
I would also like to use Curl but Jython version=2.5.1 again does not have the python library I need. I have tried coping over the files needed but this seem like the wrong solution and is very time consuming. It seems I am stuck as I need maven robotframework and this uses Jython to run the test so is there a way that Robotframework Jython can have the latest Python libraries or is there a better approach?