| |
1 |
0.9.0a2
|
| |
2 |
|
| |
3 |
- In TestLoader, use inspect's isfunction() and ismethod() to filter functions
|
| |
4 |
and methods, instead of callable(). Thanks to Kumar McMillan for reporting
|
| |
5 |
the bug.
|
| |
6 |
- Fix doctest plugin: return an empty iterable when no tests are found in a
|
| |
7 |
directory instead of None. Thanks to Kumar McMillan for the bug report and
|
| |
8 |
patch.
|
| |
9 |
- Ignore executable python modules, unless run with --exe file. This is a
|
| |
10 |
partial defense against nose causing trouble by loading python modules that
|
| |
11 |
are not import-safe. The full defense: don't write modules that aren't
|
| |
12 |
import safe!
|
| |
13 |
- Catch and warn about errors on plugin load instead of dying.
|
| |
14 |
- Renamed builtin profile module from nose.plugins.profile to
|
| |
15 |
nose.plugins.prof to avoid shadowing stdlib profile.py module.
|
| |
16 |
|