$ git show --format=fuller --patch-with-stat --summary 63b433a182c9b1a23e13576b74d82c2bb930ebdb
commit 63b433a182c9b1a23e13576b74d82c2bb930ebdb
Author: iso buider <root@localhost>
AuthorDate: Wed Jun 30 11:36:36 2021 +0100
Commit: iso buider <root@localhost>
CommitDate: Wed Jun 30 11:36:36 2021 +0100
Initial commit
---
.abf.yml | 2 ++
python-flaky.spec | 45 +++++++++++++++++++++++++++++++++++++++++++++
2 files changed, 47 insertions(+)
create mode 100644 .abf.yml
create mode 100755 python-flaky.spec
diff --git a/.abf.yml b/.abf.yml
new file mode 100644
index 0000000..57112c7
--- /dev/null
+++ b/.abf.yml
@@ -0,0 +1,2 @@
+sources:
+ flaky-3.7.0.tar.gz: 7297235e2b5adaf389d3bd585d358390970b06ff
diff --git a/python-flaky.spec b/python-flaky.spec
new file mode 100755
index 0000000..a0b2ed2
--- /dev/null
+++ b/python-flaky.spec
@@ -0,0 +1,45 @@
+# Created by pyp2rpm-3.3.5
+%global pypi_name flaky
+
+
+Name: python-%{pypi_name}
+Version: 3.7.0
+Release: 1
+Summary: Plugin for nose or pytest that automatically reruns flaky tests
+Group: Development/Python
+License: Apache Software License, Version 2.0, http://www.apache.org/licenses/LICENSE-2.0
+URL: https://github.com/box/flaky
+Source0: %{pypi_name}-%{version}.tar.gz
+BuildArch: noarch
+
+BuildRequires: python3-devel
+BuildRequires: python3dist(setuptools)
+
+#BuildRequires: python3dist(tox)
+
+%description
+Flaky is a plugin for nose or pytest 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}
+# Remove bundled egg-info
+rm -rf %{pypi_name}.egg-info
+
+%build
+%py3_build
+
+%install
+%py3_install
+
+#%check
+#%{__python3} setup.py test
+
+%files -n python-%{pypi_name}
+%license LICENSE
+%doc README.rst
+%{python3_sitelib}/%{pypi_name}
+%{python3_sitelib}/%{pypi_name}-%{version}-py%{python3_version}.egg-info
+