|
|
|
%global pypi_name pytest-xdist
|
|
|
|
%global desc The pytest-xdist plugin extends py.test with some unique test execution modes:\
|
|
|
|
* test run parallelization: if you have multiple CPUs or hosts you can use\
|
|
|
|
those for a combined test run. This allows to speed up development or to use\
|
|
|
|
special resources of remote machines.\
|
|
|
|
* --boxed: run each test in a boxed subprocess to survive SEGFAULTS or\
|
|
|
|
otherwise dying processes\
|
|
|
|
* --looponfail: run your tests repeatedly in a subprocess. After each run\
|
|
|
|
py.test waits until a file in your project changes and then re-runs the\
|
|
|
|
previously failing tests. This is repeated until all tests pass after which\
|
|
|
|
again a full run is performed.\
|
|
|
|
* Multi-Platform coverage: you can specify different Python interpreters or\
|
|
|
|
different platforms and run tests in parallel on all of them.
|
|
|
|
|
|
|
|
Name: python-%{pypi_name}
|
|
|
|
Version: 1.23.2
|
|
|
|
Release: 1%{?dist}
|
|
|
|
Summary: py.test plugin for distributed testing and loop-on-failing modes
|
|
|
|
|
|
|
|
License: MIT
|
|
|
|
URL: https://github.com/pytest-dev/pytest-xdist
|
|
|
|
Source0: https://files.pythonhosted.org/packages/source/p/%{pypi_name}/%{pypi_name}-%{version}.tar.gz
|
|
|
|
BuildArch: noarch
|
|
|
|
|
|
|
|
BuildRequires: python2-devel
|
|
|
|
BuildRequires: python3-devel
|
|
|
|
BuildRequires: python2-execnet
|
|
|
|
BuildRequires: python3-execnet
|
|
|
|
BuildRequires: python2-pytest
|
|
|
|
BuildRequires: python3-pytest
|
|
|
|
BuildRequires: python2-pytest-forked
|
|
|
|
BuildRequires: python3-pytest-forked
|
|
|
|
BuildRequires: python2-py
|
|
|
|
BuildRequires: python3-py
|
|
|
|
BuildRequires: python2-setuptools_scm
|
|
|
|
BuildRequires: python3-setuptools_scm
|
|
|
|
|
|
|
|
%description
|
|
|
|
%{desc}
|
|
|
|
|
|
|
|
%package -n python2-%{pypi_name}
|
|
|
|
Summary: %{summary}
|
|
|
|
%{?python_provide:%python_provide python2-%{pypi_name}}
|
|
|
|
|
|
|
|
Requires: python2-execnet
|
|
|
|
Requires: python2-pytest
|
|
|
|
Requires: python2-pytest-forked
|
|
|
|
Requires: python2-py
|
|
|
|
%description -n python2-%{pypi_name}
|
|
|
|
%{desc}
|
|
|
|
|
|
|
|
%package -n python3-%{pypi_name}
|
|
|
|
Summary: %{summary}
|
|
|
|
%{?python_provide:%python_provide python3-%{pypi_name}}
|
|
|
|
|
|
|
|
Requires: python3-execnet
|
|
|
|
Requires: python3-pytest
|
|
|
|
Requires: python3-pytest-forked
|
|
|
|
Requires: python3-py
|
|
|
|
%description -n python3-%{pypi_name}
|
|
|
|
%{desc}
|
|
|
|
|
|
|
|
%prep
|
|
|
|
%autosetup -n %{pypi_name}-%{version}
|
|
|
|
|
|
|
|
%build
|
|
|
|
%py2_build
|
|
|
|
%py3_build
|
|
|
|
|
|
|
|
%install
|
|
|
|
%py2_install
|
|
|
|
%py3_install
|
|
|
|
|
|
|
|
%check
|
|
|
|
PYTHONPATH=%{buildroot}%{python2_sitelib} PYTHONDONTWRITEBYTECODE=1 py.test-%{python2_version} testing
|
|
|
|
PYTHONPATH=%{buildroot}%{python3_sitelib} PYTHONDONTWRITEBYTECODE=1 py.test-%{python3_version} testing
|
|
|
|
|
|
|
|
|
|
|
|
%files -n python2-%{pypi_name}
|
|
|
|
%doc OVERVIEW.md README.rst
|
|
|
|
%license LICENSE
|
|
|
|
%{python2_sitelib}/pytest_xdist*
|
|
|
|
%{python2_sitelib}/xdist/
|
|
|
|
|
|
|
|
%files -n python3-%{pypi_name}
|
|
|
|
%doc OVERVIEW.md README.rst
|
|
|
|
%license LICENSE
|
|
|
|
%{python3_sitelib}/pytest_xdist*
|
|
|
|
%{python3_sitelib}/xdist/
|
|
|
|
|
|
|
|
%changelog
|
|
|
|
* Fri Oct 19 2018 Scott Talbert <swt@techie.net> - 1.23.2-1
|
|
|
|
- New upstream release 1.23.2
|
|
|
|
|
|
|
|
* Sat Jul 28 2018 Scott Talbert <swt@techie.net> - 1.22.5-1
|
|
|
|
- New upstream release 1.22.5
|
|
|
|
|
|
|
|
* Tue Jul 24 2018 Scott Talbert <swt@techie.net> - 1.22.3-1
|
|
|
|
- New upstream release 1.22.3
|
|
|
|
|
|
|
|
* Sat Jul 14 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.22.2-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
|
|
|
|
|
|
|
* Tue Jun 19 2018 Miro Hrončok <mhroncok@redhat.com> - 1.22.2-2
|
|
|
|
- Rebuilt for Python 3.7
|
|
|
|
|
|
|
|
* Wed Feb 28 2018 Scott Talbert <swt@techie.net> - 1.22.2-1
|
|
|
|
- New upstream release 1.22.2
|
|
|
|
|
|
|
|
* Wed Feb 21 2018 Scott Talbert <swt@techie.net> - 1.22.1-1
|
|
|
|
- New upstream release 1.22.1
|
|
|
|
|
|
|
|
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.22.0-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
|
|
|
|
|
|
|
* Fri Jan 12 2018 Scott Talbert <swt@techie.net> - 1.22.0-1
|
|
|
|
- New upstream release 1.22.0
|
|
|
|
|
|
|
|
* Fri Dec 29 2017 Scott Talbert <swt@techie.net> - 1.21.0-1
|
|
|
|
- New upstream release 1.21.0
|
|
|
|
|
|
|
|
* Mon Nov 20 2017 Scott Talbert <swt@techie.net> - 1.20.1-2
|
|
|
|
- Avoid packaging -PYTEST.pyc files which are problematic (#1507299)
|
|
|
|
|
|
|
|
* Tue Oct 24 2017 Scott Talbert <swt@techie.net> - 1.20.1-1
|
|
|
|
- New upstream release 1.20.1
|
|
|
|
|
|
|
|
* Thu Aug 24 2017 Scott Talbert <swt@techie.net> - 1.20.0-1
|
|
|
|
- New upstream release 1.20.0
|
|
|
|
|
|
|
|
* Sat Jul 29 2017 Scott Talbert <swt@techie.net> - 1.18.2-1
|
|
|
|
- New upstream release 1.18.2
|
|
|
|
|
|
|
|
* Fri Jul 28 2017 Scott Talbert <swt@techie.net> - 1.18.1-1
|
|
|
|
- New upstream release 1.18.1
|
|
|
|
|
|
|
|
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.18.0-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
|
|
|
|
|
|
|
* Wed Jun 28 2017 Scott Talbert <swt@techie.net> - 1.18.0-1
|
|
|
|
- New upstream release 1.18.0
|
|
|
|
|
|
|
|
* Wed Jun 14 2017 Scott Talbert <swt@techie.net> - 1.17.1-1
|
|
|
|
- New upstream release 1.17.1
|
|
|
|
|
|
|
|
* Sat Jun 10 2017 Scott Talbert - 1.17.0-1
|
|
|
|
- New upstream release 1.17.0
|
|
|
|
|
|
|
|
* Tue May 09 2017 Scott Talbert <swt@techie.net> - 1.16.0-1
|
|
|
|
- New upstream release 1.16.0
|
|
|
|
- Enable tests
|
|
|
|
|
|
|
|
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.15.0-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
|
|
|
|
|
|
|
* Mon Dec 19 2016 Miro Hrončok <mhroncok@redhat.com> - 1.15.0-2
|
|
|
|
- Rebuild for Python 3.6
|
|
|
|
|
|
|
|
* Mon Oct 03 2016 Scott Talbert <swt@techie.net> - 1.15.0-1
|
|
|
|
- New upstream release 1.15.0
|
|
|
|
|
|
|
|
* Thu Aug 11 2016 Scott Talbert <swt@techie.net> - 1.14-1
|
|
|
|
- Initial package.
|