diff --git a/README.md b/README.md index c3b69e7..e0ce26c 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,4 @@ # python-pytest +The pytest framework makes it easy to write small tests, yet scales to support complex functional testing for applications and libraries. + diff --git a/python-pytest.spec b/python-pytest.spec new file mode 100644 index 0000000..c3940d4 --- /dev/null +++ b/python-pytest.spec @@ -0,0 +1,56 @@ +Name: python-pytest +Version: 6.2.2 +Release: 1mamba +Summary: The pytest framework makes it easy to write small tests, yet scales to support complex functional testing for applications and libraries +Group: System/Libraries +Vendor: openmamba +Distribution: openmamba +Packager: Silvan Calarco +URL: https://docs.pytest.org/en/latest/ +Source: https://pypi.debian.net/pytest/pytest-%{version}.tar.gz +License: MIT +## AUTOBUILDREQ-BEGIN +#(python3.7dist(pluggy): unidentified build requirement +BuildRequires: libpython3-devel +BuildRequires: python-attrs-py3 +BuildRequires: python-importlib_metadata-py3 +BuildRequires: python-iniconfig-py3 +BuildRequires: python-packaging-py3 +BuildRequires: python-py-py3 +BuildRequires: python-setuptools-py3 +BuildRequires: python-toml-py3 +## AUTOBUILDREQ-END + +%description +%{summary}. + +%if 0%{?with_pyver} +%pyver_package +%endif + +%prep +%setup -q -n pytest-%{version} + +%build +CFLAGS="%{optflags}" %{__python} setup.py build + +%install +[ "%{buildroot}" != / ] && rm -rf "%{buildroot}" +%{__python} setup.py install \ + -O1 --skip-build \ + --root="%{buildroot}" \ + --install-headers=%{python_inc} \ + --install-lib=%{python_sitearch} \ + --record=%{name}.filelist + +sed -i "\,\.egg-info/,d;s,.*/man/.*,&.gz," %{name}.filelist + +%files %{?pyappend} -f %{name}.filelist +%defattr(-,root,root) +%dir %{python_sitearch}/pytest-%{version}-py*.egg-info +%{python_sitearch}/pytest-%{version}-py*.egg-info/* +%doc AUTHORS LICENSE + +%changelog +* Wed Mar 31 2021 Silvan Calarco 6.2.2-1mamba +- package created using the webbuild interface