- break dependency cycle between attrs (pulled by pytest) and pytest-hatch-fancy-pypi-readme

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-hatch-fancy-pypi-readme?expand=0&rev=7
This commit is contained in:
2023-05-16 14:28:01 +00:00
committed by Git OBS Bridge
parent 36410a7269
commit 3e4db85278
3 changed files with 25 additions and 0 deletions

View File

@@ -16,6 +16,14 @@
#
%global flavor @BUILD_FLAVOR@%{nil}
%if "%{flavor}" == "test"
%define psuffix -test
%bcond_without test
%else
%define psuffix %{nil}
%bcond_with test
%endif
%{?sle15_python_module_pythons}
Name: python-hatch-fancy-pypi-readme
Version: 22.8.0
@@ -30,9 +38,12 @@ BuildRequires: %{python_module pip}
BuildRequires: fdupes
BuildRequires: python-rpm-generators
BuildRequires: python-rpm-macros
%if %{with test}
# SECTION test
BuildRequires: %{python_module hatch-fancy-pypi-readme >= %version}
BuildRequires: %{python_module pytest}
# /SECTION
%endif
Requires(post): update-alternatives
Requires(postun):update-alternatives
Provides: python-hatch_fancy_pypi_readme = %{version}-%{release}
@@ -62,13 +73,17 @@ release? You've come to the right place!
%pyproject_wheel
%install
%if !%{with test}
%pyproject_install
%python_expand %fdupes %{buildroot}%{$python_sitelib}
%python_clone -a %{buildroot}%{_bindir}/hatch-fancy-pypi-readme
%endif
%check
%if %{with test}
#test_end_to_end want's to have a hatchling wheel
%pytest --ignore tests/test_end_to_end.py
%endif
%post
%python_install_alternative hatch-fancy-pypi-readme
@@ -76,11 +91,13 @@ release? You've come to the right place!
%postun
%python_uninstall_alternative hatch-fancy-pypi-readme
%if !%{with test}
%files %{python_files}
%license LICENSE.txt
%doc README.md
%python_alternative %{_bindir}/hatch-fancy-pypi-readme
%{python_sitelib}/hatch_fancy_pypi_readme
%{python_sitelib}/hatch_fancy_pypi_readme-%{version}*-info
%endif
%changelog