0

I'm using zc.buildout for my project. How do I execute a post-build script -- meaning, after buildout runs, fetches all the eggs and puts everything in place -- now I want it to run a script. Specifically, I want it to run my unit test runner which is a script called bin/test

101010
  • 14,866
  • 30
  • 95
  • 172

1 Answers1

1

You can specify several parts in [buildout] section, one of your parts can run test scripts (e.g. using pbp.recipe.noserunner, zc.recipe.testrunner, ...)

abbot
  • 27,408
  • 6
  • 54
  • 57
  • Not sure why this wasn't marked as answer already, this is THE answer to the asker's question. – apiguy Dec 13 '11 at 21:42