From b67df052f9e2575154b77bda0e90ff688152ad22 Mon Sep 17 00:00:00 2001 From: Alfredo Moralejo Date: Sep 08 2021 14:27:11 +0000 Subject: Import python-flaky-3.7.0-2.el9 in CloudSIG xena --- diff --git a/.python-flaky.metadata b/.python-flaky.metadata new file mode 100644 index 0000000..a3dcdc1 --- /dev/null +++ b/.python-flaky.metadata @@ -0,0 +1 @@ +7297235e2b5adaf389d3bd585d358390970b06ff SOURCES/flaky-3.7.0.tar.gz diff --git a/SPECS/python-flaky.spec b/SPECS/python-flaky.spec new file mode 100644 index 0000000..0d19109 --- /dev/null +++ b/SPECS/python-flaky.spec @@ -0,0 +1,107 @@ +%global pypi_name flaky +Name: python-%{pypi_name} +Version: 3.7.0 +Release: 2%{?dist} +Summary: Plugin for nose or py.test that automatically reruns flaky tests +License: ASL 2.0 +URL: https://github.com/box/flaky + +Source0: %{pypi_source} +BuildArch: noarch + +BuildRequires: python3-devel +BuildRequires: python3dist(genty) +BuildRequires: python3dist(nose) +BuildRequires: python3dist(pytest) +BuildRequires: python3dist(setuptools) + +%description +Flaky is a plugin for nose or py.test that automatically reruns flaky +tests. Ideally, tests reliably pass or fail, but sometimes test fixtures must +rely on components that aren't 100% reliable. With flaky, instead of removing +those tests or marking them to @skip, they can be automatically retried. + + +%package -n python3-%{pypi_name} +Summary: %{summary} +%{?python_provide:%python_provide python3-%{pypi_name}} +Requires: python3dist(setuptools) + +%description -n python3-%{pypi_name} +Flaky is a plugin for nose or py.test that automatically reruns flaky +tests. Ideally, tests reliably pass or fail, but sometimes test fixtures must +rely on components that aren't 100% reliable. With flaky, instead of removing +those tests or marking them to @skip, they can be automatically retried. + + +%prep +%autosetup -n %{pypi_name}-%{version} + +# Use mock from standard library: +sed -i -e 's/import mock/from unittest import mock/' \ + -e 's/from mock/from unittest.mock/' \ + test/test_*/test_*.py + + +%build +%py3_build + + +%install +%py3_install + + +%check +export PYTHONPATH=%{buildroot}%{python3_sitelib} +# adapted from upstream's tox.ini +%{__python3} -m nose -v --with-flaky --exclude="test_nose_options_example" test/test_nose/ +%{__python3} -m pytest -v -k 'example and not options' --doctest-modules test/test_pytest/ +%{__python3} -m pytest -v -k 'example and not options' test/test_pytest/ +%{__python3} -m pytest -v -p no:flaky test/test_pytest/test_flaky_pytest_plugin.py +%{__python3} -m nose -v --with-flaky --force-flaky --max-runs 2 test/test_nose/test_nose_options_example.py +%{__python3} -m pytest -v --force-flaky --max-runs 2 test/test_pytest/test_pytest_options_example.py + + +%files -n python3-%{pypi_name} +%license LICENSE +%doc README.rst +%{python3_sitelib}/%{pypi_name} +%{python3_sitelib}/%{pypi_name}-%{version}-py%{python3_version}.egg-info + + +%changelog +* Wed Jan 27 2021 Fedora Release Engineering - 3.7.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild + +* Wed Sep 23 2020 Tomas Hrnciar - 3.7.0-1 +- Update to 3.7.0 + +* Wed Jul 29 2020 Fedora Release Engineering - 3.6.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild + +* Sun May 24 2020 Miro Hrončok - 3.6.1-2 +- Rebuilt for Python 3.9 + +* Wed Mar 11 2020 Tomas Hrnciar - 3.6.1-1 +- Update to 3.6.1 + +* Thu Jan 30 2020 Fedora Release Engineering - 3.5.3-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild + +* Thu Oct 03 2019 Miro Hrončok - 3.5.3-4 +- Rebuilt for Python 3.8.0rc1 (#1748018) + +* Mon Aug 19 2019 Miro Hrončok - 3.5.3-3 +- Rebuilt for Python 3.8 + +* Fri Jul 26 2019 Fedora Release Engineering - 3.5.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild + +* Tue Apr 30 2019 Miro Hrončok - 3.5.3-1 +- Update to 3.5.3 + +* Sat Feb 02 2019 Fedora Release Engineering - 3.4.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild + +* Mon Jul 30 2018 Miro Hrončok - 3.4.0-1 +- Initial package