Imported Upstream version 1.1.2
[platform/upstream/python-nose.git] / CHANGELOG
1 1.1.2
2
3 - Fixed regression where the .coverage file was not saved (#439).
4   Patch by Timothée Peignier.
5
6 1.1.1
7
8 - Fixed missing nose.sphinx module in source distribution (#436).
9
10 1.1.0
11
12 - Revised multiprocessing implementation so that it works for test generators
13   (#399). Thanks to Rosen Diankov for the patch.
14 - More fixes to multiprocessing implemented by Buck Golemon and Gary Donovan
15   (also part of #399).
16 - Lots of improvements to the attrib plugin by Bobby Impollonia (#412, #411,
17   #324 and #381)
18 - Code coverage plugin now uses native HTML generation when coverage 3 is
19   installed (#264). Thanks to Timothée Peignier for the patch.
20 - Xunit plugin now shows test run time in fractions of a second (#317)
21 - @attr (from nose.plugins.attrib) can now be used as a class decorator (#292)
22 - Fixes Xunit plugin to handle non-UTF8 characters (#395)
23 - Fixes Xunit plugin for reporting generator tests (#369)
24 - Fixed problems with SkipTest in Python 3.2 (#389)
25 - Fixed bug in doctest plugin under python 3. Thanks to Thomas Kluyver
26   for the patch. (#391)
27 - Fixes mishandling of custom exceptions during failures (#405)
28 - Fixed subtle bug in :option:`--first-package-wins` that made it
29   unpredictable (#293)
30 - Fixes case where teardown_class() was called more than once (#408). Thanks
31   to Heng Liu for the patch.
32 - Fixes coverage module names -- 'cal' used to also match calendar which was a
33   bug (#433)
34 - Fixes capture plugin when exception message contains non-ascii chars (#402)
35 - Fixed bug in tests for twisted tools. Thanks to Thomas Kluyver
36   for the patch.
37 - Makes :option:`--plugins` more succinct when there are no options (#235)
38
39 1.0.0
40
41 - Made nose compatible with python 3. **Huge** thanks to Alex "foogod"
42   Stewart!
43
44 0.11.4
45
46 - Made nose compatible with Python 2.7.
47
48 0.11.3
49
50 - Fixed default plugin manager's use of plugin overriding. Thanks to
51   rob.daylife for the bug report and patch. (#323).
52
53 0.11.2
54
55 - Changed plugin loading so that external plugins loaded via extension
56   points can override builtin plugins with the same name.
57 - Updated multiprocess plugin and nose's packaging to allow multiprocess
58   plugin to work on Windows (#265).
59 - Fixed bug in xunit plugin's interaction with suites and errors in
60   module-level setup. Thanks to Mark McCague for the bug report (#279).
61 - Fixed bug in nose.loader.TestLoader that allowed Test classes that raise
62   exceptions in __init__ to crash the test run (#269).
63 - Fixed bugs in nose's test suite that caused spurious failures on Windows.
64 - Fixed bug in twisted tools: delayed calls were not shut down on
65   reactor stop. Thanks to abbeyj for the patch (#278).
66 - Fixed bug where root log handlers were not cleared. For example, this was
67   emitting unwanted messages when testing Google App Engine websites.
68 - Fixed bug in test names output by xunit plugin. Thanks to Philip
69   Jenvey for the bug report and patch (#280).
70 - Fixed bug in profile plugin that caused stats to fail to print under Python
71   2.5 and later. Thanks to djs at n-cube dot org for the bug report (#285).
72 - Improved logcapture filtering, with default setting to filter out log
73   messages from nose itself. Thanks to gfxmonk for the patch (#277).
74 - The xunit plugin now tags skipped tests with a <skipped> testcase tag, and
75   prevents the XML from containing invalid control characters.
76 - Updated nose to be compatible with python 2.7 (#305).
77 - Updated loading of usage document to allow nose to run from within
78   an egg archive (#288).
79 - Fixed IronPython checks to make nose compatible with more versions
80   of IronPython. Thanks to Kevin Mitchell for the patch (#316).
81
82 0.11.1
83
84 - Fixed bug in xunit plugin xml escaping. Thanks to Nat Williams for the bug
85   report (#266).
86 - Fixed bug in xunit plugin that could cause test run to crash after certain
87   types of errors or actions by other plugins.
88 - Fixed bug in testid plugin that could cause test run to crash after certain
89   types of errors or actions by other plugins.
90 - Fixed bug in collect only plugin that caused it to fail when collecting from
91   test generators.
92 - Fixed some broken html in docs.
93
94 0.11
95
96 - **All new documentation!** nose's documentation is now generated by
97   Sphinx. And thanks to Pam Zerbinos, it is much better organized and easier
98   to use and read.
99 - Two new core commandline options can help with testing namespace
100   packages. :option:`--first-package-wins` is useful when you want to test one
101   part of a namespace package that uses another part; in previous versions of
102   nose, the other part of the namespace package would be evicted from
103   sys.modules when the 2nd loaded. :option:`--traverse-namespace` is useful if
104   you want nose to discover tests across entries in a package's
105   __path__. (This was formerly the default behavior).
106 - To make it easier to use custom plugins without needing setuptools,
107   :func:`nose.core.main` and :func:`nose.core.run` now support an
108   :doc:`addplugins <doc_tests/test_addplugins/test_addplugins>` keyword
109   argument that takes a list of additional plugins to make available. **Note**
110   that adding a plugin to this list **does not** activate or enable the
111   plugin, only makes it available to be enabled via command-line or
112   config file settings.
113 - Thanks to Kevin Mitchell, nose is now more compatible with
114   IronPython. IronPython is still not fully supported, but it should work. If
115   you'd like to improve nose's support for IronPython further, please join the
116   nose developer's list and volunteer to become the IronPython maintainer for
117   nose!
118 - Added multiprocess plugin that allows tests to be run in parallel
119   across multiple processes.
120 - Added logcapture plugin that captures logging messages and prints them with
121   failing tests. Thanks to Max Ischenko for the implementation.
122 - Added optional HTML coverage reports to coverage plugin. Thanks to Augie
123   Fackler for the patch.
124 - Added plugin that enables collection of tests in all modules. Thanks to
125   Peter Fein for the patch (#137).
126 - Added --failed option to testid plugin. When this option is in effect, if
127   any tests failed in the previous test run (so long as testid was active for
128   that test run) only the failed tests will run.
129 - Made it possible to 'yield test' in addition to 'yield test,' from test
130   generators. Thanks to Chad Whitacre for the patch (#230).
131 - Fixed bug that caused traceback inspector to fail when source code file
132   could not be found. Thanks to Philip Jenvey for the bug report and patch
133   (#236).
134 - Fixed some issues limiting compatibility with IronPython. Thanks to Kevin
135   Mitchell for the patch.
136 - Added support for module and test case fixtures in doctest files (#60).
137 - Added --traverse-namespace commandline option that restores old default
138   behavior of following all package __path__ entries when loading tests from
139   packages. Thanks to Philip Jenvey for the patch (#167).
140 - Added --first-package-wins commandline option to better support testing
141   parts of namespace packages. Thanks to Jason Coombs for the bug report
142   (#197).
143 - Added versioned nosetests scripts (#123).
144 - Fixed bug that would cause context teardown to fail to run in some
145   cases. Thanks to John Shaw for the bug report and patch (#234).
146 - Enabled doctest plugin to use variable other than "_" as the default result
147   variable. Thanks to Matt Good for the patch (#163).
148 - Fixed bug that would cause unicode output to crash output capture. Thanks to
149   schickb for the bug report (#227).
150 - Added setUp and tearDown as valid names for module-level fixtures. Thanks to
151   AgilityNerd for the patch (#211).
152 - Fixed bug in list of valid names for package-level fixtures. Thanks to
153   Philip Jenvey for the patch (#237).
154 - Updated man page generation using hacked up manpage writer from
155   docutils sandbox. Thanks grubert@users.sourceforge.net for the
156   original module.
157
158 0.10.4
159
160 - nose is now compatible with python 2.6.
161
162 0.10.3
163
164 - Fixed bug in nosetests setup command that caused an exception to be raised
165   if run with options. Thanks to Philip Jenvey for the bug report (#191).
166 - Raised score of coverage plugin to 200, so that it will execute before
167   default-score plugins, and so be able to catch more import-time code. Thanks
168   to Ned Batchelder for the bug report and patch (#190).
169
170 0.10.2
171
172 - nose now runs under jython (jython svn trunk only at this time). Thanks to
173   Philip Jenvey, Pam Zerbinos and the other pycon sprinters (#160).
174 - Fixed bugs in loader, default plugin manager, and other modules that
175   caused plugin exceptions to be swallowed (#152, #155). Thanks to John J
176   Lee for the bug report and patch.
177 - Added selftest.py script, used to test a non-installed distribution of
178   nose (#49). Thanks to Antoine Pitrou and John J Lee for the bug report and
179   patches.
180 - Fixed bug in nose.importer that caused errors with namespace
181   packages. Thanks to Philip Jenvey for the bug report and patch (#164).
182 - Fixed bug in nose.tools.with_setup that prevented use of multiple
183   @with_setup decorators. Thanks to tlesher for the bug report (#151).
184 - Fixed bugs in handling of context fixtures for tests imported into a
185   package. Thanks to Gary Bernhardt for the bug report (#145).
186 - Fixed bugs in handling of config files and config file options for plugins
187   excluded by a RestrictedPluginManager. Thanks to John J Lee and Philip
188   Jenvey for the bug reports and patches (#158, #166).
189 - Updated ErrorClass exception reporting to be shorter and more clear. Thanks
190   to John J Lee for the patch (#142).
191 - Allowed plugins to load tests from modules starting with '_'. Thanks to John
192   J Lee for the patch (#82).
193 - Updated documentation about building as rpm (#127).
194 - Updated config to make including executable files the default on
195   IronPython as well as on Windows. Thanks to sanxiyn for the bug
196   report and patch (#183).
197 - Fixed a python 2.3 incompatibility in errorclass_failure.rst
198   (#173). Thanks to Philip Jenvey for the bug report and patch.
199 - Classes with metaclasses can now be collected as tests (#153).
200 - Made sure the document tree in the selector plugin test is accurate
201   and tested (#144). Thanks to John J Lee for the bug report and
202   patch.
203 - Fixed stack level used when dropping into pdb in a doctest
204   (#154). Thanks to John J Lee for the bug report and patch.
205 - Fixed bug in ErrorClassPlugin that made some missing keyword
206   argument errors obscure (#159). Thanks to Philip Jenvey for the bug
207   report and patch.
208
209 0.10.1
210
211 - Fixed bug in capture plugin that caused it to record captured output
212   on the test in the wrong attribute (#113).
213 - Fixed bug in result proxy that caused tests to fail if they accessed
214   certain result attibutes directly (#114). Thanks to Neilen Marais
215   for the bug report.
216 - Fixed bug in capture plugin that caused other error formatters
217   changes to be lost if no output was captured (#124). Thanks to
218   someone at ilorentz.org for the bug report.
219 - Fixed several bugs in the nosetests setup command that made some
220   options unusable and the command itself unusable when no options
221   were set (#125, #126, #128). Thanks to Alain Poirier for the bug
222   reports.
223 - Fixed bug in handling of string errors (#130). Thanks to schl... at
224   uni-oldenburg.de for the bug report.
225 - Fixed bug in coverage plugin option handling that prevented
226   --cover-package=mod1,mod2 from working (#117). Thanks to Allen
227   Bierbaum for the patch.
228 - Fixed bug in profiler plugin that prevented output from being
229   produced when output capture was enabled on python 2.5
230   (#129). Thanks to James Casbon for the patch.
231 - Fixed bug in adapting 0.9 plugins to 0.10 (#119 part one). Thanks to
232   John J Lee for the bug report and tests.
233 - Fixed bug in handling of argv in config and plugin test utilities
234   (#119 part two). Thanks to John J Lee for the bug report and patch.
235 - Fixed bug where Failure cases due to invalid test name
236   specifications were passed to plugins makeTest (#120). Thanks to
237   John J Lee for the bug report and patch.
238 - Fixed bugs in doc css that mangled display in small windows. Thanks
239   to Ben Hoyt for the bug report and Michal Kwiatkowski for the fix.
240 - Made it possible to pass a list or comma-separated string as
241   defaultTest to main(). Thanks to Allen Bierbaum for the suggestion
242   and patch.
243 - Fixed a bug in nose.selector and nose.util.getpackage that caused
244   directories with names that are not legal python identifiers to be
245   collected as packages (#143). Thanks to John J Lee for the bug
246   report.
247
248 0.10.0
249
250 - Fixed bug that broke plugins with names containing underscores or
251   hyphens. Thanks to John J Lee for the bug report and patch (Issue
252   #81).
253 - Fixed typo in nose.__all__. Thanks to John J Lee for the bug report.
254 - Fixed handling of test descriptions that are multiline
255   docstrings. Thanks to James Casbon for the patch (Issue #50).
256 - Improved documentation of doctest plugin to make it clear that
257   entities may have doctests, or themselves be tests, but not
258   both. Thanks to John J Lee for the bug report and patch (Issue #84).
259 - Made __file__ available in non-python-module doctests.
260 - Fixed bug that made it impossible for plugins to exclude package
261   directories from test discovery (Issue #89). Thanks to John J Lee
262   for the bug report and patch.
263 - Fixed bug that swallowed TypeError and AttributeError exceptions
264   raised in some plugin calls (Issue #95). Thanks to John J Lee for
265   the bug report.
266 - Fixed inconsistencies in many interfaces and docs. Thanks to John J
267   Lee for many bug reports.
268 - Fixed bugs in rpm generation (Issue #96). Thanks to Mike Verdone for
269   the bug report and http://bugs.python.org/issue644744 for the fix.
270 - Fixed inconsisent use of os.environ in plugin testing
271   utilities. Thanks to John J Lee for the bug report and patch (Issue
272   #97).
273 - Fixed bug in test_address that prevented use of nose.case.Test in
274   doctests (Issue #100). Thanks to John J Lee for the bug report.
275 - Fixed bug in error class plugin that caused string exceptions to be
276   masked (#Issue 101). Thanks to depaula for the bug report.
277 - Fixed bugs in tests and the profiler plugin when running under
278   Windows (Issue #103). Thanks to Sidnei Da Silva for the bug report.
279 - Fixed bugs in plugin calls that caused exception swallowing (Issue
280   #107). Thanks to John L Lee for the bug report and patch.
281 - Added more plugin example doctests. Thanks to Kumar McMillan and
282   John L Lee for patches and lots of help.
283 - Changed default location of id file for TestId plugin from ~/.noseids to
284   .noseids in the configured working directory.
285
286 0.10.0b1
287
288 - Added support for a description attribute on tests in function and
289   method test cases.  Most useful for generators: set the description
290   attribute on the yielded function.
291 - Fixed incorrect signature of addSuccess() method in
292   IPluginInterface. Thanks to nosexunit for the bug report. (Issue
293   #68).
294 - Fixed isclass() function in nose.util so that it will not raise an
295   exception when examining instances that have no accessible __bases__
296   attribute. (Issue #65).
297 - Fixed passing of tests to result; the test itself and not the
298   wrapper was being passed, resulting in test description plugin hooks
299   not being called. (Issue #71).
300 - Fixed bugs in FailureDetail and Capture plugins, and plugin manager
301   and proxy uses of chainable plugin calls. Thanks to Ian Bicking for
302   the bug report (Issue #72).
303 - Improved documentation.
304
305 0.10.0a2
306
307 - Changed entry point name to nose.plugins.0.10 -- dashes and other
308   non-word characters besides . are not allowed in entry point names.
309   (Issue #67)
310 - Fixed loading of plugins from that entry point.
311 - Fixed backwards-compatibility issue in nose.util (is_generator was
312   renamed isgenerator). (Issue #64)
313 - Fixed bug in --logging-config option. Thanks to anton_kr... at yahoo
314   com for the bug report. (Issue #62)
315 - Fixed bug in handling of --where argument: first --where was not
316   passed to loader as workingDir. Thanks to nosexunit for the bug
317   report. (Issue #63).
318
319 0.10.0a1
320
321 - Rewrote test loader to be more drop-in compatible with
322   unittest.TestLoader and to support a more user-friendly command
323   line.
324 - Rewrote test runner and result classes to reduce duplication of effort.
325 - Revised configuration system to be less convoluted.
326 - Added nose.case.TestCase as universal wrapper for all
327   testcases. Plugins always see instances of this class.
328 - Added a management layer to the plugin system, allowing for easy use
329   of different plugin loading schemes. The default manager loads
330   builtin plugins, 0.10 plugins under the setuptools entrypoint
331   nose.plugins.0-10 and provides limited support for legacy plugins
332   loaded under the entrypoint nose.plugins.
333 - Added plugin hooks in all phases of discovery, running and description.
334 - Converted several formely core features to plugins: output capture,
335   assert introspection, pdb, and skipped and deprecated test support.
336 - Added id plugin that allows for easier specification of tests on the
337   command line.
338 - Added ErrorClassPlugin base class to allow for easier authoring of
339   plugins that handle errors, like the builtin skipped and deprecated
340   test plugins.
341 - Added support for loading doctests from non-module files for all
342   supported python versions.
343 - Added score property to plugins to allow plugins to execute in a
344   defined order (higher score execute first).
345 - Expanded nose's own test suite to include a variety of functional tests.
346 - Fixed many bugs.
347
348 0.9.3
349
350 - Added support for user configuration files. Thanks to Antoine Pitrou for the
351   patch.
352 - Fixed bug that caused profiler plugin to leak 0-byte temp files. Thanks to
353   Antoine Pitrou for the patch.
354 - Made usage of temp files in profiler plugin more sensible. Thanks to Michael
355   Sclenker for the bug report.
356 - Fixed bug that stopped loading of twisted TestCase tests. Thanks to Kumar
357   McMillan for the bug report.
358 - Corrected man page location. Thanks to luke macken for the bug report and
359   patch.
360 - Added with_setup to nose.tools.__all__. Thanks to Allen Bierbaum for the bug
361   report.
362 - Altered plugin loading so that builtin plugins can be loaded without
363   setuptools. Thanks to Allen Bierbaum for the suggestion.
364 - Fixed a bug in the doctests plugin that caused an error when multiple
365   exclude arguments were specified. Thanks to mbeachy for the bug report and
366   patch.
367
368 0.9.2
369
370 - Added nosetests setuptools command. Now you can run python setup.py
371   nosetests and have access to all nose features and plugins. Thanks to James
372   Casbon for the patch.
373 - Added make_decorator function to nose.tools. Used to construct decorator
374   functions that are well-behaved and preserve as much of the original
375   function's metadata as possible. Thanks to Antoine Pitrou for the patch.
376 - Added nose.twistedtools, contributed by Antoine Pitrou. This module adds
377   @deferred decorator that makes it simple to write deferred tests, with or
378   without timeouts.
379 - Added monkeypatch to doctests that keeps doctest from stepping on coverage
380   when the two plugins are used together. Thanks to David Avraamides for the
381   bug report.
382 - Added isolation plugin. Use this plugin to automatically restore sys.modules
383   after each test module or package. Thanks to Michal Kwiatkowski for the
384   feature request.
385 - Fixed bug where -vvvv turned off verbose logging instead of making it even
386   more verbose. Thanks to Ian Bicking for the bug report.
387 - Fixed bug where assert inspection would fail when the trailing """ of a
388   docstring was one of the inspected lines. Thanks to cito at online dot de
389   for the bug report.
390 - Updated attrib plugin to allow selection of test methods by attributes of
391   the test case class. Thanks to Jason Hildebrand for the patch.
392 - Improved compatibility with python 2.2. Thanks to Chad Whitacre for the
393   patch.
394 - Fixed bug in handling of options from setup.cfg. Thanks to Kumar McMillan for
395   the patch.
396 - Fixed bug in generator methods, where a generator method using an inline
397   funciton would result in an AttributeError. Thanks to Antoine Pitrou for the
398   bug report.
399 - Updated coverage plugin to ignore lines tagged with #pragma: no cover,
400   matching the behavior of coverage.py on the command line. Thanks to Bill
401   Zingler for the bug report.
402 - Added a man page for nosetests. Thanks to Gustavo Noronha Silva for the
403   request and providing an example.
404
405 0.9.1
406
407 - New function nose.runmodule() finds and runs tests only in a
408   single module, which defaults to __main__ (like unittest.main() or
409   doctest.runmodule()). Thanks Greg Wilson for the suggestion.
410 - Multiple -w (--where) arguments can now be used in one command line,
411   to find and run tests in multiple locations. Thanks Titus Brown for
412   the suggestion.
413 - Multiple --include and --exclude arguments are now accepted in one command
414   line. Thanks Michal Kwiatkowski for the feature request.
415 - Coverage will now include modules not imported by any test when
416   using the new --cover-inclusive switch. Thanks James Casbon for the
417   patch.
418 - module:TestClass test selections now properly select all tests in the test
419   class.
420 - startTest and stopTest are now called in plugins at the beginning and end of
421   test suites, including test modules, as well as individual tests. Thanks
422   Michal Kwiatkowski for the suggestion.
423 - Fix bug in test selection when run as ``python setup.py test``: 'test' was
424   passing through and being used as the test name selection. Thanks Kumar
425   McMillan for the bug report.
426 - Fix bug in handling of -x/--stop option where the test run would stop on
427   skipped or deprecated tests. Thanks Kumar McMillan for the bug report.
428 - Fix bug in loading tests from projects with layouts that place modules in
429   /lib or /src dirs and tests in a parallel /tests dir.
430 - Fix bug in python version detection. Thanks Kevin Dangoor for the bug report
431   and fix.
432 - Fix log message in selector that could raise IndexError. Thanks Kumar
433   McMillan for the bug report and patch.
434 - Fix bug in handling doctest extension arguments specified in environment and
435   on command line. Thanks Ian Bicking for the bug report.
436 - Fix bug in running fixtures (setup/teardown) that are not functions, and
437   report a better error message when a fixture is not callable. Thanks Ian
438   Bicking for the bug report.
439
440 0.9.0
441
442 - More unit tests and better test coverage. Numerous bugfixes deriving from
443   same.
444 - Make --exe option do what it says, and turn it on by default on
445   Windows. Add --noexe option so windows users can turn if off.Thanks
446   richard at artsalliancemedia dot com for the bug reports.
447 - Handle a working directory that happens to be in the middle of a package
448   more gracefully. Thanks Max Ischenko for the bug report and test case.
449 - Fix bugs in test name comparison when a test module is specified whose name
450   overlaps that of a non-test module. Thanks Max Ischenko for the bug report
451   and test case.
452 - Fix warning spam when a non-existent test file is requested on the command
453   line. Thanks Max Ischenko for the bug report.
454
455 0.9.0b2
456
457 - Allow --debug to set any logger to DEBUG. Thanks to casbon at gmail dot com
458   for the patch.
459 - Fix doctest help, which was missing notes about the environment variables
460   that it accepts. Thanks to Kumar McMillan for the patch.
461 - Restore sys.stdout after run() in nose.core. Thanks to Titus Brown for the
462   bug report.
463 - Correct handling of trailing comma in attrib plugin args. Thanks Titus Brown
464   for the patch.
465
466 0.9.0b1
467
468 - Fix bug in handling of OR conditions in attrib plugin. Thanks to Titus
469   Brown for the bug report.
470 - Fix bug in nose.importer that would cause an attribute error when a local
471   module shadowed a builtin, or other object in sys.modules, without a
472   __file__ attribute. Thanks to casbon at gmail dot com for the bug report.
473 - Fix bug in nose.tools decorators that would cause decorated tests to appear
474   with incorrect names in result output.
475
476 0.9.0a2
477
478 - In TestLoader, use inspect's isfunction() and ismethod() to filter functions
479   and methods, instead of callable(). Thanks to Kumar McMillan for reporting
480   the bug.
481 - Fix doctest plugin: return an empty iterable when no tests are found in a
482   directory instead of None. Thanks to Kumar McMillan for the bug report and
483   patch.
484 - Ignore executable python modules, unless run with --exe file. This is a
485   partial defense against nose causing trouble by loading python modules that
486   are not import-safe. The full defense: don't write modules that aren't
487   import safe!
488 - Catch and warn about errors on plugin load instead of dying.
489 - Renamed builtin profile module from nose.plugins.profile to
490   nose.plugins.prof to avoid shadowing stdlib profile.py module.
491
492 0.9.0a1
493
494 - Add support for plugins, with hooks for selecting, loading and reporting on
495   tests. Doctest and coverage are now plugins.
496 - Add builtin plugins for profiling with hotshot, selecting tests by
497   attribute (contributed by Mika Eloranta), and warning of missed tests
498   specified on command line.
499 - Change command line test selection syntax to match unittest. Thanks to Titus
500   Brown for the suggestion.
501 - Option to drop into pdb on error or failure.
502 - Option to stop running on first error or failure. Thanks to Kevin Dangoor
503   for the suggestion.
504 - Support for doctests in files other than python modules (python 2.4 only)
505 - Reimplement base test selection as single self-contained class.
506 - Reimplement test loading as unittest-compatible TestLoader class.
507 - Remove all monkeypatching.
508 - Reimplement output capture and assert introspection support in
509   unittest-compatible Result class.
510 - Better support for multiline constructions in assert introspection.
511 - More context output with assert introspections.
512 - Refactor setuptools test command support to use proxied result, which
513   enables output capture and assert introspection support without
514   monkeypatching. Thanks to Philip J. Eby for the suggestion and skeleton
515   implementation.
516 - Add support for generators in test classes. Thanks to Jay Parlar for the
517   suggestion and patch.
518 - Add nose.tools package with some helpful test-composition functions and
519   decorators, including @raises, contributed by Scot Doyle.
520 - Reimplement nose.main (TestProgram) to have unittest-compatible signature.
521 - All-new import path handling. You can even turn it off! (If you don't,
522   nose will ensure that all directories from which it imports anything are on
523   sys.path before the import.)
524 - Logging package used for verbose logging.
525 - Support for skipped and deprecated tests.
526 - Configuration is no longer global.
527
528 0.8.7
529
530 - Add support for py.test-style test generators. Thanks to Jay Parlar for
531   the suggestion.
532 - Fix bug in doctest discovery. Thanks to Richard Cooper for the bug report.
533 - Fix bug in output capture being appended to later exceptions. Thanks to
534   Titus Brown for the patch that uncovered the bug.
535 - Fix bug(?) in Exception patch that caused masked hasattr/__getattr__ loops
536   to either become actual infinite loops, or at least take so long to finally
537   error out that they might as well be infinite.
538 - Add -m option to restrict test running to only tests in a particular package
539   or module. Like the -f option, -m does not restrict test *loading*, only
540   test *execution*.
541 - When loading and running a test module, ensure that the module's path is in
542   sys.path for the duration of the run, not just while importing the module.
543 - Add id() method to all callable test classes, for greater unittest
544   compatibility.
545
546 0.8.6
547
548 - Fix bug with coverage output when sys.modules contains entries without
549   __file__ attributes
550 - Added -p (--cover-packages) switch that may be used to restrict coverage
551   report to modules in the indicated package(s)
552
553 0.8.5
554
555 - Output capture and verbose assertion errors now work when run like
556   'python setup.py test', as advertised.
557 - Code coverage improvements: now coverage will be output for all modules
558   imported by any means that were not in sys.modules at the start of the test
559   run. By default, test modules will be excluded from the coverage report, but
560   you can include them with the -t (--cover-tests) option.
561
562 0.8.4
563
564 - Fix bugs in handling of setup/teardown fixtures that could cause TypeError
565   exceptions in fixtures to be silently ignored, or multiple fixtures of the
566   same type to run. Thanks to Titus Brown for the bug report.
567
568 0.8.3
569
570 - Add -V (--version) switch to nosetests
571 - Fix bug where sys.path would not be set up correctly when running some
572   tests, producing spurious import errors (Thanks to Titus Brown and Mike
573   Thomson for the bug reports)
574 - For test classses not derived from unittest.TestCase, output (module.Class)
575   "doc string" as test description, when method doc string is available
576   (Thanks to David Keeney for the suggestion, even if this isn't quite what he
577   meant)
578
579 0.8.2
580
581 - Revise import to bypass sys.path and manipulate sys.modules more
582   intelligently, ensuring that the test module we think we are loading is the
583   module we actually load, and that modules loaded by other imports are not
584   reloaded without cause
585 - Allow test directories inside of packages. Formerly directories matching
586   testMatch but lacking an __init__.py would cause an ImportError when located
587   inside of packages
588 - Fix bugs in different handling of -f switch in combination with -w and -o
589
590 0.8.1
591
592 - Fix bug in main() that resulted in incorrect exit status for nosetests
593   script when tests fail
594 - Add missing test files to MANIFEST.in
595 - Miscellaneous pylint cleanups
596
597 0.8
598
599 - Add doctest support
600 - Add optional code coverage support, using Ned Batchelder's coverage.py;
601   activate with --coverage switch or NOSE_COVERAGE environment variable
602 - More informative error message on import error
603 - Fix bug where module setup could be called twice and teardown skipped
604   for certain setup method names.
605 - main() returns success value, does not exit. run_exit() added to support
606   old behavior; nosetests script now calls nose.run_exit()
607
608 0.7.5
609
610 - Fix bus error on exit
611 - Discover tests inside of non-TestCase classes that match testMatch
612 - Reorganize selftest: now selftest tests the output of a full nose run
613 - Add test_with_setup.py contributed by Kumar McMillan
614
615 0.7.2
616
617 - Refactor and correct bugs in discovery and test loading
618 - Reorganize and expand documentation
619 - Add -f (run this test file only) switch
620
621 0.7.1
622
623 - Bugfix release: test files in root of working directory were not being
624   stripped of file extension before import.
625
626 0.7
627
628 - Change license to LGPL
629 - Major rework of output capture and assert introspection
630 - Improve test discovery: now finds tests in packages
631 - Replace -n switch ('no cwd') with -w switch ('look here')
632
633 0.6
634
635 - New nosetests script
636 - Allow specification of names on command line that are loadable but not
637   directly loadable as modules (eg nosetests -o path/to/tests.py)
638 - Add optional py.test-like assert introspection. Thanks to Kevin Dangoor
639   for the suggestion.
640 - Improvements to selftest
641
642 0.5.1
643
644 - Increased compatibility with python 2.3 (and maybe earlier)
645 - Increased compatibility with tests written for py.test: now calls
646   module.setup_module(module) if module.setup_module() fails
647