2012-05-23 15:41:38 +00:00
|
|
|
#
|
|
|
|
# spec file for package python3-coverage
|
|
|
|
#
|
2013-05-02 09:11:59 +00:00
|
|
|
# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
2012-05-23 15:41:38 +00:00
|
|
|
#
|
|
|
|
# All modifications and additions to the file contributed by third parties
|
|
|
|
# remain the property of their copyright owners, unless otherwise agreed
|
|
|
|
# upon. The license for this file, and modifications and additions to the
|
|
|
|
# file, is the same license as for the pristine package itself (unless the
|
|
|
|
# license for the pristine package is not an Open Source License, in which
|
|
|
|
# case the license is the MIT License). An "Open Source License" is a
|
|
|
|
# license that conforms to the Open Source Definition (Version 1.9)
|
|
|
|
# published by the Open Source Initiative.
|
|
|
|
|
|
|
|
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
|
|
|
#
|
|
|
|
|
|
|
|
|
|
|
|
Name: python3-coverage
|
2013-05-02 09:11:59 +00:00
|
|
|
Version: 3.6
|
2012-05-23 15:41:38 +00:00
|
|
|
Release: 0
|
|
|
|
Url: http://nedbatchelder.com/code/coverage/%{version}
|
|
|
|
Summary: Code coverage measurement for Python
|
|
|
|
License: BSD-3-Clause
|
|
|
|
Group: Development/Languages/Python
|
|
|
|
Source: http://pypi.python.org/packages/source/c/coverage/coverage-%{version}.tar.gz
|
|
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
2013-05-03 10:02:59 +00:00
|
|
|
BuildRequires: python3
|
2012-05-23 15:41:38 +00:00
|
|
|
BuildRequires: python3-devel
|
|
|
|
BuildRequires: python3-distribute
|
|
|
|
Requires: python3-distribute
|
2013-05-03 09:14:06 +00:00
|
|
|
Requires(post): update-alternatives
|
|
|
|
Requires(postun): update-alternatives
|
2012-05-23 15:41:38 +00:00
|
|
|
|
|
|
|
%description
|
|
|
|
Coverage.py measures code coverage, typically during test execution. It uses
|
|
|
|
the code analysis tools and tracing hooks provided in the Python standard
|
|
|
|
library to determine which lines are executable, and which have been executed.
|
|
|
|
|
|
|
|
%prep
|
|
|
|
%setup -q -n coverage-%{version}
|
|
|
|
|
|
|
|
%build
|
|
|
|
python3 setup.py build
|
|
|
|
|
|
|
|
%install
|
|
|
|
python3 setup.py install --prefix=%{_prefix} --root=%{buildroot}
|
|
|
|
|
2013-05-03 09:14:06 +00:00
|
|
|
%post
|
|
|
|
update-alternatives \
|
|
|
|
--install %{_bindir}/coverage coverage %{_bindir}/coverage-%{py3_ver} 10
|
|
|
|
|
|
|
|
%postun
|
|
|
|
if [ $1 -eq 0 ] ; then
|
|
|
|
update-alternatives --remove coverage %{_bindir}/coverage-%{py3_ver}
|
|
|
|
fi
|
|
|
|
|
2012-05-23 15:41:38 +00:00
|
|
|
%files
|
|
|
|
%defattr(-,root,root,-)
|
|
|
|
%doc AUTHORS.txt CHANGES.txt README.txt
|
2013-05-03 09:14:06 +00:00
|
|
|
%ghost %attr(0755,root,root) %{_bindir}/coverage
|
|
|
|
%{_bindir}/coverage3
|
- Update to version 3.5.3:
+ Line numbers in the HTML report line up better with the source lines, fixing
issue 197
+ When specifying a directory as the source= option, the directory itself no
longer needs to have a __init__.py file, though its subdirectories do, to
be considered as source files.
+ Files encoded as UTF-8 with a BOM are now properly handled, fixing
issue 179_.
+ Fixed more cases of non-Python files being reported as Python source, and
then not being able to parse them as Python. Closes issue 82 (again).
+ Fixed memory leaks under Python 3, thanks, Brett Cannon. Closes issue 147_.
+ Optimized .pyo files may not have been handled correctly, issue 195_.
+ Certain unusually named file paths could have been mangled during reporting,
issue 194_.
+ Try to do a better job of the impossible task of detecting when we can't
build the C extension, fixing issue 183_.
+ Testing is now done with tox
- Changes from version 3.5.2:
+ No changes since 3.5.2.b1
- Changes from version 3.5.2b1
+ The HTML report has slightly tweaked controls: the buttons at the top of
the page are color-coded to the source lines they affect.
+ Custom CSS can be applied to the HTML report by specifying a CSS file as
the extra_css configuration value in the [html] section.
+ Source files with custom encodings declared in a comment at the top are now
properly handled during reporting on Python 2. Python 3 always handled them
properly. This fixes issue 157_.
+ Backup files left behind by editors are no longer collected by the source=
option, fixing issue 168_.
+ If a file doesn't parse properly as Python, we don't report it as an error
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-coverage?expand=0&rev=20
2012-11-20 18:20:40 +00:00
|
|
|
%{_bindir}/coverage-%{py3_ver}
|
2012-05-23 15:41:38 +00:00
|
|
|
%{python3_sitearch}/coverage
|
|
|
|
%{python3_sitearch}/coverage-%{version}-py%{py3_ver}.egg-info
|
|
|
|
|
|
|
|
%changelog
|