what comes to mind is Make, or build.xml, but have not found a comprehensive Orchestration tool for python testing
Tell me more
×
Software Quality Assurance & Testing Stack Exchange is a question and answer site for
software quality control experts, automation engineers, and software testers. It's 100% free, no registration required.
|
try using nose, it should run all unit tests of a project with one single command |
|||
|
|
|
I tend to use either make, or setup.py - or the two in combination. make to provide a consistent interface that other tools understand, and do adhoc stuff. setup.py to do building of extension modules, generation of releases and so forth. |
|||
|
|
build.xmldo you mean Ant? – corsiKa♦ May 10 '11 at 21:07