I am using nosetests for unit testing of some python script. The script in question creates a child process. I am executing the script using the command : nosetests -s -v 'python script.py' --with-coverage
I have installed nose-cov. Its version is 1.6.
The coverage report that I am getting doesn't contain the coverage of the code executed by the child.
IS THERE ANY WAY OF GETTING THE COVERAGE OF THE CHILD PROCESS??
Thanks