Compare commits
No commits in common. 'i8ce' and 'epel9' have entirely different histories.
@ -1 +1,19 @@
|
||||
SOURCES/pytest-cov-2.6.0.tar.gz
|
||||
/pytest-cov-1.6.tar.gz
|
||||
/pytest-cov-2.1.0.tar.gz
|
||||
/pytest-cov-2.2.0.tar.gz
|
||||
/pytest-cov-2.2.1.tar.gz
|
||||
/pytest-cov-2.3.0.tar.gz
|
||||
/pytest-cov-2.4.0.tar.gz
|
||||
/pytest-cov-2.5.0.tar.gz
|
||||
/pytest-cov-2.5.1.tar.gz
|
||||
/pytest-cov-2.6.0.tar.gz
|
||||
/pytest-cov-2.6.1.tar.gz
|
||||
/pytest-cov-2.7.1.tar.gz
|
||||
/pytest-cov-2.8.0.tar.gz
|
||||
/pytest-cov-2.8.1.tar.gz
|
||||
/pytest-cov-2.10.0.tar.gz
|
||||
/pytest-cov-2.10.1.tar.gz
|
||||
/pytest-cov-2.11.1.tar.gz
|
||||
/pytest-cov-2.12.1.tar.gz
|
||||
/pytest-cov-3.0.0.tar.gz
|
||||
/pytest-cov-4.0.0.tar.gz
|
||||
|
@ -1 +0,0 @@
|
||||
dcb1955adebfcdca668757a7ca9a47e8ea1b41d6 SOURCES/pytest-cov-2.6.0.tar.gz
|
@ -1,208 +0,0 @@
|
||||
%?python_enable_dependency_generator
|
||||
%global srcname pytest-cov
|
||||
%global with_tests 0
|
||||
|
||||
Name: python-%{srcname}
|
||||
Epoch: 1
|
||||
Version: 2.6.0
|
||||
Release: 1%{?dist}
|
||||
Summary: Pytest plugin for coverage reporting
|
||||
|
||||
License: MIT
|
||||
URL: https://pypi.python.org/pypi/%{srcname}
|
||||
Source0: https://github.com/pytest-dev/%{srcname}/archive/v%{version}/%{srcname}-%{version}.tar.gz
|
||||
|
||||
BuildArch: noarch
|
||||
|
||||
%description
|
||||
Py.test plugin for coverage reporting with support for both centralised and
|
||||
distributed testing, including subprocesses and multiprocessing for Python.
|
||||
|
||||
|
||||
%package -n python2-%{srcname}
|
||||
Summary: Pytest plugin for coverage reporting
|
||||
BuildRequires: python2-devel
|
||||
BuildRequires: python2-setuptools
|
||||
%if 0%{?with_tests}
|
||||
# For tests
|
||||
# Not packaged: python2-fields
|
||||
#BuildRequires: python2-pytest >= 2.9
|
||||
#BuildRequires: python2-coverage >= 4.4
|
||||
#BuildRequires: python2-fields
|
||||
#BuildRequires: python2-process-tests
|
||||
#BuildRequires: python2-six
|
||||
#BuildRequires: python2-virtualenv
|
||||
#BuildRequires: python2-pytest-xdist
|
||||
%endif # with_tests
|
||||
%{?python_provide:%python_provide python2-%{srcname}}
|
||||
|
||||
%description -n python2-%{srcname}
|
||||
Py.test plugin for coverage reporting with support for both centralised and
|
||||
distributed testing, including subprocesses and multiprocessing for Python 2.
|
||||
|
||||
|
||||
%package -n python%{python3_pkgversion}-%{srcname}
|
||||
Summary: Pytest plugin for coverage reporting
|
||||
BuildRequires: python%{python3_pkgversion}-devel
|
||||
BuildRequires: python%{python3_pkgversion}-setuptools
|
||||
BuildRequires: python%{python3_pkgversion}-pytest >= 2.9
|
||||
BuildRequires: python3.6dist(coverage) >= 4.4
|
||||
%if 0%{?with_tests}
|
||||
# For tests
|
||||
BuildRequires: python%{python3_pkgversion}-fields
|
||||
BuildRequires: python%{python3_pkgversion}-process-tests
|
||||
BuildRequires: python%{python3_pkgversion}-six
|
||||
BuildRequires: python%{python3_pkgversion}-virtualenv
|
||||
BuildRequires: python%{python3_pkgversion}-pytest-xdist
|
||||
%endif # with_tests
|
||||
%{?python_provide:%python_provide python%{python3_pkgversion}-%{srcname}}
|
||||
|
||||
%description -n python%{python3_pkgversion}-%{srcname}
|
||||
Py.test plugin for coverage reporting with support for both centralised and
|
||||
distributed testing, including subprocesses and multiprocessing for Python 3.
|
||||
|
||||
|
||||
%prep
|
||||
%setup -q -n %{srcname}-%{version}
|
||||
rm -rf *.egg-info
|
||||
|
||||
|
||||
%build
|
||||
%py2_build
|
||||
%py3_build
|
||||
|
||||
|
||||
%install
|
||||
%py3_install
|
||||
%py2_install
|
||||
|
||||
|
||||
%if 0%{?with_tests}
|
||||
%check
|
||||
# Python 2 tests have unpackaged dependencies
|
||||
# test_dist_missing_data needs internet
|
||||
# test_central_subprocess/dist_subprocess https://github.com/pytest-dev/pytest-cov/issues/90
|
||||
# test_subprocess_with_path_aliasing and test_dist_combine_racecondition tries to match strings and fails, mostly version mismatch
|
||||
# test_multiprocessing_pool{,_terminate, _close} cause deadlock on Python 3.8 - https://github.com/pytest-dev/pytest-cov/issues/295
|
||||
# To read a custom pth-file we need to add that path to site-dir, needed for tests at RPM build time
|
||||
echo "import site;site.addsitedir(\"$(pwd)/src\")" > tests/sitecustomize.py
|
||||
export PYTHONPATH="$(pwd)"/tests
|
||||
py.test-%{python3_version} -vv \
|
||||
-k "not test_dist_missing_data and not test_subprocess_with_path_aliasing and not test_dist_combine_racecondition and not central_subprocess and not dist_subprocess \
|
||||
and not test_multiprocessing_pool and not test_multiprocessing_pool_terminate and not test_multiprocessing_pool_close"
|
||||
%endif # with_tests
|
||||
|
||||
|
||||
%files -n python2-%{srcname}
|
||||
%license LICENSE
|
||||
%doc AUTHORS.rst CHANGELOG.rst CONTRIBUTING.rst README.rst
|
||||
%{python2_sitelib}/*
|
||||
|
||||
%files -n python%{python3_pkgversion}-%{srcname}
|
||||
%license LICENSE
|
||||
%doc AUTHORS.rst CHANGELOG.rst CONTRIBUTING.rst README.rst
|
||||
%{python3_sitelib}/*
|
||||
|
||||
|
||||
%changelog
|
||||
* Thu Jan 25 2024 Sergey Cherevko <s.cherevko@msvsphere-os.ru> - 1:2.6.0-1
|
||||
- Rebuilt for MSVSphere 8.9
|
||||
|
||||
* Fri Aug 16 2019 Orion Poplawski <orion@nwra.com> - 1:2.6.0-1
|
||||
- Revert to 2.6.0 and bump epoch to handle older pytest in RHEL8.0
|
||||
- Enable python dependency generator
|
||||
|
||||
* Wed Jul 24 2019 Stephen Smoogen <smooge@fedoraproject.org> - 2.7.1-2.1
|
||||
- Try to use platform-python3-coverage
|
||||
|
||||
* Mon Jun 24 2019 Troy Dawson <tdawson@redhat.com> - 2.7.1-2.1
|
||||
- Turn off tests for initial EPEL8 build
|
||||
|
||||
* Thu May 16 2019 Lumír Balhar <lbalhar@redhat.com> - 2.7.1-2
|
||||
- Skip three tests (multiprocessing_pool) to fix FTBFS with Python 3.8
|
||||
|
||||
* Sun May 5 2019 Orion Poplawski <orion@nwra.com> - 2.7.1-1
|
||||
- Update to 2.7.1
|
||||
|
||||
* Thu Apr 04 2019 Miro Hrončok <mhroncok@redhat.com> - 2.6.1-1
|
||||
- Update to 2.6.1 for pytest 4 compatibility
|
||||
|
||||
* Tue Feb 12 2019 Orion Poplawski <orion@nwra.com> - 2.6.0-3
|
||||
- Build with pytest-xdist
|
||||
|
||||
* Sat Feb 02 2019 Fedora Release Engineering <releng@fedoraproject.org> - 2.6.0-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
||||
|
||||
* Wed Dec 05 2018 Randy Barlow <bowlofeggs@fedoraproject.org> - 2.6.0-1
|
||||
- Update to 2.6.0.
|
||||
|
||||
* Sat Jul 14 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2.5.1-6
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
||||
|
||||
* Sat Jun 16 2018 Miro Hrončok <mhroncok@redhat.com> - 2.5.1-5
|
||||
- Rebuilt for Python 3.7
|
||||
|
||||
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2.5.1-4
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
||||
|
||||
* Wed Aug 9 2017 Orion Poplawski <orion@cora.nwra.com> - 2.5.1-3
|
||||
- Ship python2-pytest-cov
|
||||
|
||||
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.5.1-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
||||
|
||||
* Fri May 12 2017 Orion Poplawski <orion@cora.nwra.com> - 2.5.1-1
|
||||
- Update to 2.5.1
|
||||
|
||||
* Wed May 10 2017 Orion Poplawski <orion@cora.nwra.com> - 2.5.0-1
|
||||
- Update to 2.5.0
|
||||
|
||||
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.4.0-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
||||
|
||||
* Tue Dec 13 2016 Stratakis Charalampos <cstratak@redhat.com> - 2.4.0-2
|
||||
- Rebuild for Python 3.6
|
||||
|
||||
* Mon Oct 10 2016 Orion Poplawski <orion@cora.nwra.com> - 2.4.0-1
|
||||
- Update to 2.4.0
|
||||
|
||||
* Tue Jul 19 2016 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.3.0-2
|
||||
- https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages
|
||||
|
||||
* Thu Jul 7 2016 Orion Poplawski <orion@cora.nwra.com> - 2.3.0-1
|
||||
- Update to 2.3.0
|
||||
|
||||
* Mon May 23 2016 Orion Poplawski <orion@cora.nwra.com> - 2.2.1-1
|
||||
- Ignore failing tests
|
||||
|
||||
* Sat Feb 13 2016 Orion Poplawski <orion@cora.nwra.com> - 2.2.1-1
|
||||
- Update to 2.2.1
|
||||
|
||||
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 2.2.0-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
||||
|
||||
* Fri Nov 06 2015 Robert Kuska <rkuska@redhat.com> - 2.2.0-2
|
||||
- Rebuilt for Python3.5 rebuild
|
||||
- Skip tests for a python3 rebuild as it seems to be env failure
|
||||
|
||||
* Mon Oct 5 2015 Orion Poplawski <orion@cora.nwra.com> - 2.2.0-1
|
||||
- Update to 2.2.0
|
||||
|
||||
* Mon Sep 14 2015 Orion Poplawski <orion@cora.nwra.com> - 2.1.0-2
|
||||
- Modernize spec
|
||||
- Run tests properly, skipping xdist tests for now
|
||||
|
||||
* Mon Sep 14 2015 Tomas Tomecek <ttomecek@redhat.com> - 2.1.0-1
|
||||
- upstream release 2.1.0
|
||||
|
||||
* Thu Jun 18 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.6-4
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
||||
|
||||
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.6-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
||||
|
||||
* Tue May 27 2014 Orion Poplawski <orion@cora.nwra.com> - 1.6-2
|
||||
- Rebuild for Python 3.4
|
||||
|
||||
* Tue Feb 25 2014 Orion Poplawski <orion@cora.nwra.com> - 1.6-1
|
||||
- Initial package
|
@ -0,0 +1,53 @@
|
||||
* Wed Jul 28 2021 Benjamin A. Beasley <code@musicinmybrain.net> - 2.11.1-6
|
||||
- Drop obsolete macros
|
||||
- Update description and summary from upstream
|
||||
- Use “forge” macros to reference source
|
||||
- Use pyproject-rpm-macros
|
||||
|
||||
* Fri Jul 23 2021 Fedora Release Engineering <releng@fedoraproject.org> - 2.11.1-5
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
||||
|
||||
* Wed Jun 02 2021 Python Maint <python-maint@redhat.com> - 2.11.1-4
|
||||
- Rebuilt for Python 3.10
|
||||
|
||||
* Fri Jan 29 2021 Chedi Toueiti <chedi.toueiti@gmail.com> - 2.11.1-3
|
||||
- Fix for failing tests with coverage 5.4 (#1922301)
|
||||
|
||||
* Wed Jan 27 2021 Fedora Release Engineering <releng@fedoraproject.org> - 2.11.1-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
||||
|
||||
* Wed Jan 20 2021 Chedi Toueiti <chedi.toueiti@gmail.com> - 2.11.1-1
|
||||
- Update to 2.11.1 (#1917248)
|
||||
|
||||
* Fri Aug 14 2020 Chedi Toueiti <chedi.toueiti@gmail.com> - 2.10.1-1
|
||||
- Update to 2.10.1 (#1868968)
|
||||
|
||||
* Wed Jul 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 2.10.0-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
||||
|
||||
* Thu Jul 9 2020 Chedi Toueiti <chedi.toueiti@gmail.com> - 2.10.0
|
||||
- Update to 2.10.0
|
||||
|
||||
* Sun May 24 2020 Miro Hrončok <mhroncok@redhat.com> - 2.8.1-6
|
||||
- Rebuilt for Python 3.9
|
||||
|
||||
* Mon Mar 2 2020 Chedi Toueiti <chedi.toueiti@gmail.com> - 2.8.1-5
|
||||
- Forcing current pytest-cov version usage during checks
|
||||
|
||||
* Thu Jan 30 2020 Fedora Release Engineering <releng@fedoraproject.org> - 2.8.1-4
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
||||
|
||||
* Sun Jan 19 2020 Lumír Balhar <lbalhar@redhat.com> - 2.8.1-3
|
||||
- Unskip tests which are working with the newest coverage
|
||||
|
||||
* Sun Nov 3 2019 Orion Poplawski <orion@nwra.com> - 2.8.1-2
|
||||
- Drop python 2 for F32+ (bz#1767517)
|
||||
|
||||
* Sat Oct 5 2019 Orion Poplawski <orion@nwra.com> - 2.8.1-1
|
||||
- Update to 2.8.1
|
||||
|
||||
* Fri Oct 4 2019 Orion Poplawski <orion@nwra.com> - 2.8.0-1
|
||||
- Update to 2.8.0
|
||||
|
||||
* Thu Oct 03 2019 Miro Hrončok <mhroncok@redhat.com> - 2.7.1-6
|
||||
- Rebuilt for Python 3.8.0rc1 (#1748018)
|
@ -0,0 +1,12 @@
|
||||
diff -up pytest-cov-3.0.0/tests/test_pytest_cov.py.cov62 pytest-cov-3.0.0/tests/test_pytest_cov.py
|
||||
--- pytest-cov-3.0.0/tests/test_pytest_cov.py.cov62 2021-12-09 13:54:38.736407865 -0500
|
||||
+++ pytest-cov-3.0.0/tests/test_pytest_cov.py 2021-12-09 13:54:41.432423997 -0500
|
||||
@@ -968,7 +968,7 @@ def test_invalid_coverage_source(testdir
|
||||
'*10 passed*'
|
||||
])
|
||||
result.stderr.fnmatch_lines([
|
||||
- 'Coverage.py warning: No data was collected.*'
|
||||
+ '*No data was collected.*'
|
||||
])
|
||||
result.stdout.fnmatch_lines([
|
||||
'*Failed to generate report: No data to report.',
|
Loading…
Reference in new issue