Changeset 54
- Timestamp:
- Thu Jun 1 19:56:50 2006
- Files:
-
- branches/0.9-stable/nose/plugins/doctests.py (modified) (diff)
- branches/0.9-stable/nose/__init__.py (modified) (diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
branches/0.9-stable/nose/plugins/doctests.py
r40 r54 34 34 dest='doctest_tests', 35 35 default=env.get('NOSE_DOCTEST_TESTS'), 36 help="Also look for doctests in test modules") 36 help="Also look for doctests in test modules [NOSE_DOCTEST_TESTS]") 36 36 try: 37 37 # 2.4 or better supports loading tests from non-modules … … 42 42 default=env.get('NOSE_DOCTEST_EXTENSION'), 43 43 help="Also look for doctests in files with " 44 "this extension") 44 "this extension [NOSE_DOCTEST_EXTENSION]") 44 44 except AttributeError: 45 45 pass -
branches/0.9-stable/nose/__init__.py
r49 r54 300 300 301 301 __author__ = 'Jason Pellerin' 302 __version__ = '0.9.0b1' 303 __versioninfo__ = (0, 9, 0, 'b1') 302 __version__ = '0.9.0b2' 303 __versioninfo__ = (0, 9, 0, 'b2') 304 304 305 305 __all__ = [
