Changeset 62

Show
Ignore:
Timestamp:
06/15/06 13:32:35 (7 years ago)
Author:
mk
Message:

Enable functional testing in buildbot.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • branches/mk/support/master.cfg

    r56 r62  
    8888source_trunk = make_source('trunk') 
    8989 
    90 class StepTest(step.ShellCommand): 
     90class StepUnitTest(step.ShellCommand): 
    9191    name = "unit tests" 
    9292    description = ["running unit tests"] 
    9393    descriptionDone = [name] 
    9494 
    95 unit_tests = s(StepTest, command="nosetests --with-doctest --doctest-tests --with-coverage --verbose --include unit") 
     95unit_tests = s(StepUnitTest, command="nosetests --with-doctest --doctest-tests --with-coverage --verbose --include unit") 
     96 
     97class StepFunctionalTest(step.ShellCommand): 
     98    name = "functional tests" 
     99    description = ["running functional tests"] 
     100    descriptionDone = [name] 
     101 
     102functional_tests = s(StepFunctionalTest, command="nosetests --verbose --include functional") 
    96103 
    97104class EpyDocBuild(step.ShellCommand): 
     
    114121                    source, 
    115122                    unit_tests, 
     123                    functional_tests, 
    116124                    epydoc_build(doc_dest), 
    117125                    coverage_build(doc_dest)])