I noticed there isn't really a collection of recipes available yet, so I thought it prudent that I start one. I don't have much content yet, and anyone should feel free to reorganize it. == Running Zope Tests == This is very specific to my Zope installation. I had to create the run_tests script in my SVN. I would like a more generic method. Perhaps it will be prudent to create a "zope" namespace. {{{ #!xml }}} == Complicated Maven Build == There's probably some ways I could make this simpler. First off, we need to use an in-memory database to run our tests, hence the changes to persistence.xml. Then, we run the tests on their own. Then, we install the modules of the project (I'm not certain how necessary this is, but I wanted to ensure that any module dependencies would resolve to the local copies, not the ones on the remote repository). Then, we run clover:instrument and clover:clover. Technically, we shouldn't need to do this, because it should be handled by the site generation, but there's apparently a bug somewhere, in Maven or Clover, that makes it necessary to run Clover twice to get the results we want. Yes, this does mean we run all the tests twice, or possibly three times (ugh). Then we revert to the proper version of persistence.xml. Then we deploy, skipping the tests. {{{ #!xml }}}