Package: nose / 1.3.7-2

Metadata

Package Version Patches format
nose 1.3.7-2 3.0 (quilt)

Patch series

view the series file
Patch File delta Description
no install data | (download)

setup.py | 2 1 + 1 - 0 !
1 file changed, 1 insertion(+), 1 deletion(-)

 don't install manpage with setup.py.

 Use debhelper to install manpage so we can use update-alternatives to
 manage the manpages.
no google analytics | (download)

doc/.templates/layout.html | 13 0 + 13 - 0 !
1 file changed, 13 deletions(-)

 remove google analytics tracking js

no distribute_setup | (download)

setup.py | 6 1 + 5 - 0 !
1 file changed, 1 insertion(+), 5 deletions(-)

 don't even think about using distribute_setup to download things
 during build

disable unstable tests | (download)

functional_tests/test_multiprocessing/test_keyboardinterrupt.py | 2 2 + 0 - 0 !
functional_tests/test_multiprocessing/test_process_timeout.py | 2 2 + 0 - 0 !
2 files changed, 4 insertions(+)

 disable some unstable tests in multiprocessing module

0005 Set __qualname__ equal to __name__ on derived classe.patch | (download)

functional_tests/test_load_tests_from_test_case.py | 1 1 + 0 - 0 !
nose/util.py | 1 1 + 0 - 0 !
unit_tests/test_xunit.py | 1 1 + 0 - 0 !
3 files changed, 3 insertions(+)

 set __qualname__ equal to __name__ on derived classes
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

To make output on Python  3.5 the same as on previous Python versions.

This fixes #928.

0006 Make coverage plugin compatible with Coverage.py 4.1.patch | (download)

nose/plugins/cover.py | 4 2 + 2 - 0 !
1 file changed, 2 insertions(+), 2 deletions(-)

 make coverage plugin compatible with coverage.py 4.1

According to the Coverage.py 4.1 changelog:

- The `Coverage.report` function had two parameters with non-None defaults,
  which have been changed.  `show_missing` used to default to True, but now
  defaults to None.  If you had been calling `Coverage.report` without
  specifying `show_missing`, you'll need to explicitly set it to True to keep
  the same behavior.

Without that option, four tests in nose fail:

- test_coverage_plugin.TestCoverageMinPercentagePlugin
- test_coverage_plugin.TestCoverageMinPercentageSinglePackagePlugin
- test_coverage_plugin.TestCoverageMinPercentageSinglePackageWithBranchesPlugin
- test_coverage_plugin.TestCoveragePlugin