Changeset 138

Show
Ignore:
Timestamp:
08/09/06 06:52:55 (7 years ago)
Author:
mk
Message:

Added build egg_info step to buildbot setup to stop "Module cheesecake was already imported" warnings.

Files:

Legend:

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

    r91 r138  
    8888source_trunk = make_source('trunk') 
    8989 
     90class StepBuildEggInfo(step.ShellCommand): 
     91    name = "build egg info" 
     92    description = ["building egg info"] 
     93    descriptionDone = [name] 
     94 
     95build_egg_info = s(StepBuildEggInfo, command="python setup.py egg_info") 
     96 
    9097class StepUnitTest(step.ShellCommand): 
    9198    name = "unit tests" 
     
    120127make_factory = lambda source, doc_dest: factory.BuildFactory([ 
    121128                    source, 
     129                    build_egg_info, 
    122130                    unit_tests, 
    123131                    functional_tests,