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
Asked
Active
Viewed 76 times
1 Answers
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