I've got a jython script that needs to include a class (from JUnit in this case). I've got the junit jar in "some/path/junit.jar". My script is:
from junit.textui import TestRunner
TestRunner.Main(["name of some class here"])
I'm running it like this:
java -cp "some/path/junit.jar" -jar jython.jar script.py
but it complains that:
from junit.textui import TestRunner
ImportError: No module named junit
How can I make it see/import the correct class?