$ git show --format=fuller --patch-with-stat --summary 2db516f24e85b6c8adceee406d5e98f3a4d56400
commit 2db516f24e85b6c8adceee406d5e98f3a4d56400
Author: Colin <itchka@compuserve.com>
AuthorDate: Tue Jan 12 15:15:24 2021 +0000
Commit: Colin <itchka@compuserve.com>
CommitDate: Tue Jan 12 15:15:24 2021 +0000
Initial commit
---
.abf.yml | 2 ++
python-pytest-forked.spec | 46 ++++++++++++++++++++++++++++++++++++++++++++++
2 files changed, 48 insertions(+)
create mode 100644 .abf.yml
create mode 100644 python-pytest-forked.spec
diff --git a/.abf.yml b/.abf.yml
new file mode 100644
index 0000000..d270536
--- /dev/null
+++ b/.abf.yml
@@ -0,0 +1,2 @@
+sources:
+ pytest-forked-1.3.0.tar.gz: e42f924de467dd0f485139d8ef3baaad75c7017c
diff --git a/python-pytest-forked.spec b/python-pytest-forked.spec
new file mode 100644
index 0000000..2ead097
--- /dev/null
+++ b/python-pytest-forked.spec
@@ -0,0 +1,46 @@
+# Created by pyp2rpm-3.3.5
+%global pypi_name pytest-forked
+
+Name: python-%{pypi_name}
+Version: 1.3.0
+Release: 1
+Summary: run tests in isolated forked subprocesses
+Group: Development/Python
+License: MIT
+URL: https://github.com/pytest-dev/pytest-forked
+Source0: %{pypi_name}-%{version}.tar.gz
+BuildArch: noarch
+
+BuildRequires: python3-devel
+BuildRequires: python3dist(py)
+BuildRequires: python3dist(pytest) >= 3.10
+BuildRequires: python3dist(setuptools)
+BuildRequires: python3dist(setuptools-scm)
+
+%description
+pytest-forked: run each test in a forked subprocess .. warning:: this is a
+extraction of the xdist --forked module, future maintenance beyond the bare
+minimum is not planned until a new maintainer is found. This plugin **does not
+work on Windows** because there's no fork support. * --forked: run each test in
+a forked subprocess to survive SEGFAULTS or otherwise dying processes.
+Installation...
+
+%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}/pytest_forked
+%{python3_sitelib}/pytest_forked-%{version}-py%{python3_version}.egg-info