Hey all, I&#39;ve been trying to figure this out on and off for a couple months now (it hasn&#39;t really been priority until recently) and I could really use some help fixing this.<br><br>I&#39;m running a system which requires 2 serves to run, one of them being a pylons project.  For some reason coverage doesn&#39;t seem to be checking any of the files in the pylons server.  I have a script which launches both servers using Popen, with the pylons server launched with the shell command &quot;paster serve development.ini&quot;.  <br>

<br>Nosetests &amp; coverage are launched with:<br><br>    nosetests -v thisproject/tests_folder --with-coverage --with-xunit --xunit-file=./nosetests.xml<br>    coverage xml --include=thisproject/* --omit=./thisproject/tests_folder/* <br>

<br>I&#39;ve also tried explicitly telling the coverage report to include the pylons folder which is located at &quot;thisproject/clients/pylons_server&quot;:<br><br>    coverage xml --include=thisproject/*,thisproject/clients/pylons_server --omit=./thisproject/tests_folder/* <br>

<br>But that doesn&#39;t seem to work, I suspect because that folder is never even executed when nosetests is running the tests.  The functions are definitely getting executed though as those tests pass, and other files in the clients folder and subdirectories of clients are getting included in the coverage report.  Anyone have any ideas?<br>

<br>Joesan<br>