Comment 1 for bug 719245

Revision history for this message
RaiMan (raimund-hocke) wrote : Re: ScriptRunner.runPython causes JVM to exit upon completion

by design, when running a Sikuli script standalone (from Java or in the command line), the JVM, it is running in is exited.

I guess you have to put the "gathering" of your single scripts to the python level and use import or execfile for each of your test, so that on the Java level it is one Sikuli script.

Or you might try to call each scripts using a system command "java -jar sikuli-script.jar path to your script", hoping that gets it's own JVM.