Accepting request 531380 from home:apersaud:branches:devel:languages:python

update to latest version

OBS-URL: https://build.opensuse.org/request/show/531380
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-coverage?expand=0&rev=61
This commit is contained in:
Jan Matejek 2017-10-04 16:27:54 +00:00 committed by Git OBS Bridge
parent 4258e6253d
commit 47bd96b134
4 changed files with 54 additions and 4 deletions

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:eaaefe0f6aa33de5a65f48dd0040d7fe08cac9ac6c35a56d0a7db109c3e733df
size 361491

3
coverage-4.4.1.tar.gz Normal file
View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:7a9c44400ee0f3b4546066e0710e1250fd75831adc02ab99dda176ad8726f424
size 369789

View File

@ -1,3 +1,53 @@
-------------------------------------------------------------------
Wed Oct 4 15:47:22 UTC 2017 - arun@gmx.de
- update to version 4.4.1:
* No code changes: just corrected packaging for Python 2.7 Linux
wheels.
- changes from version 4.4:
* Reports could produce the wrong file names for packages, reporting
pkg.py instead of the correct pkg/__init__.py. This is now
fixed. Thanks, Dirk Thomas.
* XML reports could produce <source> and <class> lines that together
didnt specify a valid source file path. This is now fixed. (issue
526)
* Namespace packages are no longer warned as having no code. (issue
572)
* Code that uses sys.settrace(sys.gettrace()) in a file that wasnt
being coverage-measured would prevent correct coverage measurement
in following code. An example of this was running doctests
programmatically. This is now fixed. (issue 575)
* Errors printed by the coverage command now go to stderr instead of
stdout.
* Running coverage xml in a directory named with non-ASCII
characters would fail under Python 2. This is now fixed. (issue
573)
- changes from version 4.4b1:
* Some warnings can now be individually disabled. Warnings that can
be disabled have a short name appended. The [run] disable_warnings
setting takes a list of these warning names to disable. Closes
both issue 96 and issue 355.
* The XML report now includes attributes from version 4 of the
Cobertura XML format, fixing issue 570.
* In previous versions, calling a method that used collected data
would prevent further collection. For example, save(), report(),
html_report(), and others would all stop collection. An explicit
start() was needed to get it going again. This is no longer
true. Now you can use the collected data and also continue
measurement. Both issue 79 and issue 448 described this problem,
and have been fixed.
* Plugins can now find unexecuted files if they choose, by
implementing the find_executable_files method. Thanks, Emil
Madsen.
* Minimal IronPython support. You should be able to run IronPython
programs under coverage run, though you will still have to do the
reporting phase with CPython.
* Coverage.py has long had a special hack to support CPythons need
to measure the coverage of the standard library tests. This code
was not installed by kitted versions of coverage.py. Now it is.
-------------------------------------------------------------------
Fri Aug 11 15:25:50 UTC 2017 - toddrme2178@gmail.com

View File

@ -18,7 +18,7 @@
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
Name: python-coverage
Version: 4.3.4
Version: 4.4.1
Release: 0
Url: http://nedbatchelder.com/code/coverage/%{version}
Summary: Code coverage measurement for Python