Changeset 105

Show
Ignore:
Timestamp:
Thu Oct 12 12:05:58 2006
Author:
jpellerin
Message:

r3568@Jason-Pellerins-Computer: jhp | 2006-10-12 12:59:33 -0400
Updated NEWS and CHANGELOG in prep for 0.9.1 release

Files:

Legend:

Unmodified
Added
Removed
Modified
  • trunk/CHANGELOG

    r103 r105  
    29 29   McMillan for the bug report and patch.  
    30 30 - Fix bug in handling doctest extension arguments specified in environment and  
    31     on command line. Thanks to Ian Bicking for the bug report.  
      31   on command line. Thanks Ian Bicking for the bug report.  
    31 31 - Fix bug in running fixtures (setup/teardown) that are not functions, and  
    32     report a better error message when a fixture is not callable. Thanks to Ian  
      32   report a better error message when a fixture is not callable. Thanks Ian  
    32 32   Bicking for the bug report.  
    33 33    
  • trunk/NEWS

    r104 r105  
    5 5 features:  
    6 6  
      7  - The --where (-w), --include and --exclude arguments may now all appear  
      8    multiple times in a single command line, allowing easier running of  
      9    multiple test suites and test suites with more diverse layouts.  
    7 10  
      11  - For programmatic use, nose.runmodule() was added. Similar to  
      12    doctest.runmodule() and unittest.main(), nose.runmodule() will load and run  
      13    tests in the current module, which defaults to __main__.  
      14  
      15  - A number of changes to plugins and plugin hooks make current plugins work  
      16    better and allow more interesting plugins to be written.  
      17  
      18 Just about everything in this release was driven by requests from  
      19 users. Thanks to the many folks who filed bug reports and suggested features,  
      20 ideas and solutions to thorny problems.