So I noticed that figleaf will aggregate ALL past rest results.  What this means is that if you had code coverage of some line at one point and then change your code and no longer have coverage of that line, that line WILL STILL BE GREEN.   To fix this delete the .figleaf file in your trunk directory each time you run figleaf.  Annoying? yes.  So make a shell script to deal with it.  Mine looks like this:<br>
<br><br>#! /bin/bash<br>rm .figleaf<br>figleaf /user/ctb/install/bin/nosetests test_apps.py<br>figleaf2html -d ~/web/figleaf -f figleaf_files.txt<br>chmod -R a+rx ~/web/figleaf<br><br>&#39;figleaf_files.txt&#39; is a list of files I want displayed on the output webpage.  Save this as a file with the extension .csh or .sh and then run this every time you want to run figleaf.  It will automatically remove the old .figleaf file, create your web page, and set permissions to view it.<br>
<br>--tim<br>