Changeset 68
- Timestamp:
- Mon Jun 26 20:26:25 2006
- Files:
-
- branches/0.9-stable/nose/core.py (modified) (diff)
- branches/0.9-stable/nose/plugins/doctests.py (modified) (diff)
- branches/0.9-stable/nose/plugins/cover.py (modified) (diff)
- branches/0.9-stable/CHANGELOG (modified) (diff)
- branches/0.9-stable/index.html.tpl (modified) (diff)
- branches/0.9-stable/NEWS (modified) (diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
branches/0.9-stable/nose/core.py
r64 r68 311 311 # add opts from plugins 312 312 all_plugins = [] 313 for plugcls in load_plugins(): 313 # when generating the help message, load only builtin plugins 314 for plugcls in load_plugins(others=not help): 314 315 plug = plugcls() 315 316 try: -
branches/0.9-stable/nose/plugins/doctests.py
r54 r68 25 25 class Doctest(Plugin): 26 26 """ 27 Activate doctest plugin to find and run doctest in non-test modules. 27 Activate doctest plugin to find and run doctests in non-test modules. 27 27 """ 28 28 extension = None … … 34 34 dest='doctest_tests', 35 35 default=env.get('NOSE_DOCTEST_TESTS'), 36 help="Also look for doctests in test modules [NOSE_DOCTEST_TESTS]") 36 help="Also look for doctests in test modules " 37 "[NOSE_DOCTEST_TESTS]") 37 38 try: 38 39 # 2.4 or better supports loading tests from non-modules -
branches/0.9-stable/nose/plugins/cover.py
r58 r68 20 20 class Coverage(Plugin): 21 21 """ 22 If you have Ned Batchelder's coverage _module installed, you may22 If you have Ned Batchelder's coverage module installed, you may 22 22 activate a coverage report. The coverage report will cover any 23 23 python source module imported after the start of the test run, excluding -
branches/0.9-stable/CHANGELOG
r64 r68 1 0.9.0 rc11 0.9.0 1 1 2 2 - More unit tests and better test coverage. Numerous bugfixes deriving from … … 11 11 overlaps that of a non-test module. Thanks Max Ischenko for the bug report 12 12 and test case. 13 13 - Fix warning spam when a non-existent test file is requested on the command 14 line. Thanks Max Ischenko for the bug report. 15 14 16 0.9.0b2 15 17 -
branches/0.9-stable/index.html.tpl
r50 r68 84 84 margin: 0 1em .5em; 85 85 } 86 87 #menu ul li { 88 font-size: 90%%; 89 color:#666; 90 } 86 91 87 92 #menu dd { … … 183 188 <h2><a href="nose-%(version)s.tar.gz">Download</a></h2> 184 189 <p>Current version: %(version)s <br />(%(date)s)</p> 185 190 185 190 <h2>Install</h2> 186 191 <p>Current version: <br /><tt>easy_install nose==%(version)s</tt></p> 187 192 <p>Unstable (trunk): <br /><tt>easy_install nose==dev</tt></p> 188 189 <h2><a href="#usage">nosetests usage</a></h2> 190 <p>How to use the command-line test runner.</p> 193 194 <h2>Read</h2> 195 <ul> 196 <li> 197 <a href="http://ivory.idyll.org/articles/nose-intro.html"> 198 An Extended Introduction to the nose Unit Testing Framework 199 </a> 200 <br />Titus Brown's excellent article provides a great overview of 201 nose and its uses. 202 </li> 203 <li><a href="#usage">nosetests usage</a> 204 <br />How to use the command-line test runner. 205 </li> 206 </ul> 191 207 192 208 <h2><a href="http://groups.google.com/group/nose-announce"> -
branches/0.9-stable/NEWS
r40 r68 1 New in version 0.9.0a1 1 New in version 0.9 2 ------------------ 3 4 0.9 Final is here! 5 ================== 2 6 3 7 nose 0.9 includes a host of new features, as well as numerous 4 backwards-incompatible changes to interfaces and implementation. For this 5 reason, I'm releasing it first as an alpha version. 8 backwards-incompatible changes to interfaces and implementation. 6 9 7 10 Thanks to the many folks who have contributed patches and ideas and made bug 8 11 reports for the development version of 0.9, especially Mika Eloranta, Jay 9 Parlar, Kevin Dangoor, Scot Doyle and Philip J.Eby. 12 Parlar, Kevin Dangoor, Scot Doyle, Titus Brown and Philip J.Eby. 9 12 10 Here's a quick rundown of what's new in 0.9 .0a1.13 Here's a quick rundown of what's new in 0.9 10 13 11 14 - Plugins
