Changeset 64
- Timestamp:
- Thu Jun 22 18:38:32 2006
- Files:
-
- branches/0.9-stable/nose/core.py (modified) (diff)
- branches/0.9-stable/nose/__init__.py (modified) (diff)
- branches/0.9-stable/CHANGELOG (modified) (diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
branches/0.9-stable/nose/core.py
r61 r64 297 297 help="Don't make any changes to sys.path when " 298 298 "loading tests [NOSE_NOPATH]") 299 parser.add_option("--exe", action="store_true", 300 dest="includeExe", 299 parser.add_option("--exe", action="store_true", dest="includeExe", 301 300 default=env.get('NOSE_INCLUDE_EXE', 302 301 sys.platform=='win32'), … … 305 304 "modules, since they may not be import-safe " 306 305 "[NOSE_INCLUDE_EXE]") 306 parser.add_option("--noexe", action="store_false", dest="includeExe", 307 help="DO NOT look for tests in python modules that are " 308 "executable. (The default on the windows platform is to " 309 "do so.)") 307 310 308 311 # add opts from plugins -
branches/0.9-stable/nose/__init__.py
r54 r64 300 300 301 301 __author__ = 'Jason Pellerin' 302 __version__ = '0.9.0b2' 303 __versioninfo__ = (0, 9, 0, 'b2') 302 __version__ = '0.9.0rc1' 303 __versioninfo__ = (0, 9, 0, 'rc1') 304 304 305 305 __all__ = [ -
branches/0.9-stable/CHANGELOG
r56 r64 1 0.9.0rc1 2 3 - More unit tests and better test coverage. Numerous bugfixes deriving from 4 same. 5 - Make --exe option do what it says, and turn it on by default on 6 Windows. Add --noexe option so windows users can turn if off.Thanks 7 richard@artsalliancemedia.com for the bug reports. 8 - Handle a working directory that happens to be in the middle of a package 9 more gracefully. Thanks Max Ischenko for the bug report and test case. 10 - Fix bugs in test name comparison when a test module is specified whose name 11 overlaps that of a non-test module. Thanks Max Ischenko for the bug report 12 and test case. 13 1 14 0.9.0b2 2 15
