I'm working on a project that has a java servlets based UI(struts specifically) and the control flow is such that there is a python script which is getting called from java UI code, the python script then runs the main method of the backed java project to do stuff.
Now, when I'm doing code coverage using JaCoCo, everything before the java class(including this) invoking python script is getting covered but after the script, from the class containing main method and other classes after main, it is showing 0% code coverage.
Please help how to run coverage for that.
Sumit