Changeset 46
- Timestamp:
- 06/08/06 16:35:18 (7 years ago)
- Files:
-
- branches/mk/support/generate_docs.sh (added)
- branches/mk/support/master.cfg (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/mk/support/master.cfg
r45 r46 89 89 90 90 class StepTest(step.ShellCommand): 91 name = " nosetests"92 description = ["running nosetests"]91 name = "unit tests" 92 description = ["running unit tests"] 93 93 descriptionDone = [name] 94 94 95 95 unit_tests = s(StepTest, command="/usr/local/bin/python setup.py test") 96 96 97 make_factory = lambda source: factory.BuildFactory([ 98 source, unit_tests,]) 97 class EpyDocBuild(step.ShellCommand): 98 name = "documentation" 99 description = ["building documentation"] 100 descriptionDone = [name] 99 101 100 f_mk = make_factory(source_mk) 101 f_trunk = make_factory(source_trunk) 102 epydoc_build = lambda doc_dest: s(EpyDocBuild, 103 command="/bin/sh support/generate_docs.sh %s" % doc_dest) 104 105 make_factory = lambda source, doc_dest: factory.BuildFactory([ 106 source, unit_tests, epydoc_build(doc_dest)]) 107 108 f_mk = make_factory(source_mk, "/var/www/agilistas/cheesecake/mk") 109 f_trunk = make_factory(source_trunk, "/var/www/agilistas/cheesecake/trunk") 102 110 103 111 c['builders'] = [
