diff -Nru nosexcover-1.0.10/debian/changelog nosexcover-1.0.11/debian/changelog --- nosexcover-1.0.10/debian/changelog 2015-10-23 15:02:46.000000000 +0000 +++ nosexcover-1.0.11/debian/changelog 2017-11-29 08:04:26.000000000 +0000 @@ -1,3 +1,14 @@ +nosexcover (1.0.11-1) unstable; urgency=medium + + * New upstream version 1.0.11 + * Set priority to optional + * d/control: add python versions to description + * d/control: Bump standards version + * d/watch: use https URI + * Bump debhelper compat level to 10 + + -- Guido Günther Wed, 29 Nov 2017 09:04:26 +0100 + nosexcover (1.0.10-2) unstable; urgency=medium * Upload to unstable diff -Nru nosexcover-1.0.10/debian/compat nosexcover-1.0.11/debian/compat --- nosexcover-1.0.10/debian/compat 2012-06-19 13:25:51.000000000 +0000 +++ nosexcover-1.0.11/debian/compat 2017-11-29 07:57:09.000000000 +0000 @@ -1 +1 @@ -8 +10 diff -Nru nosexcover-1.0.10/debian/control nosexcover-1.0.11/debian/control --- nosexcover-1.0.10/debian/control 2015-02-19 12:37:49.000000000 +0000 +++ nosexcover-1.0.11/debian/control 2017-11-29 08:00:19.000000000 +0000 @@ -1,35 +1,40 @@ Source: nosexcover Section: python -Priority: extra +Priority: optional Maintainer: Guido Günther -Build-Depends: debhelper (>= 8.0.0), +Build-Depends: debhelper (>= 10.0.0~), python-all, python3, python-nose, python3-nose, python-setuptools, python3-setuptools, -Standards-Version: 3.9.3 +Standards-Version: 4.1.1 Homepage: http://pypi.python.org/pypi/nosexcover Package: python-nosexcover Architecture: all Depends: ${misc:Depends}, ${python:Depends}, python-nose, python-coverage (>= 3.4) -Description: Add Cobertura-style XML coverage report to nose +Description: Add Cobertura-style XML coverage report to nose (Python2 version) A companion to the built-in nose.plugins.cover, this plugin will write out an XML coverage report to a file named coverage.xml. . It will honor all the options you pass to the Nose coverage plugin, especially --cover-package. + . + This package contains the Python 2 version of the module. Package: python3-nosexcover Architecture: all Depends: ${misc:Depends}, ${python3:Depends}, python-nose, python-coverage (>= 3.4) -Description: Add Cobertura-style XML coverage report to nose +Description: Add Cobertura-style XML coverage report to nose (Python3 version) A companion to the built-in nose.plugins.cover, this plugin will write out an XML coverage report to a file named coverage.xml. . It will honor all the options you pass to the Nose coverage plugin, especially --cover-package. + . + This package contains the Python 3 version of the module. + diff -Nru nosexcover-1.0.10/debian/watch nosexcover-1.0.11/debian/watch --- nosexcover-1.0.10/debian/watch 2015-02-19 11:19:04.000000000 +0000 +++ nosexcover-1.0.11/debian/watch 2017-11-29 07:53:56.000000000 +0000 @@ -1,9 +1,4 @@ -# Example watch control file for uscan -# Rename this file to "watch" and then you can run the "uscan" command -# to check for upstream updates and more. -# See uscan(1) for format - # Compulsory line, this is a version 3 file version=3 -http://pypi.debian.net/nosexcover/nosexcover-(.+)\.(?:zip|tgz|tbz|txz|(?:tar\.(?:gz|bz2|xz))) +https://pypi.debian.net/nosexcover/nosexcover-(.+)\.(?:zip|tgz|tbz|txz|(?:tar\.(?:gz|bz2|xz))) diff -Nru nosexcover-1.0.10/nosexcover/nosexcover.py nosexcover-1.0.11/nosexcover/nosexcover.py --- nosexcover-1.0.10/nosexcover/nosexcover.py 2014-03-25 23:26:10.000000000 +0000 +++ nosexcover-1.0.11/nosexcover/nosexcover.py 2016-10-30 12:36:50.000000000 +0000 @@ -6,7 +6,7 @@ import sys try: # Python 2 - import StringIO + from StringIO import StringIO except ImportError: # Python 3 from io import StringIO @@ -44,9 +44,9 @@ coverage_on = options.enable_plugin_coverage xcoverage_on = options.enable_plugin_xcoverage if xcoverage_on and coverage_on: - log.error( - """You can not use both --with-xcover and --with-coverage. Using --with-xcover implies --with-coverage""") - raise TypeError + error_msg = """You can not use both --with-xcover and --with-coverage. Using --with-xcover implies --with-coverage""" + log.error(error_msg) + raise TypeError(error_msg + "\n Please check if you have a default entry in .noserc or nose.cfg or setup.cfg alike configuration file") cover.old_log = cover.log cover.log = log @@ -64,7 +64,7 @@ """ if not self.xcoverageToStdout: # This will create a false stream where output will be ignored - stream = StringIO.StringIO() + stream = StringIO() super(XCoverage, self).report(stream) if not hasattr(self, 'coverInstance'): diff -Nru nosexcover-1.0.10/nosexcover.egg-info/PKG-INFO nosexcover-1.0.11/nosexcover.egg-info/PKG-INFO --- nosexcover-1.0.10/nosexcover.egg-info/PKG-INFO 2014-03-25 23:30:43.000000000 +0000 +++ nosexcover-1.0.11/nosexcover.egg-info/PKG-INFO 2016-10-30 12:42:23.000000000 +0000 @@ -1,6 +1,6 @@ Metadata-Version: 1.1 Name: nosexcover -Version: 1.0.10 +Version: 1.0.11 Summary: Extends nose.plugins.cover to add Cobertura-style XML reports Home-page: http://github.com/cmheisel/nose-xcover/ Author: Chris Heisel @@ -15,7 +15,7 @@ Usage ------ - You can not use both --with-xcover and --with-coverage. Using --with-xcover implies --with-coverage + You can not use both --with-xcoverage and --with-coverage. Using --with-xcover implies --with-coverage If you want to change the name of the output file you can use --xcoverage-file=FILE (--cover-xml-file from coverage won't work) diff -Nru nosexcover-1.0.10/nosexcover.egg-info/requires.txt nosexcover-1.0.11/nosexcover.egg-info/requires.txt --- nosexcover-1.0.10/nosexcover.egg-info/requires.txt 2014-03-25 23:30:43.000000000 +0000 +++ nosexcover-1.0.11/nosexcover.egg-info/requires.txt 2016-10-30 12:42:23.000000000 +0000 @@ -1,2 +1,2 @@ nose -coverage>=3.4 \ No newline at end of file +coverage>=3.4 diff -Nru nosexcover-1.0.10/nosexcover.egg-info/SOURCES.txt nosexcover-1.0.11/nosexcover.egg-info/SOURCES.txt --- nosexcover-1.0.10/nosexcover.egg-info/SOURCES.txt 2014-03-25 23:30:43.000000000 +0000 +++ nosexcover-1.0.11/nosexcover.egg-info/SOURCES.txt 2016-10-30 12:42:23.000000000 +0000 @@ -1,3 +1,5 @@ +README.rst +setup.cfg setup.py nosexcover/__init__.py nosexcover/nosexcover.py diff -Nru nosexcover-1.0.10/PKG-INFO nosexcover-1.0.11/PKG-INFO --- nosexcover-1.0.10/PKG-INFO 2014-03-25 23:30:43.000000000 +0000 +++ nosexcover-1.0.11/PKG-INFO 2016-10-30 12:42:23.000000000 +0000 @@ -1,6 +1,6 @@ Metadata-Version: 1.1 Name: nosexcover -Version: 1.0.10 +Version: 1.0.11 Summary: Extends nose.plugins.cover to add Cobertura-style XML reports Home-page: http://github.com/cmheisel/nose-xcover/ Author: Chris Heisel @@ -15,7 +15,7 @@ Usage ------ - You can not use both --with-xcover and --with-coverage. Using --with-xcover implies --with-coverage + You can not use both --with-xcoverage and --with-coverage. Using --with-xcover implies --with-coverage If you want to change the name of the output file you can use --xcoverage-file=FILE (--cover-xml-file from coverage won't work) diff -Nru nosexcover-1.0.10/README.rst nosexcover-1.0.11/README.rst --- nosexcover-1.0.10/README.rst 1970-01-01 00:00:00.000000000 +0000 +++ nosexcover-1.0.11/README.rst 2016-10-30 12:36:50.000000000 +0000 @@ -0,0 +1,20 @@ +nose-xmlcover +-------------- + +A companion to the built-in nose.plugins.cover, this plugin will write out an XML coverage report to a file named coverage.xml. + +It will honor all the options you pass to the `Nose coverage plugin `_, especially --cover-package. + +Usage +------ +You can not use both --with-xcoverage and --with-coverage. Using --with-xcover implies --with-coverage + +If you want to change the name of the output file you can use --xcoverage-file=FILE (--cover-xml-file from coverage won't work) + +As of nose-xcover 1.0.6 --with-xcoverage provides all the functionality of the built-in coverage plugin in addition to Cobertura-style output:: + + #nosetests --with-xcoverage {{ coverage options }} + nosetests --with-xcoverage --cover-package=myapp --cover-tests + + + diff -Nru nosexcover-1.0.10/setup.cfg nosexcover-1.0.11/setup.cfg --- nosexcover-1.0.10/setup.cfg 2014-03-25 23:30:43.000000000 +0000 +++ nosexcover-1.0.11/setup.cfg 2016-10-30 12:42:23.000000000 +0000 @@ -1,3 +1,6 @@ +[bdist_wheel] +universal = 1 + [egg_info] tag_build = tag_date = 0 diff -Nru nosexcover-1.0.10/setup.py nosexcover-1.0.11/setup.py --- nosexcover-1.0.10/setup.py 2014-03-25 23:26:47.000000000 +0000 +++ nosexcover-1.0.11/setup.py 2016-10-30 12:37:52.000000000 +0000 @@ -7,7 +7,7 @@ setup( name='nosexcover', - version='1.0.10', + version='1.0.11', description='Extends nose.plugins.cover to add Cobertura-style XML reports', long_description=desc, author='Chris Heisel',