Changeset 62
- Timestamp:
- 06/15/06 13:32:35 (7 years ago)
- Files:
-
- branches/mk/support/master.cfg (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/mk/support/master.cfg
r56 r62 88 88 source_trunk = make_source('trunk') 89 89 90 class Step Test(step.ShellCommand):90 class StepUnitTest(step.ShellCommand): 91 91 name = "unit tests" 92 92 description = ["running unit tests"] 93 93 descriptionDone = [name] 94 94 95 unit_tests = s(StepTest, command="nosetests --with-doctest --doctest-tests --with-coverage --verbose --include unit") 95 unit_tests = s(StepUnitTest, command="nosetests --with-doctest --doctest-tests --with-coverage --verbose --include unit") 96 97 class StepFunctionalTest(step.ShellCommand): 98 name = "functional tests" 99 description = ["running functional tests"] 100 descriptionDone = [name] 101 102 functional_tests = s(StepFunctionalTest, command="nosetests --verbose --include functional") 96 103 97 104 class EpyDocBuild(step.ShellCommand): … … 114 121 source, 115 122 unit_tests, 123 functional_tests, 116 124 epydoc_build(doc_dest), 117 125 coverage_build(doc_dest)])
